/* Color Variables - Soft & Harmonious - Pastel Emerald & Rose */
:root {
  --emerald-primary: #7dd3a0;
  --emerald-dark: #5bb889;
  --emerald-light: #b8e6d1;
  --rose-primary: #f5a8b8;
  --rose-dark: #e88fa3;
  --rose-light: #f9c9d4;
  --neutral-dark: #4a5568;
  --neutral-medium: #718096;
  --neutral-light: #f7fafc;
  --white: #ffffff;
  --cream: #fef9f5;
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 2px 12px rgba(0, 0, 0, 0.05);
  --shadow-light: 0 1px 4px rgba(0, 0, 0, 0.04);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: var(--neutral-light);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--emerald-light) 0%, var(--rose-light) 100%);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--emerald-primary) 0%, var(--rose-primary) 100%);
}

body {
  font-family: 'Inter', 'Open Sans', sans-serif;
  background: var(--cream);
  background-attachment: fixed;
  position: relative;
  color: var(--neutral-dark);
  line-height: 1.7;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(125, 211, 160, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(245, 168, 184, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.wrapper {
  position: relative;
  z-index: 1;
}

/* Soft Card System */
.bold-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 201, 212, 0.05) 50%, rgba(184, 230, 209, 0.05) 100%);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--emerald-light);
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bold-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
  border-color: var(--emerald-primary);
}

.emerald-accent {
  color: var(--emerald-primary);
  border-color: var(--emerald-primary);
}

.rose-accent {
  color: var(--rose-primary);
  border-color: var(--rose-primary);
}

.bold-shadow {
  box-shadow: var(--shadow-bold);
}

.modern-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Section Background Effects - Soft & Harmonious */
.section-bg-affect {
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.section-bg-affect::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='softFloral' x='0' y='0' width='100' height='100' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='20' cy='20' r='2' fill='%237dd3a0' opacity='0.06'/%3E%3Ccircle cx='80' cy='30' r='1.5' fill='%23f5a8b8' opacity='0.05'/%3E%3Ccircle cx='50' cy='70' r='2.5' fill='%237dd3a0' opacity='0.06'/%3E%3Ccircle cx='20' cy='70' r='2' fill='%23f5a8b8' opacity='0.05'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100' height='100' fill='url(%23softFloral)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.5;
  pointer-events: none;
}

/* Alternate Section Background */
.section-bg-alternate {
  background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}

.section-bg-alternate::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    url("data:image/svg+xml,%3Csvg width='120' height='120' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='softFloralAlt' x='0' y='0' width='120' height='120' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='30' cy='30' r='2.5' fill='%23f5a8b8' opacity='0.05'/%3E%3Ccircle cx='90' cy='40' r='2' fill='%237dd3a0' opacity='0.05'/%3E%3Ccircle cx='60' cy='80' r='3' fill='%23f5a8b8' opacity='0.05'/%3E%3Ccircle cx='20' cy='70' r='2' fill='%237dd3a0' opacity='0.04'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='120' height='120' fill='url(%23softFloralAlt)'/%3E%3C/svg%3E");
  background-size: 250px 250px;
  opacity: 0.4;
  pointer-events: none;
}

.geometric-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--emerald-light) 50%, transparent 100%);
  margin: 4rem 0;
  border-radius: 1px;
}

.story-section .timeline-card::before {
  border-color: var(--emerald-light);
}

.story-section .timeline .title::before {
  border-color: var(--rose-light);
}

.story-section .timeline-1 li {
  border-left-color: var(--emerald-primary);
}

.story-section .timeline-1 li:before {
  border-color: var(--emerald-primary);
  box-shadow: 3px 3px 0px var(--rose-light);
}

.donate-modal .donate-box .donate-card {
  width: 100%;
  border: 1px dashed #eb418b;
}

.donate-donate-modal .donate-box .donate-card p:last-child {
  margin-bottom: 0 !important;
}

