/* ============================================
   TEMPLATE 15 - Elegant & Modern Wedding Theme
   Color Scheme: Rose Gold & Blush Pink
   ============================================ */

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: linear-gradient(180deg, #fff5f0 0%, #ffeef5 100%);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #d4a574 0%, #c89b6d 100%);
  border-radius: 10px;
  border: 2px solid #fff5f0;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #c89b6d 0%, #b8905a 100%);
}

/* Body & Base Styles */
body {
  font-family: 'Bellota Text', cursive;
  background: #fefcf9;
  background-attachment: fixed;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 182, 193, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 218, 185, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

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

/* Section Background Effects */
.section-bg-affect {
  background: linear-gradient(135deg, #fffaf5 0%, #fff8f0 100%);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(232, 196, 160, 0.1);
}

.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='floral' x='0' y='0' width='100' height='100' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='20' cy='20' r='2' fill='%23d4a574' opacity='0.04'/%3E%3Ccircle cx='80' cy='30' r='1.5' fill='%23d4a574' opacity='0.03'/%3E%3Ccircle cx='50' cy='70' r='2.5' fill='%23d4a574' opacity='0.04'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100' height='100' fill='url(%23floral)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.6;
  pointer-events: none;
}

/* Alternate Section Background (xen kẽ) */
.section-bg-alternate {
  background: linear-gradient(135deg, #fffefb 0%, #fffdf8 50%, #fffefb 100%);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(212, 165, 116, 0.08);
}

.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='floralAlt' x='0' y='0' width='120' height='120' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='30' cy='30' r='2.5' fill='%23d4a574' opacity='0.035'/%3E%3Ccircle cx='90' cy='40' r='2' fill='%23d4a574' opacity='0.03'/%3E%3Ccircle cx='60' cy='80' r='3' fill='%23d4a574' opacity='0.035'/%3E%3Ccircle cx='20' cy='70' r='2' fill='%23d4a574' opacity='0.03'/%3E%3Ccircle cx='100' cy='90' r='1.5' fill='%23d4a574' opacity='0.025'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='120' height='120' fill='url(%23floralAlt)'/%3E%3C/svg%3E");
  background-size: 250px 250px;
  opacity: 0.5;
  pointer-events: none;
}

@keyframes shimmer {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

/* Story Section Timeline Colors */
.story-section .timeline-card::before {
  border-color: #e8c4a0;
}

.story-section .timeline .title::before {
  border-color: #e8c4a0;
}

.story-section .timeline-1 li {
  border-left-color: #e8c4a0;
}

.story-section .timeline-1 li:before {
  border-color: #d4a574;
  box-shadow: 3px 3px 0px #e8c4a0;
}

/* Donate Section */
.donate-section .donate-box .donate-card {
  width: 100%;
  background: linear-gradient(135deg, #fff 0%, #fff5f0 100%);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.donate-card.p-4.rounded.text-center {
  border: 2px dashed #e8c4a0;
  position: relative;
  overflow: hidden;
}

.donate-card.p-4.rounded.text-center::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 182, 193, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.donate-card.p-4.rounded.text-center:hover::before {
  opacity: 1;
}

.donate-card.p-4.rounded.text-center:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 35px rgba(212, 165, 116, 0.2);
  border-color: #d4a574;
}

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

.donate-section .donate-box .donate-card .qr-code-image {
  max-width: 150px;
  display: block;
  cursor: zoom-in;
  transition: transform 0.3s ease;
  border-radius: 10px;
  padding: 5px;
  background: #fff;
}

.donate-section .donate-box .donate-card .qr-code-image:hover {
  transform: scale(1.1);
}

/* Donate Modal */
.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: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.donate-modal-content {
  position: relative;
  background: linear-gradient(135deg, #fff 0%, #fff5f0 100%);
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 750px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  overflow: hidden;
  animation: modalSlideIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalSlideIn {
  from {
    top: -100px;
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    top: 0;
    opacity: 1;
    transform: scale(1);
  }
}

.donate-modal strong, .donate-modal h3 {
  font-family: inherit !important;
}

.donate-modal-close {
  color: #d4a574;
  font-size: 32px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 15px;
  z-index: 999;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
}

.donate-modal-close:hover {
  color: #c89b6d;
  transform: rotate(90deg);
  background: rgba(255, 255, 255, 1);
}

.donate-modal-header {
  padding: 20px;
  background: linear-gradient(135deg, #d4a574 0%, #c89b6d 100%);
  color: #fff;
  font-size: 28px;
  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 20px;
}

.donate-box .donate-card:hover {
  box-shadow: 0 12px 30px rgba(212, 165, 116, 0.25);
}

.donate-box .donate-card h3 {
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 18px;
  line-height: 30px;
  color: #8b6f47;
}

.donate-box .donate-card p {
  margin: 10px 0 !important;
  font-size: 16px;
  color: #5b595a;
}

.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: 2px solid #e8c4a0;
  padding: 5px;
  margin: auto;
  display: block;
  cursor: zoom-in;
  border-radius: 10px;
}

.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;
  transition: transform 0.3s ease;
}

.donate-box .cryptos-box .cryptos-items .crypto-item:hover {
  transform: scale(1.1);
}

.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: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.donate-box .cryptos-box-view h5 {
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: #8b6f47;
}

.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: 12px;
  background: linear-gradient(135deg, #fff5f0 0%, #ffeef5 100%);
  margin-bottom: 15px;
  word-break: break-word;
  color: #201f1f;
  border-radius: 8px;
  border: 1px solid #e8c4a0;
}

.donate-box .cryptos-box-view .cryptos-box-view-close {
  margin-top: 15px;
  background: linear-gradient(135deg, #d4a574 0%, #c89b6d 100%);
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.donate-box .cryptos-box-view .cryptos-box-view-close:hover {
  background: linear-gradient(135deg, #c89b6d 0%, #b8905a 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

/* Header Styles */
header .navbar-brand {
  font-size: 22px;
  background: linear-gradient(135deg, #d4a574 0%, #c89b6d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  transition: all 0.3s ease;
}

header .navbar-brand:hover {
  transform: scale(1.05);
}

/* Offcanvas Menu */
.offcanvas-menu li {
  position: relative;
}

.offcanvas-menu li:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, #d4a574 0%, transparent 100%);
  transition: width 0.3s ease;
}

.offcanvas-menu li:hover:after {
  width: 100%;
}

.offcanvas-menu .nav-link {
  font-family: "Texturina", serif;
  font-size: 1.3rem;
  text-transform: capitalize;
  color: #8b6f47;
  transition: all 0.3s ease;
  position: relative;
}

.offcanvas-menu .nav-link:hover {
  color: #d4a574;
  padding-left: 10px;
}

/* Typography */
.section-title {
  font-family: "Great Vibes", cursive;
  font-size: 3rem;
  background: linear-gradient(135deg, #d4a574 0%, #c89b6d 50%, #b8905a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
  animation: titleGlow 3s ease-in-out infinite;
}

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

/* 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;
}

@keyframes titleGlow {
  0%, 100% {
    filter: drop-shadow(0 0 5px rgba(212, 165, 116, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 15px rgba(212, 165, 116, 0.6));
  }
}

.section-sub-title {
  font-family: 'Bellota Text', cursive;
  color: #8b6f47;
}

.title {
  font-family: 'Bellota Text', cursive;
  color: #8b6f47;
}

.sub-title {
  font-family: 'Bellota Text', cursive;
  color: #8b6f47;
}

/* Banner Section */
.main_area {
  background: linear-gradient(180deg, #fff5f0 0%, #ffeef5 50%, #fff5f0 100%);
  position: relative;
  overflow: hidden;
  padding: 40px 20px;
}

.main_area::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 182, 193, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.banner-section .bgm_area {
  background: linear-gradient(135deg, #d4a574 0%, #c89b6d 100%);
  border-bottom: 3px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.banner-section .bgm_area::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  100% { left: 100%; }
}

.main_area .invitation_day {
  color: #8b6f47;
  letter-spacing: 2px;
  font-size: 1.5rem;
}

.main_area .date {
  color: #d4a574;
  font-size: 2.5rem;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(212, 165, 116, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.main_area .invitation_place,
.main_area .date-time {
  color: #8b6f47;
  letter-spacing: 1px;
  font-size: 1.5rem;
}

.day_area_inner {
  font-size: 5rem;
  font-style: italic;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #d4a574 0%, #c89b6d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 60px;
  font-family: "Baloo Paaji 2", cursive;
}

.day_area_inner > img {
  width: 40px;
  margin-left: 10px;
  vertical-align: middle;
  animation: heartBeat 1.5s ease-in-out infinite;
}

@keyframes heartBeat {
  0%, 100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.1);
  }
}

.main_area .main_image_area {
  position: relative;
  z-index: 2;
}

.main_area .main_image_wrapper {
  position: absolute;
  left: 50%;
  top: -30px;
  transform: translateX(-50%);
  z-index: 10;
  animation: float 6s ease-in-out infinite;
  border-radius: 50%;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.main_area .main_image_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

@keyframes float {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

.main_area .wrap-img > img {
  width: 80%;
  border-radius: 50%;
  border: 8px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 40px rgba(212, 165, 116, 0.3);
  transition: all 0.5s ease;
}

.main_area .wrap-img:hover > img {
  transform: scale(1.05);
  box-shadow: 0 15px 50px rgba(212, 165, 116, 0.4);
}

.main_area .main_image_area .wrap-img {
  position: relative;
}

.main_area .wedding_area {
  color: #8b6f47;
  font-size: 2em;
  line-height: 1.2;
  letter-spacing: 3px;
  position: relative;
  z-index: 2;
}

.main_area .wedding_area .save-date {
  color: #d4a574;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
}

.main_area .wedding_area .wrap-name {
  font-size: 2.0rem;
  background: linear-gradient(135deg, #d4a574 0%, #c89b6d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 20px 0;
}

.main_area .wedding_area .wrap-name span:nth-child(2) {
  font-size: 1.8rem;
  margin: 0 15px;
  color: #d4a574;
  -webkit-text-fill-color: #d4a574;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  animation: rotateHeart 2s ease-in-out infinite;
}

@keyframes rotateHeart {
  0%, 100% {
    transform: rotate(0deg) scale(1);
  }
  25% {
    transform: rotate(-10deg) scale(1.1);
  }
  50% {
    transform: rotate(0deg) scale(1.2);
  }
  75% {
    transform: rotate(10deg) scale(1.1);
  }
}

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

.main_area .married {
  color: #d4a574;
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: 3px;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(212, 165, 116, 0.2);
}

/* Accessibility Buttons */
.accessibility-btn {
  background: linear-gradient(135deg, #d4a574 0%, #c89b6d 100%);
  border: none;
  color: #fff;
  padding: 12px 16px;
  border-radius: 25px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
  position: relative;
  overflow: hidden;
}

.accessibility-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.accessibility-btn:hover::before {
  width: 300px;
  height: 300px;
}

.accessibility-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
  background: linear-gradient(135deg, #c89b6d 0%, #b8905a 100%);
}

.accessibility-btn:active {
  transform: translateY(-2px) scale(1.02);
}

/* Video Section */
.video-section iframe {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(212, 165, 116, 0.2);
  transition: all 0.3s ease;
}

.video-section iframe:hover {
  box-shadow: 0 15px 50px rgba(212, 165, 116, 0.3);
  transform: scale(1.02);
}

/* Gallery Section */
#btn-see-more-gallery {
  border-radius: 50px;
  padding: 12px 30px;
  background: linear-gradient(135deg, #d4a574 0%, #c89b6d 100%);
  border: none;
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

#btn-see-more-gallery:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
}

.gallery-section .btn-secondary.btn-see-more-gallery {
  background: linear-gradient(135deg, #d4a574 0%, #c89b6d 100%);
  border-color: #fff;
}

.gallery-item {
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 15px;
  overflow: hidden;
}

.gallery-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(212, 165, 116, 0.3);
}

.lg-backdrop, .lg-outer {
  z-index: 9999999;
}

/* Wedding Date Section */
.weddingdate-section .main_dday_name {
  display: inline-block;
  text-align: center;
  font-size: 1.4em;
  border-bottom: 2px solid #e8c4a0;
  padding-bottom: 10px;
  color: #8b6f47;
}

.weddingdate-section .mini_calendar .calendar-month,
.weddingdate-section .mini_calendar table th {
  color: #d4a574;
  font-weight: 600;
}

.weddingdate-section .mini_calendar table th {
  color: #d4a574;
}

.weddingdate-section .mini_calendar .calendar-month {
  font-weight: bold;
  color: #d4a574;
  font-size: 1.5em;
}

.weddingdate-section #clock > div {
  color: #8b6f47;
}

.weddingdate-section .wrap-img {
  text-align: center;
  color: #8b6f47;
  font-size: 14px;
}

.weddingdate-section .day,
.weddingdate-section .time {
  color: #d4a574;
  font-size: 45px;
  text-align: center;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(212, 165, 116, 0.2);
}

.weddingdate-section .wrap-img img {
  width: 50px;
  animation: rotate 10s linear infinite;
}

.weddingdate-section .mini_calendar td {
  color: #8b6f47;
  transition: all 0.3s ease;
}

.weddingdate-section .mini_calendar td:hover {
  background: rgba(212, 165, 116, 0.1);
  border-radius: 5px;
}

.weddingdate-section .countdown .box {
  color: #d4a574 !important;
  background: linear-gradient(135deg, rgba(255, 245, 240, 0.8) 0%, rgba(255, 238, 245, 0.8) 100%);
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0 5px 20px rgba(212, 165, 116, 0.2);
  transition: all 0.3s ease;
}

.weddingdate-section .countdown .box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}

.weddingdate-section .mini_calendar table th {
  border-top: 2px solid #e8c4a0;
  border-bottom: 2px solid #e8c4a0;
  padding: 10px;
}

.mini_calendar > .mini_calendar {
  border-bottom: 2px solid #e8c4a0;
  padding-bottom: 20px;
}

/* Story Section */
.story-section .timeline .title {
  color: #d4a574;
  font-weight: 600;
}

.timeline-card .img-holder {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(212, 165, 116, 0.2);
  transition: all 0.4s ease;
}

.timeline-card .img-holder:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(212, 165, 116, 0.3);
}

/* Invitation Section */
.invitation-couple p {
  color: #d4a574;
  font-size: 2.2rem;
  font-weight: 600;
}

.invitation-couple .text {
  align-items: center;
  gap: 15px;
  align-items: baseline;
}

.invitation-couple .text small {
  font-size: 1rem;
  color: #8b6f47;
}

.invitation-section .couple-img {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(212, 165, 116, 0.2);
  transition: all 0.4s ease;
}

.invitation-section .couple-img:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 50px rgba(212, 165, 116, 0.3);
}

.invitation-section .invitation-parent {
  color: #d4a574;
}

.invitation-section .wrap-invitation .title-big {
  color: #fff;
  font-size: 3rem;
}

.invitation-section .wrap-invitation .title-small {
  position: relative;
}

.invitation-section .wrap-invitation .title-small p {
  position: absolute;
  margin: 0;
  left: 50%;
  transform: translateX(-50%);
  top: 6px;
  color: #fff;
}

.invitation-section .wrap-invitation .title-small img {
  width: 250px;
}

.wrap-invitation .text-desc {
  font-size: 1.5rem;
  color: #8b6f47;
}

.invitation-section .invitation-content {
  text-align: center;
  color: #8b6f47;
  font-size: 1.1rem;
  line-height: 1.8;
}

.invitation-section .wrap-name {
  align-items: center;
  color: #d4a574;
  font-weight: bold;
}

.invitation-section .wrap-name i {
  color: #fff;
}

.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 {
  font-size: 24px;
}

/* Couple Section */
.couple-section .wrap-people {
  overflow: hidden;
  gap: 30px;
  justify-content: space-between;
}

.couple-section .wrap-people .member {
  width: 50%;
  transition: all 0.4s ease;
}

.couple-section .wrap-people .member:hover {
  transform: translateY(-10px);
}

.couple-section .wrap-people .member img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(212, 165, 116, 0.2);
  transition: all 0.4s ease;
}

.couple-section .wrap-people .member:hover img {
  box-shadow: 0 15px 40px rgba(212, 165, 116, 0.3);
}

.couple-section .wrap-people .member-name {
  text-align: center;
  margin: 20px auto;
  width: 70%;
  background: url("../img/groombride_bg.png") no-repeat left bottom;
  background-size: contain;
  font-size: 22px;
  color: #d4a574 !important;
  font-weight: 600;
  padding-bottom: 8px;
  -webkit-text-fill-color: #d4a574 !important;
  background-clip: unset !important;
  -webkit-background-clip: unset !important;
}

.couple-section .wrap-people .member-contact {
  justify-content: center;
  gap: 10px;
}

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

.couple-section .member-contact li a {
  font-size: 20px;
  display: inline-block;
  color: #d4a574;
  transition: all 0.3s ease;
}

.couple-section .member-contact li a:hover {
  color: #c89b6d;
  transform: scale(1.1);
}

@media screen and (max-width: 450px) {
  .couple-section .wrap-people {
    flex-direction: column;
  }
  .member-groom, .member-bride {
    margin: 0 auto;
  }
  .couple-section .wrap-people .member {
    width: 100%;
  }
}

/* Event Section */
.event-section .event-item {
  background: linear-gradient(135deg, rgba(255, 245, 240, 0.9) 0%, rgba(255, 238, 245, 0.9) 100%) !important;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(212, 165, 116, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.event-section .event-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(212, 165, 116, 0.3);
}

/* People Section */
.people-section .rounded-circle {
  overflow: hidden;
}

.people-section a {
  color: #8b6f47;
}

/* Wishes Section */
.wish-box {
  border-color: #e8c4a0;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(255, 245, 240, 0.8) 0%, rgba(255, 238, 245, 0.8) 100%);
}

.wishes-section button,
.event-section a {
  background: linear-gradient(135deg, #d4a574 0%, #c89b6d 100%);
  border: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: #fff;
  border-radius: 25px;
  padding: 10px 25px;
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.wishes-section button:hover,
.event-section a:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
  background: linear-gradient(135deg, #c89b6d 0%, #b8905a 100%);
}

/* Donate Section */
.donate-section .donate-card {
  background: linear-gradient(135deg, #fff 0%, #fff5f0 100%);
}

.donate-card .sub-title {
  color: #8b6f47;
  font-size: 1.3rem;
}

/* Footer Section */
.footer-section .title {
  background: linear-gradient(135deg, #d4a574 0%, #c89b6d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 3em;
  font-weight: 600;
}

.footer-section .sub-title {
  font-size: 1.3em;
  color: #8b6f47;
}

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

/* Wish Form Styles */
#wish-form {
  background: linear-gradient(135deg, rgba(255, 245, 240, 0.9) 0%, rgba(255, 238, 245, 0.9) 100%);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(212, 165, 116, 0.2);
}

button#btn-submit-comment {
  background: linear-gradient(135deg, #d4a574 0%, #c89b6d 100%);
  color: white;
  text-transform: uppercase;
  border-radius: 25px;
  padding: 12px 30px;
  border: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

button#btn-submit-comment:hover {
  background: linear-gradient(135deg, #c89b6d 0%, #b8905a 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
}

#show-comments {
  background: linear-gradient(135deg, rgba(255, 245, 240, 0.9) 0%, rgba(255, 238, 245, 0.9) 100%);
  border-radius: 20px;
  padding: 25px;
}

.box-comment {
  background-color: white;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(212, 165, 116, 0.1);
  transition: all 0.3s ease;
}

.box-comment:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 20px rgba(212, 165, 116, 0.2);
}

.reply-comment-box {
  border-top: 2px dashed #e8c4a0;
}

.bride-story, .groom-story {
  font-family: 'Bellota Text', cursive;
  color: #8b6f47 !important;
  -webkit-text-fill-color: #8b6f47 !important;
  background-clip: unset !important;
  -webkit-background-clip: unset !important;
}

.bride-story p, .groom-story p {
  color: #8b6f47 !important;
  -webkit-text-fill-color: #8b6f47 !important;
}

.bride-story > a, .groom-story > a {
  color: #d4a574 !important;
  transition: all 0.3s ease;
}

.bride-story > a:hover, .groom-story > a:hover {
  color: #c89b6d !important;
}

.text-story {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.invitation-groom-parent {
  font-family: 'Bellota Text', cursive;
  font-size: 15px;
  color: #8b6f47;
}

.parent-name {
  font-weight: bold;
  color: #8b6f47;
}

/* Emoji Picker */
.emoji-picker {
  max-width: 100%;
  display: none;
  position: absolute;
  user-select: none !important;
  background: #fff;
  right: 0px;
  z-index: 9999;
  bottom: -355px;
  box-shadow: 0 10px 40px rgba(212, 165, 116, 0.2);
  border-radius: 15px;
  overflow: hidden;
}

.emoji-picker > emoji-picker {
  --emoji-size: 22px;
}

@media screen and (max-width: 400px) {
  .emoji-picker > emoji-picker {
    --num-columns: 6;
  }
}

#wish-form textarea:focus {
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.2);
  border-color: #d4a574;
}

#wish-form textarea {
  margin-bottom: 0;
  border-radius: 15px !important;
  resize: none;
  border: 2px solid #e8c4a0;
  transition: all 0.3s ease;
}

#wish-form textarea:focus {
  border-color: #d4a574;
}

#wish-form .textAreaIcons {
  position: relative;
  text-align: right;
  background: #fff;
  padding: 10px;
  border-top: none;
  border-top: 2px solid #e8c4a0;
  border-radius: 0 0 15px 15px;
}

#wish-form .textAreaIcons span {
  color: #8b6f47;
  cursor: pointer;
  margin-right: 4px;
  transition: all 0.3s ease;
}

#wish-form .textAreaIcons span:hover {
  color: #d4a574;
  transform: scale(1.2);
}

.tooltip {
  width: 160px;
}

.tooltip .tooltip-inner {
  padding: 8px 12px;
  font-size: 16px;
  background: linear-gradient(135deg, #d4a574 0%, #c89b6d 100%);
  color: #fff;
}

#wish-form .wishes-autocomplete-content {
  position: absolute;
  top: 50px;
  width: 100%;
  left: 0;
  z-index: 333;
  background: #fff;
  box-shadow: 0 10px 40px rgba(212, 165, 116, 0.2);
  border-radius: 15px;
  overflow: hidden;
}

#wish-form .wishes-autocomplete-content input {
  background-image: url('../img/searchicon.png') !important;
  background-position: 10px !important;
  background-repeat: no-repeat !important;
  width: 100% !important;
  font-size: 16px !important;
  padding: 12px 20px 12px 40px !important;
  border: 2px solid #e8c4a0 !important;
  margin-bottom: 0 !important;
  border-radius: 0 !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: 1px solid #e8c4a0 !important;
  margin-top: -1px !important;
  padding: 12px !important;
  text-decoration: none !important;
  font-size: 15px !important;
  color: #8b6f47 !important;
  display: block !important;
  transition: all 0.3s ease;
}

#wish-form .wishes-autocomplete-content ul li a:hover {
  background: linear-gradient(135deg, rgba(255, 245, 240, 0.9) 0%, rgba(255, 238, 245, 0.9) 100%) !important;
  padding-left: 20px !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: rgba(255, 245, 240, 0.9);
  padding: 4px;
  width: 36%;
  justify-content: center;
  border-radius: 20px;
}

.event-section .dresscode-colors-event > .dresscode-colors-item {
  border-radius: 50%;
  width: 25px;
  height: 25px;
  transition: transform 0.3s ease;
}

.event-section .dresscode-colors-event > .dresscode-colors-item:hover {
  transform: scale(1.2);
}

.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: #fff;
  border: 2px solid #e8c4a0;
  color: #8b6f47;
  box-shadow: 0 10px 30px rgba(212, 165, 116, 0.2);
  text-align: center;
  border-radius: 10px;
  padding: 8px 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: #fff transparent transparent transparent;
}

@media (max-width: 449px) {
  .event-section .dresscode-colors-event {
    width: 100% !important;
    gap: 10px !important;
  }
  .event-section .dresscode-colors-wrap {
    bottom: 189px !important;
  }
}

/* Contact Validation */
.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: 10px;
  font-size: 16px;
  text-align: center;
  display: none;
  border-radius: 10px;
}

@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: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
  border-left: 5px solid #2e7d32;
  margin-bottom: 5px;
}

.contact-validation-active #c-error,
.contact-validation-active #error {
  background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
  border-left: 5px solid #c62828;
}