.donate-modal .donate-box .donate-card .qr-code-image {
  max-width: 150px;
  display: block;
}
.donate-modal {
  display: none; 
  position: fixed;
  z-index: 199;
  padding-top: 100px;
  padding-bottom: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0)!important;
  background-color: rgba(0,0,0,0.5)!important;
}
.donate-modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 750px;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetopfordonatemodal;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetopfordonatemodal;
  animation-duration: 0.4s
}
@-webkit-keyframes animatetopfordonatemodal {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}
@keyframes animatetopfordonatemodal {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}
.donate-modal strong, .donate-modal h3{font-family:inherit!important;}
.donate-modal-close {color: red;font-size: 28px;font-weight: bold;text-decoration: none;cursor: pointer;position: absolute;right: 15px;z-index: 999;}
.donate-modal-header {padding: 8px 16px;background-color: #f23b43;color: #fff;font-size:30px;text-align:center;line-height: 40px;}
.donate-modal-header strong{display:flex;align-items:center;justify-content: center;flex-wrap: wrap;color:#fff;}

.donate-modal-header strong span{margin-left:10px;}
.donate-modal-body {padding: 0 15px;}
/* .donate-box{display: flex;justify-content: space-evenly;flex-wrap: wrap;} */
.donate-box .donate-card:hover{box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);}
.donate-box .donate-card h3{padding:0;margin:0;margin-bottom: 20px;font-weight: bold;font-size: 18px;line-height: 30px;}
.donate-box .donate-card p {margin: 10px 0!important;font-size: 16px;}
.donate-box .donate-card p:last-child {margin-bottom:0!important;}
@media (max-width: 699px) {
.donate-box .donate-card{width:100%;}
.donate-wrap{
  width: 100%;
}
.qr-code-image{
  max-width: 200px;
}
}
.donate-box .donate-card {position:relative;}
.donate-box .donate-card .qr-code-image{max-width: 150px;border: 1px solid #ccc;padding: 3px;margin: auto;display: block;cursor: zoom-in;}
.donate-box .cryptos-box .cryptos-items {display: flex;flex-wrap: wrap;justify-content: center;margin-right: -10px;margin-left: -10px;margin-top: 10px;}
.donate-box .cryptos-box .cryptos-items .crypto-item {padding:10px 10px 0;}
.donate-box .cryptos-box .cryptos-items .crypto-item img {width:30px;max-width:100%;min-width:35px;cursor:pointer;}
.donate-box .cryptos-box-view {display:none;position: absolute;top: 0;left: 0;background: #ffffff;width: 100%;height: 100%;border-radius: 7px;padding:10px;text-align: center;}
.donate-box .cryptos-box-view h5 {font-weight: bold;font-size: 18px;display: flex;align-items: center;justify-content: center;margin-bottom: 15px;}
.donate-box .cryptos-box-view h5 img{width:25px;}
.donate-box .cryptos-box-view h5 .coin-img {margin-right: 5px;}
.donate-box .cryptos-box-view h5 .coin-id {margin-left: 5px;}
.donate-box .cryptos-box-view .coin-address {display: block;padding: 10px;background: #ffe2e4;margin-bottom: 15px;word-break: break-word;color: #201f1f;}
.donate-box .cryptos-box-view .cryptos-box-view-close {margin-top: 15px;background: #f23b43;color: #fff;padding: 5px 15px;border-radius: 5px;border: 1px solid #e3252d;}
.donate-box .cryptos-box-view .cryptos-box-view-close:hover{background: #e3252d;}
/* Typography System - Soft & Harmonious */
h1, h2, h3, h4, h5, h6, .title, .section-title {
  font-family: 'Playfair Display', 'Lora', serif;
  font-weight: 600;
  color: var(--neutral-dark);
  line-height: 1.4;
  letter-spacing: 0.5px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--emerald-primary);
  position: relative;
  display: inline-block;
  text-align: center;
}

h2.section-title,
.section-title.text-center {
  display: block;
  text-align: center;
  width: 100%;
}

.section-sub-title {
  font-family: 'Lora', serif;
  font-weight: 400;
  color: var(--neutral-medium);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.6;
}

.title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.sub-title {
  font-family: 'Lora', serif;
  font-weight: 400;
  font-style: italic;
}

body, p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--neutral-dark);
  line-height: 1.8;
}

/* Header Typography - Soft */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-light);
  border-bottom: 1px solid var(--emerald-light);
}

header .navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--emerald-primary);
  letter-spacing: 1px;
}

.offcanvas-menu li {
  position: relative;
}

.offcanvas-menu li:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 1px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, var(--emerald-light) 0%, var(--rose-light) 100%);
}

.offcanvas-menu .nav-link {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--neutral-dark);
  transition: color 0.3s ease;
}

.offcanvas-menu .nav-link:hover {
  color: var(--emerald-primary);
}

/* Override for wrap-people to prevent gradient text from hiding content */
.section-title.wrap-people {
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  background-clip: unset !important;
  display: flex !important;
  animation: none !important;
}

.section-title.wrap-people * {
  -webkit-text-fill-color: unset !important;
  background-clip: unset !important;
  -webkit-background-clip: unset !important;
  color: var(--neutral-dark) !important;
}

/* Banner Section - Soft & Harmonious */
.banner-section {
  position: relative;
  overflow: hidden;
}

.banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(125, 211, 160, 0.1) 0%, rgba(245, 168, 184, 0.1) 100%);
  z-index: 0;
}

.banner-section .bgm_area {
  color: var(--neutral-dark);
  background: linear-gradient(135deg, var(--emerald-light) 0%, var(--rose-light) 100%);
  font-family: 'Lora', serif;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 1.8rem;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-light);
  border-bottom: 1px solid var(--emerald-light);
}
.main_area {
  position: relative;
  z-index: 1;
}

.main_area .invitation_day {
  color: var(--emerald-primary);
  letter-spacing: 2px;
  font-size: 1.3rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.main_area .invitation_place {
  color: var(--neutral-medium);
  letter-spacing: 2px;
  font-size: 1.3rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

.day_area_inner {
  font-size: 3.5rem;
  letter-spacing: 2px;
  color: var(--emerald-primary);
  line-height: 1.2;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.day_area_inner > img {
  width: 35px;
  margin-left: 12px;
  margin-right: 12px;
  vertical-align: middle;
  filter: brightness(0) saturate(100%) invert(75%) sepia(30%) saturate(500%) hue-rotate(100deg) brightness(95%) contrast(90%);
  opacity: 0.8;
}

.main_area .main_image_area {
  position: relative;
  margin: 2.5rem auto;
  max-width: 400px;
}

.main_area .main_image_area img {
  border-radius: 50%;
  border: 3px solid var(--emerald-light);
  box-shadow: var(--shadow-soft);
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.4s ease;
}

.main_area .main_image_area img:hover {
  border-color: var(--emerald-primary);
  box-shadow: var(--shadow-medium);
}

.main_area .main_image_area::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--rose-light);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.6;
}

.main_area .main_title {
  position: absolute;
  bottom: -20px;
  left: 0;
  height: 45px;
  width: 100%;
}

.main_area .wedding_area {
  color: var(--neutral-dark);
  font-size: 1.4em;
  line-height: 1.5;
  letter-spacing: 1px;
  margin-top: 2.5rem;
}

.main_area .wedding_area .title {
  font-size: 2.2rem;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
}

.main_area .wedding_area .title .groom_name {
  color: var(--emerald-primary);
}

.main_area .wedding_area .title .bride_name {
  color: var(--rose-primary);
}

.main_area .wedding_area .title span:not(.groom_name):not(.bride_name) {
  color: var(--neutral-medium);
  margin: 0 12px;
  font-size: 1.8rem;
  opacity: 0.7;
}

.main_area .main_title .p {
  font-size: 1.5rem;
}

/* Buttons - Soft & Harmonious */
.accessibility-btn {
  background: linear-gradient(135deg, var(--emerald-light) 0%, var(--rose-light) 100%);
  border: 1px solid var(--emerald-light);
  color: var(--neutral-dark);
  font-family: 'Lora', serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 14px 10px;
  border-radius: 30px;
  box-shadow: var(--shadow-light);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accessibility-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  background: linear-gradient(135deg, var(--emerald-primary) 0%, var(--rose-primary) 100%);
  border-color: var(--emerald-primary);
  color: var(--white);
}

.accessibility-btn .access-section-icon {
  filter: brightness(0) saturate(100%) invert(30%) sepia(5%) saturate(1000%) hue-rotate(180deg) brightness(95%) contrast(85%);
  transition: filter 0.3s ease;
}

.accessibility-btn:hover .access-section-icon {
  filter: brightness(0) invert(1);
}

/* video-section */

.video-section iframe {
  border-radius: 20px;
  overflow: hidden;
}

/* gallery-section */
#btn-see-more-gallery{
  border-radius: 50px;
  padding: 10px 20px;
}
.gallery-section .btn-secondary.btn-see-more-gallery {
  background: linear-gradient(135deg, var(--rose-light) 0%, var(--emerald-light) 100%);
  border: 1px solid var(--rose-light);
  color: var(--neutral-dark);
  font-family: 'Lora', serif;
  font-weight: 500;
  box-shadow: var(--shadow-light);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 30px;
  padding: 14px 32px;
}

.gallery-section .btn-secondary.btn-see-more-gallery:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  background: linear-gradient(135deg, var(--rose-primary) 0%, var(--emerald-primary) 100%);
  border-color: var(--rose-primary);
  color: var(--white);
}
.gallery-item{
  cursor: pointer;
}
.lg-backdrop, .lg-outer{
  z-index: 9999999;
}