/* Responsive Styles */
@media (max-width: 767px) and (min-width: 376px) {
  .main_area .wedding_area .title {
    font-size: 1.6rem;
  }
  .main_area .wedding_area .wrap-name {
    font-size: 1.8rem;
  }
  .main_area .wedding_area .wrap-name span:nth-child(2) {
    font-size: 1.5rem;
  }
}

@media (max-width: 375px) {
  .main_area .main_title {
    bottom: -29px;
  }
  .main_area .wedding_area {
    font-size: 1.5rem;
  }
  .main_area .wedding_area .title {
    font-size: 1.5rem;
  }
  .main_area .wedding_area .wrap-name {
    font-size: 1.4rem;
  }
  .main_area .wedding_area .wrap-name span:nth-child(2) {
    font-size: 1.2rem;
  }
  .main_area .invitation_place,
  .main_area .date-time {
    font-size: 1rem;
  }
  .day_area_inner {
    font-size: 4rem;
  }
  .couple-section .member .color-w {
    font-size: 20px;
  }
  .invitation-section .invitation-common-wrapper {
    font-size: 25px;
  }
  .couple-section .wrap-people {
    gap: 5px;
  }
  .couple-section .wrap-contact .contact {
    font-size: 18px;
  }
  .couple-section .member a {
    font-size: 22px;
  }
  .couple-section .wrap-people .member-name {
    font-size: 20px;
  }
  .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-parent {
    font-size: 1rem;
  }
  .wrap-invitation .text-desc {
    font-size: 1rem;
  }
  .invitation-section .invitation-content {
    font-size: 16px !important;
    line-height: 30px !important;
  }
  .invitation-section .invitation-content p {
    margin-bottom: 0;
  }
  .section-title {
    font-size: 2rem;
  }
}