/* weddingdate-section */
.weddingdate-section .main_dday_name {
  display: inline-block;
  text-align: center;
  font-size: 1.4em;
  border-bottom: 1px solid #c8c8c8;
}
.weddingdate-section .mini_calendar .calendar-month,
.weddingdate-section .mini_calendar table th {
  color: var(--neutral-medium);
}

.weddingdate-section .mini_calendar .calendar-month {
  font-weight: 700;
  color: var(--emerald-primary);
  font-family: 'Poppins', sans-serif;
}

.weddingdate-section .mini_calendar td #today {
  background: var(--rose-primary);
}

.weddingdate-section #clock > div {
  color: var(--neutral-dark);
}

.weddingdate-section .wrap-img {
  text-align: center;
  color: var(--neutral-medium);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
}

.weddingdate-section .day,
.weddingdate-section .time {
  color: var(--emerald-primary);
  font-size: 45px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.weddingdate-section .wrap-img img {
  width: 50px;
}

.weddingdate-section .mini_calendar td {
  color: var(--neutral-medium);
  font-family: 'Inter', sans-serif;
}

.weddingdate-section .mini_calendar td #today {
  background-color: var(--rose-primary);
  color: var(--white);
}

.mini_calendar > .mini_calendar {
  border-bottom: 3px solid var(--emerald-light);
  padding-bottom: 20px;
}

.weddingdate-section .countdown .box {
  color: var(--emerald-primary) !important;
}

.weddingdate-section table th {
  border-top: 3px solid var(--emerald-primary);
  border-bottom: 3px solid var(--emerald-primary);
}

/* story-section */

.story-section .timeline .title {
  color: var(--emerald-primary);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.timeline-card .img-holder {
  border-radius: 20px;
  overflow: hidden;
}

.invitation-couple p {
  color: #595959;
  font-size: 2rem;
}
.invitation-couple span {
  color: #f0aebc;
  font-size: 1rem;
  width: 50px;
  display: inline-block;
}
.invitation-couple .text {
  align-items: center;
  gap: 10px;
}
.invitation-section .couple-img {
  overflow: hidden;
}
/* Invitation Section - Soft & Harmonious */
.invitation-section {
  text-align: center;
  background: transparent !important;
}

.invitation-section .wrap-invitation {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(184, 230, 209, 0.08) 30%, rgba(249, 201, 212, 0.08) 70%, rgba(255, 255, 255, 0.98) 100%);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--emerald-light);
  padding: 3rem;
  max-width: 900px;
  margin: 0 auto;
  transition: all 0.4s ease;
}

.invitation-section .wrap-invitation:hover {
  box-shadow: var(--shadow-medium);
  border-color: var(--emerald-primary);
}

.invitation-section .wrap-invitation .title-big {
  color: var(--neutral-dark);
  font-size: 3rem;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
}

.invitation-section .couple-img img {
  border-radius: 20px;
  border: 2px solid var(--rose-light);
  box-shadow: var(--shadow-soft);
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  display: block;
  transition: all 0.4s ease;
}

.invitation-section .couple-img img:hover {
  border-color: var(--rose-primary);
  box-shadow: var(--shadow-medium);
}

.invitation-section .wrap-invi-content {
  border: 1px solid var(--emerald-light);
  border-radius: 24px;
  position: relative;
  background: linear-gradient(135deg, rgba(254, 249, 245, 0.98) 0%, rgba(249, 201, 212, 0.08) 50%, rgba(184, 230, 209, 0.08) 100%);
  padding: 2.5rem;
  margin-top: 2.5rem;
}

.invitation-section .wrap-invi-content .title-small {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.invitation-section .wrap-invitation .title-small p {
  position: absolute;
  margin: 0;
  left: 50%;
  transform: translateX(-50%);
  top: 8px;
  color: var(--emerald-primary);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.1rem;
  background: var(--cream);
  padding: 0 20px;
}

.invitation-section .wrap-invitation .title-small img {
  width: 270px;
  max-width: unset !important;
  filter: brightness(0) saturate(100%) invert(48%) sepia(96%) saturate(1352%) hue-rotate(130deg) brightness(95%) contrast(87%);
}

.wrap-invitation .text-desc {
  font-size: 1.3rem;
  font-family: 'Inter', sans-serif;
}

.wrap-invitation .text-desc p {
  color: var(--rose-primary);
  font-weight: 600;
}

.invitation-section .invitation-content {
  color: var(--neutral-dark);
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
}

.invitation-section .invitation-content p {
  text-align: center;
}

.invitation-section .wrap-name {
  align-items: center;
  color: var(--neutral-dark);
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.invitation-section .wrap-name i {
  color: var(--emerald-primary);
}

.invitation-couple p {
  color: var(--neutral-dark);
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.invitation-couple span {
  color: var(--rose-primary);
  font-size: 1.5rem;
  width: 50px;
  display: inline-block;
}

.invitation-section .city {
  color: #fff;
  background-image: url("/img/tree-2.png");
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 80px;
  width: 80px;
  text-align: center;
}

.invitation-section .invitation-parent {
  border-bottom: 2px solid #fff;
  color: #595959;
  font-size: 21px;
}

/* Couple Section - Soft Card Grid */
.couple-section {
  max-width: 1200px;
  margin: 0 auto;
}

.couple-section .wrap-people {
  max-height: fit-content;
  min-height: 350px;
  gap: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.couple-section .wrap-people .member {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(184, 230, 209, 0.08) 50%, rgba(255, 255, 255, 0.98) 100%);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--emerald-light);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.couple-section .wrap-people .member:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
  border-color: var(--emerald-primary);
}

.couple-section .wrap-people .member-groom {
  border-color: var(--emerald-light);
}

.couple-section .wrap-people .member-bride {
  border-color: var(--rose-light);
}

.couple-section .wrap-people .member:hover.member-bride {
  border-color: var(--rose-primary);
}

.couple-section .wrap-people .member-image img {
  border-radius: 50%;
  border: 2px solid var(--emerald-light);
  box-shadow: var(--shadow-soft);
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  display: block;
  transition: all 0.4s ease;
}

.couple-section .wrap-people .member-image img:hover {
  border-color: var(--emerald-primary);
  box-shadow: var(--shadow-medium);
}

.couple-section .wrap-people .member-bride .member-image img {
  border-color: var(--rose-light);
}

.couple-section .wrap-people .member-bride .member-image img:hover {
  border-color: var(--rose-primary);
}

.couple-section .wrap-people .member-name {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--emerald-primary);
  margin-top: 1.5rem;
}

.couple-section .wrap-people .member-bride .member-name {
  color: var(--rose-primary);
}

.couple-section .wrap-people .groom-story,
.couple-section .wrap-people .bride-story {
  font-family: 'Inter', sans-serif;
  color: var(--neutral-dark);
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 1rem;
}

.couple-section .wrap-people .member-contact li {
  line-height: 20px;
}

.couple-section .member-contact li a {
  font-size: 20px;
  display: inline-block;
  color: var(--emerald-primary);
  transition: color 0.3s ease;
}

.couple-section .member-contact li a:hover {
  color: var(--rose-primary);
}
.limit-text{
  overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-line-clamp: 12;
   -webkit-box-orient: vertical;
}
.flip-card {
  background-color: transparent;
  perspective: 1000px; 
  -webkit-perspective: 1000px;
  min-height: inherit;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transition: transform 0.8s;
  -webkit-transition: transform 0.8s;;
}
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: inherit;
  z-index: 1;
}
.flip-card-back>ul{
  bottom: 10px;
  gap: 10px;
  justify-content: center;
}
.flip-card-back {
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  font-size:13px;
}
.invitation-groom-parent{
  font-size: 15px;
}
.parent-name > span {
  font-weight: bold;
}
.text-story{
  font-size: 14px;
}
@media screen and (max-width: 450px){
  .couple-section .wrap-people {
    max-height: fit-content;
    flex-direction: column;
    min-height: 300px;
  }
  .flip-card{
    margin-bottom: 25px;
    min-height: inherit;
  }
  .flip-card-inner{
    width: 100%;
    min-height: 500px;
    margin: 0 auto;
  }
  .flip-card-front, .flip-card-back{
    height: 100%;
  }
  .wrap-story > .text-story{
    font-size: 20px;
  }
}

/* Event Section - Soft Cards */
.event-section .event-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 201, 212, 0.06) 50%, rgba(184, 230, 209, 0.06) 100%) !important;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--emerald-light);
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-section .event-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
  border-color: var(--rose-primary);
}

/* people-section */

.people-section .rounded-circle {
  overflow: hidden;
}
.people-section a {
  color: var(--emerald-primary);
  transition: color 0.3s ease;
}

.people-section a:hover {
  color: var(--rose-primary);
}

/* wishes-section */

.wish-box {
  border-color: var(--emerald-primary);
  border-width: 3px;
  border-radius: 12px;
}
.wishes-section button {
  background: linear-gradient(135deg, var(--rose-light) 0%, var(--emerald-light) 100%);
  border: 1px solid var(--rose-light);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--neutral-dark);
  font-family: 'Lora', serif;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 30px;
  box-shadow: var(--shadow-light);
}

.event-section a {
  background: linear-gradient(135deg, var(--rose-light) 0%, var(--emerald-light) 100%);
  border: 1px solid var(--rose-light);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--neutral-dark);
  font-family: 'Lora', serif;
  font-weight: 500;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 20px;
  box-shadow: var(--shadow-light);
  display: inline-block;
  margin-right: 8px;
  white-space: nowrap;
}

.wishes-section button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  background: linear-gradient(135deg, var(--rose-primary) 0%, var(--emerald-primary) 100%);
  border-color: var(--rose-primary);
  color: var(--white);
}

.event-section a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  background: linear-gradient(135deg, var(--rose-primary) 0%, var(--emerald-primary) 100%);
  border-color: var(--rose-primary);
  color: var(--white);
}

/* Donate Section - Soft Cards */
.donate-section .donate-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(184, 230, 209, 0.08) 30%, rgba(249, 201, 212, 0.08) 70%, rgba(255, 255, 255, 0.98) 100%);
  border: 1px dashed var(--emerald-light);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.donate-section .donate-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  border-color: var(--rose-primary);
}

.donate-card .sub-title {
  color: var(--neutral-dark);
  font-size: 1.3rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.donate-modal-header {
  background: linear-gradient(135deg, var(--emerald-light) 0%, var(--rose-light) 100%);
  color: var(--neutral-dark);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.donate-box .cryptos-box-view .coin-address {
  background: var(--neutral-light);
  border: 2px solid var(--emerald-primary);
  border-radius: 8px;
}

.donate-box .cryptos-box-view .cryptos-box-view-close {
  background: linear-gradient(135deg, var(--emerald-primary) 0%, var(--emerald-dark) 100%);
  border: 2px solid var(--emerald-dark);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.donate-box .cryptos-box-view .cryptos-box-view-close:hover {
  background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald-primary) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* Header - Soft Style */
header {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 201, 212, 0.05) 50%, rgba(184, 230, 209, 0.05) 100%);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-light);
  border-bottom: 1px solid var(--emerald-light);
}

header .navbar-brand {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--emerald-primary) 0%, var(--rose-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

header .navbar-toggler {
  border: 2px solid var(--emerald-primary);
  border-radius: 8px;
}

header .navbar-toggler i {
  color: var(--emerald-primary);
}

/* Footer - Soft Style */
.footer-section {
  background: linear-gradient(135deg, var(--emerald-light) 0%, var(--rose-light) 100%);
  color: var(--neutral-dark);
  position: relative;
  overflow: hidden;
}

.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='footerFloral' x='0' y='0' width='100' height='100' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='20' cy='20' r='2' fill='%23ffffff' opacity='0.15'/%3E%3Ccircle cx='80' cy='30' r='1.5' fill='%23ffffff' opacity='0.12'/%3E%3Ccircle cx='50' cy='70' r='2.5' fill='%23ffffff' opacity='0.15'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100' height='100' fill='url(%23footerFloral)'/%3E%3C/svg%3E");
  background-size: 150px 150px;
  opacity: 0.4;
  pointer-events: none;
}

.footer-section .title {
  color: var(--neutral-dark);
  font-size: 2.5rem;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  position: relative;
  z-index: 1;
}

.footer-section .sub-title {
  font-size: 1.2rem;
  color: var(--neutral-medium);
  font-family: 'Lora', serif;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.main_area .text-and {
  padding: 0 10px;
}

.wrap-img-medal p {
  font-size: 2rem !important;
}

/* Responsive Styles - Bold & Contemporary */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
  
  .main_area .wedding_area .title {
    font-size: 2rem;
  }
  
  .day_area_inner {
    font-size: 3.5rem;
  }
  
  .couple-section .wrap-people {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .invitation-section .wrap-invitation {
    padding: 1.5rem;
  }
  
  .bold-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
  }
  
  .main_area .main_title {
    bottom: -29px;
  }
  
  .main_area .wedding_area {
    font-size: 1.3rem;
  }
  
  .main_area .wedding_area .title {
    font-size: 1.7rem;
  }
  
  .main_area .invitation_place,
  .main_area .invitation_day {
    font-size: 1rem;
    line-height: 2rem;
  }
  
  .day_area_inner {
    font-size: 3rem;
  }
  
  .day_area_inner > img {
    width: 30px;
    margin-left: 10px;
    margin-right: 10px;
  }
  
  .invitation-section .wrap-invitation {
    padding: 1rem;
    border-width: 3px;
  }
  
  .invitation-section .wrap-invitation .title-big {
    font-size: 2rem;
  }
  
  .invitation-couple span {
    font-size: 0.5rem;
  }
  
  .invitation-couple p {
    font-size: 1.2rem;
  }
  
  .invitation-section .invitation-content {
    font-size: 16px !important;
    line-height: 30px !important;
  }
  
  .invitation-section .invitation-content p {
    margin-bottom: 0;
  }
  
  .bold-card {
    padding: 1rem;
    border-width: 3px;
  }
  
  .accessibility-btn {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
  
  .footer-section .title {
    font-size: 2rem;
  }
  
  .footer-section .sub-title {
    font-size: 1.1rem;
  }
}
/* Wishes Section - Professional & Colorful Style */
#wish-form {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 201, 212, 0.1) 50%, rgba(184, 230, 209, 0.1) 100%);
  border-radius: 28px;
  border: 2px solid var(--emerald-light);
  padding: 2.5rem;
  box-shadow: var(--shadow-medium);
  position: relative;
  overflow: hidden;
}

#wish-form::after {
  content: '💌';
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 2rem;
  opacity: 0.3;
  pointer-events: none;
}
button#btn-submit-comment {
  background: linear-gradient(135deg, var(--emerald-primary) 0%, var(--rose-primary) 100%);
  color: var(--white);
  border: 2px solid transparent;
  font-weight: 600;
  font-family: 'Lora', serif;
  text-transform: capitalize;
  padding: 16px 40px;
  border-radius: 30px;
  box-shadow: var(--shadow-medium);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

button#btn-submit-comment::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

button#btn-submit-comment:hover::before {
  left: 100%;
}

button#btn-submit-comment:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(125, 211, 160, 0.4), 0 4px 12px rgba(245, 168, 184, 0.3);
  background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--rose-dark) 100%);
}
#show-comments {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(184, 230, 209, 0.08) 50%, rgba(249, 201, 212, 0.08) 100%);
  border-radius: 28px;
  border: 2px solid var(--emerald-light);
  padding: 2.5rem;
  box-shadow: var(--shadow-medium);
  position: relative;
}

.box-comment {
  background: linear-gradient(135deg, var(--white) 0%, rgba(249, 201, 212, 0.1) 100%);
  border-radius: 20px;
  border-left: 4px solid var(--emerald-primary);
  padding: 1.8rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  position: relative;
}

.box-comment::before {
  content: '💝';
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  opacity: 0.2;
}

.box-comment:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-medium);
  border-left-color: var(--rose-primary);
}

.box-comment h4 {
  color: var(--emerald-primary);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.box-comment p {
  color: var(--neutral-dark);
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  margin: 0;
}

.reply-comment-box {
  border-top: 1px dashed var(--rose-light);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

.emoji-picker{max-width:100%;display:none;position: absolute;user-select: none!important;background: #fff;right: 0;z-index: 9999;bottom: -405px;-webkit-box-shadow: 0 1px 2px 0 rgb(60 64 67 / 35%), 0 2px 6px 2px rgb(60 64 67 / 35%);box-shadow: 0 1px 2px 0 rgb(60 64 67 / 35%), 0 2px 6px 2px rgb(60 64 67 / 35%);border-radius: 0.5rem;overflow: hidden;}
.emoji-picker > emoji-picker{--emoji-size:22px;}
/* Form Inputs - Professional Styling */
#wish-form #name-comment,
#wish-form textarea {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 201, 212, 0.03) 50%, rgba(184, 230, 209, 0.03) 100%);
  border: 2px solid var(--emerald-light) !important;
  border-radius: 16px !important;
  padding: 14px 18px !important;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--neutral-dark);
  transition: all 0.3s ease;
  margin-bottom: 1rem !important;
  width: 100%;
  box-shadow: var(--shadow-light);
}

#wish-form #name-comment:focus,
#wish-form textarea:focus {
  outline: none;
  border-color: var(--emerald-primary) !important;
  box-shadow: 0 0 0 3px rgba(125, 211, 160, 0.2), var(--shadow-soft) !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(249, 201, 212, 0.05) 50%, rgba(184, 230, 209, 0.05) 100%);
}

#wish-form #name-comment::placeholder,
#wish-form textarea::placeholder {
  color: var(--neutral-medium);
  opacity: 0.7;
}

#wish-form textarea {
  resize: none;
  min-height: 120px;
  line-height: 1.6;
}

#wish-form .textAreaIcons {
  position: relative;
  text-align: right;
  background: linear-gradient(135deg, var(--emerald-light) 0%, var(--rose-light) 100%);
  padding: 12px 15px;
  border-radius: 0 0 16px 16px;
  margin-top: -1rem;
  border-top: 1px solid var(--emerald-light);
}

#wish-form .textAreaIcons span {
  color: var(--neutral-dark);
  cursor: pointer;
  margin-right: 8px;
  font-size: 1.2rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

#wish-form .textAreaIcons span:hover {
  transform: scale(1.2);
  color: var(--emerald-primary);
}
.tooltip{ width: 150px;}
.tooltip .tooltip-inner{padding: 8px 6px;font-size: 15px;}
#wish-form .wishes-autocomplete-content {
  position: absolute;
  top: 50px;
  width: 100%;
  left: 0;
  z-index: 333;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-medium);
  border: 2px solid var(--emerald-light);
  overflow: hidden;
}

#wish-form .wishes-autocomplete-content input {
  background-image: url('../img/searchicon.png') !important;
  background-position: 10px 15px !important;
  background-repeat: no-repeat !important;
  width: 100% !important;
  font-size: 16px !important;
  padding: 12px 20px 12px 40px !important;
  border: none !important;
  border-bottom: 2px solid var(--emerald-light) !important;
  margin-bottom: 0 !important;
  border-radius: 0 !important;
  font-family: 'Inter', sans-serif;
}

#wish-form .wishes-autocomplete-content input:focus {
  outline: none;
  border-bottom-color: var(--emerald-primary) !important;
}

#wish-form .wishes-autocomplete-content ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  max-height: 300px;
  overflow: auto;
  display: block;
  height: auto;
  text-align: left;
}

#wish-form .wishes-autocomplete-content ul li a {
  border: none !important;
  border-bottom: 1px solid var(--emerald-light) !important;
  margin-top: 0 !important;
  padding: 14px 20px !important;
  text-decoration: none !important;
  font-size: 15px !important;
  color: var(--neutral-dark) !important;
  display: block !important;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

#wish-form .wishes-autocomplete-content ul li a:hover {
  background: linear-gradient(90deg, var(--emerald-light) 0%, var(--rose-light) 100%) !important;
  color: var(--neutral-dark) !important;
  padding-left: 25px !important;
}
#wish-form .tooltip-custom {
	position: relative;
	display: inline-block;
}

/* dresscode */
.event-section .dresscode-colors-event{
  position: relative;
	display: flex;
	align-items: center;
	gap: 4px;
	background: rgb(246 246 246 / 70%);
	padding: 4px;
	justify-content: center;
  width: 36%;
}
.event-section .dresscode-colors-event > .dresscode-colors-item{
	border-radius: 50%;
	width: 25px;
	height: 25px;
}
.event-section .dresscode-colors-wrap{
  position: absolute;
  bottom: 0;
  width: 100%;
}
.event-section .event-item:hover .tooltip-dresscode{
  display: block;
}

.event-section .event-item .tooltip-dresscode {
	width: 130px;
  font-family: sans-serif; 
	font-size: 14px;
  background-color: rgb(255 255 255);
  border: 1px solid #eee;
  color: #000;
  box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
	text-align: center;
	border-radius: 6px;
	padding: 5px 0;
	position: absolute;
	z-index: 1;
  bottom: 40px;
  display: none;
}
.event-section .event-item .tooltip-dresscode::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: rgb(255 255 255) transparent transparent transparent;
}
@media (max-width:449px){
  .event-section .dresscode-colors-event{bottom: 165px!important;width: 100%!important;gap: 10px!important;}
}

.contact-validation-active .error-handling-messages {
  width: 100% !important;
  margin-top: 15px !important;
}

.contact-validation-active #success,
.contact-validation-active #c-success,
.contact-validation-active #c-error,
.contact-validation-active #error {
width: 100%;
color: #fff;
padding: 5px 10px;
font-size: 16px;
text-align: center;
display: none;
}
@media (max-width: 767px) {
.contact-validation-active #success,
.contact-validation-active #c-success,
.contact-validation-active #c-error,
.contact-validation-active #error {
  font-size: 15px;
}
}
.contact-validation-active #c-success,
.contact-validation-active #success {
background-color: #009a00;
border-left: 5px solid green;
margin-bottom: 5px;
}
.contact-validation-active #c-error,
.contact-validation-active #error {
background-color: #ff1a1a;
border-left: 5px solid red;
}
