/* ============================================
   TEMPLATE 20 - Modern Minimal / Elegant Style (Base: Template6)
   Color Scheme: Soft Pastel (Lavender, Blush, Sage)
   Typography: Geometric Sans-serif (Montserrat/Raleway)
   ============================================ */

/* Color Variables - Soft Pastel */
:root {
  --lavender-primary: #b8a9d9;
  --lavender-light: #d4c8e8;
  --lavender-dark: #9b88c4;
  --blush-primary: #f5c2c7;
  --blush-light: #f9d4d8;
  --blush-dark: #e8a5ab;
  --sage-primary: #a8c5a0;
  --sage-light: #c4d9be;
  --sage-dark: #8fb085;
  --neutral-light: #fafafa;
  --neutral-medium: #e8e8e8;
  --neutral-dark: #4a4a4a;
  --white: #ffffff;
  --shadow-minimal: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-subtle: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* Scrollbar - Minimal Style */
::-webkit-scrollbar {
  width: 8px;
}

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

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

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

/* Base Styles */
body {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-weight: 300;
  background: var(--white);
  color: var(--neutral-dark);
  line-height: 1.7;
}

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

/* Typography System - Geometric Sans-serif */
h1, h2, h3, h4, h5, h6, .title, .section-title {
  font-family: 'Raleway', 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--neutral-dark);
  line-height: 1.3;
  letter-spacing: 0.5px;
}

.section-title {
  font-family: 'Raleway', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--neutral-dark);
  text-align: center;
  letter-spacing: 1px;
}

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

.section-sub-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: var(--neutral-dark);
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.8;
}

.title {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
}

.sub-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}

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

/* Section Backgrounds - Minimal */
.section-bg-affect {
  background: var(--white);
  padding: 5rem 0;
  position: relative;
}

.section-bg-affect:nth-child(even) {
  background: var(--neutral-light);
}

.section-bg-alternate {
  background: var(--neutral-light);
  padding: 5rem 0;
  position: relative;
}

/* Header - Minimal Elegant */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-minimal);
  border-bottom: 1px solid var(--neutral-medium);
}

header .navbar-brand {
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--lavender-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(--lavender-light) 0%, var(--blush-light) 100%);
}

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

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

/* Banner Section - Template6 Structure with Minimal Style */
.banner-section {
  background: var(--white);
  position: relative;
  padding-top: 0;
}

.banner-section .title-head {
  background: linear-gradient(135deg, var(--sage-primary) 0%, var(--sage-dark) 100%);
  background-color: rgba(168, 197, 160, 0.9);
  text-align: center;
  color: var(--white);
  padding: 1.5rem 0;
}

.banner-section .title-head p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--white);
  margin: 0;
}

.main_area {
  position: relative;
  text-align: center;
  background: linear-gradient(135deg, rgba(212, 200, 232, 0.1) 0%, rgba(249, 212, 216, 0.1) 100%);
  background-color: rgba(196, 217, 190, 0.08);
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 2rem;
  overflow: visible;
}

.main_area .wrap-img-title {
  width: 100%;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, rgba(184, 169, 217, 0.05) 0%, rgba(245, 194, 199, 0.05) 100%);
  background-color: rgba(250, 250, 250, 0.3);
  border-radius: 16px;
  padding: 1.5rem;
}

.main_area .wrap-img-title img {
  width: 250px;
  max-width: 100%;
  height: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.main_area .wrap-img-title img:hover {
  opacity: 1;
}

.main_area .wrap-img-title .wrap-text {
  display: flex;
  gap: 1px;
  justify-content: center;
  width: 250px;
  margin: 0 auto;
  padding: 5px 0;
  border-top: 1px solid var(--neutral-medium);
  border-bottom: 1px solid var(--neutral-medium);
}

.main_area .wrap-img-title .wrap-text span {
  width: 20px;
  height: 30px;
  border: 1px solid var(--neutral-medium);
  background: var(--white);
  color: var(--neutral-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main_area .name-user {
  font-size: 2.5rem;
  color: var(--neutral-dark);
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  background: linear-gradient(135deg, rgba(212, 200, 232, 0.08) 0%, rgba(249, 212, 216, 0.08) 100%);
  background-color: rgba(250, 250, 250, 0.4);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow-minimal);
}

.main_area .name-user span {
  line-height: 45px;
  font-size: 26px;
  margin-bottom: 0;
}

.main_area .name-user #groom-name {
  color: var(--lavender-primary);
}

.main_area .name-user #bride-name {
  color: var(--blush-primary);
}

.main_area .name-user .text-and {
  font-size: 20px;
  line-height: 20px;
  color: var(--sage-primary);
  padding: 0 10px;
}

.main_area .wrap-img {
  margin: 2rem auto 0;
  max-width: 600px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  border: 1px solid var(--neutral-medium);
  background: linear-gradient(135deg, rgba(212, 200, 232, 0.06) 0%, rgba(249, 212, 216, 0.06) 100%);
  background-color: rgba(250, 250, 250, 0.2);
  padding: 1rem;
}

.main_area .wrap-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.main_area .wrap-img:hover img {
  transform: scale(1.02);
}

/* Accessibilities Section */
.accessibilities-section {
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--blush-light) 100%);
  background-color: rgba(196, 217, 190, 0.12);
}

/* Accessibility Buttons - Minimal */
.accessibility-btn {
  background: var(--white);
  border: 1px solid var(--lavender-light);
  color: var(--neutral-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  padding: 8px 8px;
  border-radius: 20px;
  box-shadow: var(--shadow-minimal);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accessibility-btn .content-button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 4px;
}

.accessibility-btn:hover {
  background: linear-gradient(135deg, var(--lavender-light) 0%, var(--blush-light) 100%);
  border-color: var(--lavender-primary);
  color: var(--neutral-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-subtle);
}

.accessibility-btn .access-section-icon {
  height: 18px;
  width: auto;
  margin-bottom: 2px;
  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) saturate(100%) invert(75%) sepia(30%) saturate(500%) hue-rotate(250deg) brightness(95%) contrast(90%);
}

/* Invitation Section - Template6 Structure */
.invitation-section {
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--lavender-light) 100%);
  background-color: rgba(196, 217, 190, 0.15);
}

.invitation-section .invitation_wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 250, 0.98) 100%);
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-minimal);
  padding: 3rem 2rem;
  border: 1px solid var(--sage-light);
}

.invitation_wrapper::before,
.invitation_wrapper::after {
  display: none;
}

.invitation-section .invitation-title {
  width: 80%;
  margin: 0 auto 2rem;
  border-bottom: 2px solid var(--sage-light);
  padding-bottom: 1.5rem;
}

.invitation-section .invitation-title img {
  width: 50px;
  height: auto;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.invitation-section .invitation-title h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--neutral-dark);
  margin: 0;
}

.invitation-content {
  line-height: 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--neutral-dark);
  margin: 2rem 0;
}

.invitation-content p {
  line-height: 40px;
  color: var(--neutral-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}

.invitation-section .invitation-couple {
  margin: 2rem 0;
  color: var(--sage-primary);
}

.invitation-section .invitation-couple p {
  color: var(--blush-primary);
  font-size: 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  margin: 0;
}

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

.invitation-section .invitation-couple .text small {
  font-size: 1rem;
  color: var(--neutral-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}

.invitation-section .invitation-couple .text span {
  color: var(--sage-primary);
  font-size: 1.5rem;
  margin: 0 0.5rem;
}

.invitation-section .wrap-img-couple {
  margin: 2rem auto;
  max-width: 400px;
  text-align: center;
}

.invitation-section .wrap-img-couple img {
  border-radius: 50%;
  width: 80%;
  max-width: 350px;
  height: auto;
  border: 3px solid var(--sage-light);
  box-shadow: var(--shadow-minimal);
  display: block;
  margin: 0 auto;
}

/* Couple Section - Template6 Structure */
.couple-section {
  background: var(--white);
}

.couple-section h2 {
  line-height: 1 !important;
  width: 70%;
  margin: 0 auto;
  background: url("../img/groombride.png") no-repeat top center;
  background-size: 250px;
  font-size: 1.5rem;
  color: var(--neutral-dark);
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  padding: 2rem 1rem;
  padding-top: 80px;
}

.couple-section p {
  font-size: 12px;
  letter-spacing: 1px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: var(--neutral-dark);
}

.couple-section .wrap-img {
  width: 100%;
  margin: 0 auto;
}

.couple-section .wrap-img img {
  border-radius: 50%;
  max-width: 350px;
  width: 100%;
  height: auto;
  border: 2px solid var(--sage-light);
  box-shadow: var(--shadow-minimal);
}

.couple-section .member {
  gap: 20px;
}

.couple-section .member .wrap-icon {
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--neutral-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}

.couple-section .member .wrap-icon > span > span {
  color: var(--sage-primary);
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
}

.couple-section .member h3 {
  color: var(--neutral-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 1rem;
}

.couple-section .wrap-img-title {
  margin: 0 auto;
  text-align: center;
}

.couple-section .wrap-img-title p {
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}

.couple-section .wrap-img-medal {
  margin: 2rem 0;
}

.couple-section .wrap-img-medal p {
  font-family: 'Raleway', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--neutral-dark);
}

.couple-section .wrap-img-medal p span {
  color: var(--blush-primary);
  margin: 0 0.5rem;
}

.couple-section .wrap-people {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  gap: 25px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.couple-section .wrap-people .member {
  width: 50%;
  max-width: 500px;
  flex: 0 0 auto;
}

.couple-section .member {
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}

.couple-section .member,
.couple-section .member a {
  color: var(--neutral-dark);
  font-size: 20px;
  font-family: 'Montserrat', sans-serif;
}

.couple-section .flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.couple-section .flip-card-inner .border {
  border: 2px solid var(--sage-light) !important;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-minimal);
  transition: all 0.3s ease;
  padding: 1.5rem;
}

.couple-section .flip-card-inner:hover .border {
  transform: translateY(-3px);
  box-shadow: var(--shadow-subtle);
  border-color: var(--sage-primary);
}

.couple-section .member-image {
  margin-bottom: 1.5rem;
}

.couple-section .member-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  border: 1px solid var(--neutral-medium);
}

.couple-section .invitation-groom-parent {
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}

.couple-section .invitation-groom-parent h3 {
  font-weight: 400;
  color: var(--neutral-dark);
  line-height: 1.8;
  font-size: 1rem;
}

/* Event Section - Minimal */
.event-section {
  background: linear-gradient(135deg, var(--lavender-light) 0%, var(--blush-light) 100%);
  background-color: rgba(212, 200, 232, 0.15);
}

.event-section .event-item {
  background: var(--white) !important;
  border-radius: 20px;
  box-shadow: var(--shadow-minimal);
  border: 1px solid var(--neutral-medium);
  padding: 2.5rem;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.event-section .event-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-subtle);
  border-color: var(--sage-light);
}

.event-section a {
  background: var(--white);
  border: 1px solid var(--sage-light);
  transition: all 0.3s ease;
  color: var(--neutral-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 20px;
  box-shadow: var(--shadow-minimal);
  display: inline-block;
  margin-right: 8px;
  white-space: nowrap;
}

.event-section a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-subtle);
  background: linear-gradient(135deg, var(--lavender-light) 0%, var(--blush-light) 100%);
  border-color: var(--sage-primary);
  color: var(--neutral-dark);
}

/* Donate Section - Minimal */
.donate-section {
  background: var(--neutral-light);
}

.donate-section .donate-card {
  background: var(--white);
  border: 1px dashed var(--sage-light);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow-minimal);
  transition: all 0.3s ease;
}

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

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

.donate-section .donate-box .donate-card .qr-code-image {
  max-width: 150px;
  display: block;
  cursor: zoom-in;
  margin: 0 auto 1rem;
}

.donate-box {
  margin-bottom: 0 !important;
}

.donate-box .donate-card p {
  margin: 8px 0 !important;
  font-size: 0.95rem;
}

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

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

.donate-modal.py-5 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.donate-modal.donate-section {
  background-color: rgba(0, 0, 0, 0.5) !important;
}

.donate-modal-content {
  position: relative;
  background-color: var(--white);
  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);
  border-radius: 20px;
  animation-name: animatetopfordonatemodal;
  animation-duration: 0.4s;
}

@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: var(--blush-dark);
  font-size: 28px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 999;
  transition: color 0.3s ease;
}

.donate-modal-close:hover {
  color: var(--blush-primary);
}

.donate-modal-header {
  background: linear-gradient(135deg, var(--lavender-light) 0%, var(--blush-light) 100%);
  color: var(--neutral-dark);
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  padding: 8px 16px;
  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: var(--neutral-dark);
}

.donate-modal-header strong span {
  margin-left: 10px;
}

.donate-modal-body {
  padding: 0 15px;
}

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

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

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

/* Wishes Section - Minimal */
.wishes-section {
  background: var(--white);
}

#wish-form {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--neutral-medium);
  padding: 2.5rem;
  box-shadow: var(--shadow-minimal);
}

#wish-form #name-comment,
#wish-form textarea {
  background: var(--white);
  border: 1px solid var(--neutral-medium) !important;
  border-radius: 12px !important;
  padding: 12px 16px !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: var(--neutral-dark);
  transition: all 0.3s ease;
  margin-bottom: 1rem !important;
  width: 100%;
}

#wish-form #name-comment:focus,
#wish-form textarea:focus {
  outline: none;
  border-color: var(--lavender-primary) !important;
  box-shadow: 0 0 0 3px rgba(184, 169, 217, 0.1) !important;
}

#wish-form textarea {
  resize: none;
  min-height: 100px;
}

#wish-form .textAreaIcons {
  background: var(--neutral-light);
  padding: 10px 15px;
  border-radius: 0 0 12px 12px;
  margin-top: -1rem;
  border-top: 1px solid var(--neutral-medium);
}

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

#wish-form .textAreaIcons span:hover {
  transform: scale(1.15);
  color: var(--lavender-primary);
}

button#btn-submit-comment {
  background: linear-gradient(135deg, var(--lavender-primary) 0%, var(--blush-primary) 100%);
  color: var(--white);
  border: none;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  text-transform: capitalize;
  padding: 14px 36px;
  border-radius: 25px;
  box-shadow: var(--shadow-minimal);
  transition: all 0.3s ease;
  font-size: 1rem;
}

button#btn-submit-comment:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-subtle);
  background: linear-gradient(135deg, var(--lavender-dark) 0%, var(--blush-dark) 100%);
}

#show-comments {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--neutral-medium);
  padding: 2.5rem;
  box-shadow: var(--shadow-minimal);
  margin-top: 2rem;
}

.box-comment {
  background: var(--neutral-light);
  border-radius: 16px;
  border-left: 3px solid var(--sage-primary);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.box-comment:hover {
  transform: translateX(3px);
  box-shadow: var(--shadow-minimal);
  border-left-color: var(--blush-primary);
}

.box-comment h4 {
  color: var(--sage-primary);
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

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

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

/* Error Handling Messages */
.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: var(--white);
  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;
}

/* Footer - Minimal */
.footer-section {
  background: var(--neutral-light);
}

.footer-section .title {
  color: var(--neutral-dark);
  font-size: 2.5rem;
  font-weight: 600;
  font-family: 'Raleway', sans-serif;
}

.footer-section .sub-title {
  font-size: 1.1rem;
  color: var(--neutral-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  opacity: 0.7;
}

/* Gallery Section - Minimal */
.gallery-section {
  background: var(--neutral-light);
}

.gallery-section .gallery-item {
  cursor: pointer;
  overflow: hidden;
}

.gallery-section .gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-section .gallery-item:hover img {
  transform: scale(1.05);
}

#btn-see-more-gallery {
  border-radius: 50px;
  padding: 12px 24px;
}

.gallery-section .btn-secondary.btn-see-more-gallery {
  background: var(--sage-primary);
  border-color: var(--sage-primary);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  transition: all 0.3s ease;
}

.gallery-section .btn-secondary.btn-see-more-gallery:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  transform: translateY(-2px);
}

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

/* Video Section */
.video-section {
  background: linear-gradient(135deg, var(--lavender-light) 0%, var(--blush-light) 100%);
  background-color: rgba(212, 200, 232, 0.15);
  padding: 3rem 0;
}

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

/* Calendar Section */
.section-bg-calendar {
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--lavender-light) 100%);
  background-color: rgba(196, 217, 190, 0.15);
}

.weddingdate-section .wrap-img {
  text-align: center;
  color: var(--sage-primary);
  font-size: 14px;
  margin: 1rem 0;
}

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

/* Menu Access */
#menu-access {
  position: fixed;
  bottom: 226px;
  right: 50px;
  width: 40px;
  height: 40px;
  z-index: 99999;
}

#menu-access > ul > li {
  background: linear-gradient(135deg, var(--lavender-primary) 0%, var(--blush-primary) 100%);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
  box-shadow: var(--shadow-minimal);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

#menu-access > ul > li:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-subtle);
}

.shake {
  animation: shake 0.82s cubic-bezier(.36, .07, .19, .97) 1;
  -webkit-animation: shake 0.82s cubic-bezier(.36, .07, .19, .97) 1;
  -moz-animation: shake 0.82s cubic-bezier(.36, .07, .19, .97) 1;
  -o-animation: shake 0.82s cubic-bezier(.36, .07, .19, .97) 1;
  animation-delay: 0s;
}

.content-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 4px;
}

.list-menu-icon {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  position: absolute;
  bottom: -116px;
}

.menu-icon {
  font-size: 25px;
}

.btn-menu-open,
.btn-menu-close {
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lavender-primary) 0%, var(--blush-primary) 100%);
  transition: all 2s ease-in;
  position: relative;
  bottom: -156px;
  box-shadow: var(--shadow-minimal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-menu-open::after,
.btn-menu-close::after {
  position: absolute;
  display: block;
  content: "";
  border-radius: 50%;
  background-color: rgba(184, 169, 217, 0.3);
  width: 120%;
  height: 120%;
  left: -10%;
  top: -10%;
  -webkit-animation: weddingplanlogo-pulse 1s infinite;
  animation: weddingplanlogo-pulse 1s infinite;
  z-index: -1;
}

.access-icon {
  height: 25px;
  width: auto;
  margin: 0;
  display: block;
}

.btn-menu-close {
  display: none;
  position: absolute;
  align-items: center;
  justify-content: center;
}

.btn-menu-open > i {
  padding: 0;
  font-size: 28px;
  font-weight: bold;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-menu-close > i {
  padding: 0;
  font-size: 28px;
  font-weight: bold;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 799px) {
  #menu-access {
    bottom: 186px;
    right: 20px;
  }
}

@-webkit-keyframes weddingplanlogo-pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(0.95, 0.95, 0.95);
    transform: scale3d(0.95, 0.95, 0.95);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes weddingplanlogo-pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(0.95, 0.95, 0.95);
    transform: scale3d(0.95, 0.95, 0.95);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

.tooltipBtn .tooltiptext {
  visibility: hidden;
  width: 130px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  background: linear-gradient(135deg, var(--lavender-primary) 0%, var(--blush-primary) 100%);
  color: var(--white);
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: 0px;
  right: 170%;
}

.tooltiptext::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent var(--lavender-primary);
}

.tooltipBtn:hover .tooltiptext {
  visibility: visible;
}

/* Wish Form Autocomplete */
#wish-form .wishes-autocomplete-content {
  position: absolute;
  top: 50px;
  width: 100%;
  left: 0;
  z-index: 333;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-subtle);
  border: 1px solid var(--neutral-medium);
  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: 1px solid var(--neutral-medium) !important;
  margin-bottom: 0 !important;
  border-radius: 0 !important;
  font-family: 'Montserrat', sans-serif;
}

#wish-form .wishes-autocomplete-content input:focus {
  outline: none;
  border-bottom-color: var(--lavender-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(--neutral-medium) !important;
  margin-top: 0 !important;
  padding: 12px 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: 'Montserrat', sans-serif;
}

#wish-form .wishes-autocomplete-content ul li a:hover {
  background: var(--neutral-light) !important;
  color: var(--neutral-dark) !important;
  padding-left: 25px !important;
}

.emoji-picker {
  max-width: 100%;
  display: none;
  position: absolute;
  user-select: none !important;
  background: var(--white);
  right: 0;
  z-index: 9999;
  bottom: -405px;
  box-shadow: var(--shadow-subtle);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--neutral-medium);
}

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

/* Additional Template5 Specific Styles */
.main_area .text-and {
  padding: 0 10px;
}

.text-story {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
}

.bride-story,
.groom-story {
  font-family: 'Montserrat', sans-serif;
}

.parent,
.parent-name {
  font-weight: 400;
  font-family: 'Montserrat', sans-serif;
}

/* Validate RSVP Form */
.validate-rsvp-form .success-error-message {
  margin: 15px 0 0;
}

#name-comment-error,
#detail-comment-error,
.validate-rsvp-form label.error {
  color: red;
  margin: 5px 0 0 0;
}

.validate-rsvp-form #loader {
  display: none;
}

.validate-rsvp-form #loader i {
  font-size: 20px;
  color: var(--white);
}

.validate-rsvp-form #success,
.validate-rsvp-form #error {
  width: 100%;
  color: var(--white);
  padding: 5px 10px;
  font-size: 16px;
  text-align: center;
  display: none;
}

@media (max-width: 767px) {
  .validate-rsvp-form #success,
  .validate-rsvp-form #error {
    font-size: 15px;
  }
}

.validate-rsvp-form #success {
  background-color: green;
  margin-bottom: 5px;
}

.validate-rsvp-form #error {
  background-color: red;
}

/* Responsive Design */
@media (max-width: 768px) {
  header {
    padding: 0.5rem 0;
  }
  
  header .navbar {
    padding: 0.5rem 1rem;
  }
  
  header .navbar-brand {
    font-size: 18px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .section-bg-affect,
  .section-bg-alternate {
    padding: 3rem 0;
  }
  
  .banner-section {
    padding: 0;
  }
  
  .banner-section .title-head {
    padding: 1rem 0;
  }
  
  .banner-section .title-head p {
    font-size: 1rem;
  }
  
  .main_area {
    padding: 2rem 1rem;
  }
  
  .main_area .wrap-img {
    max-width: 90%;
    padding: 0.75rem;
  }
  
  .main_area .wrap-img-title {
    max-width: 300px;
  }
  
  .main_area .wrap-img-title img {
    width: 240px;
    max-width: 100%;
  }
  
  .main_area .wrap-img-title .wrap-text {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    justify-content: center;
  }
  
  .main_area .name-user {
    font-size: 2rem;
  }
  
  .main_area .name-user span {
    font-size: 2rem;
  }
  
  .main_area .name-user .text-and {
    font-size: 1.2rem;
  }
  
  .invitation-section .invitation_wrapper {
    padding: 2rem 1rem;
    margin: 0 auto;
    max-width: 100%;
  }
  
  .invitation-section .invitation-title {
    width: 90%;
  }
  
  .invitation-section .invitation-title p {
    font-size: 1.5rem;
  }
  
  .couple-section .wrap-people {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .couple-section .wrap-people .member {
    width: 100%;
    max-width: 500px;
  }
  
  .couple-section .wrap-img {
    max-width: 90%;
  }
  
  .couple-section .wrap-img img {
    max-width: 100%;
  }
  
  .invitation-section .wrap-img-couple {
    max-width: 90%;
  }
  
  .invitation-section .wrap-img-couple img {
    width: 85%;
  }
}

@media (max-width: 480px) {
  header {
    padding: 0.4rem 0;
  }
  
  header .navbar {
    padding: 0.4rem 0.75rem;
  }
  
  header .navbar-brand {
    font-size: 16px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-bg-affect,
  .section-bg-alternate {
    padding: 2.5rem 0;
  }
  
  .banner-section .title-head p {
    font-size: 0.95rem;
  }
  
  .main_area {
    padding: 1.5rem 0.75rem;
  }
  
  .main_area .wrap-img {
    max-width: 95%;
    padding: 0.5rem;
  }
  
  .main_area .wrap-img-title {
    width: 100%;
    max-width: 280px;
    padding: 1rem;
  }
  
  .main_area .wrap-img-title img {
    width: 220px;
    max-width: 100%;
  }
  
  .main_area .wrap-img-title .wrap-text {
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
    justify-content: center;
    padding: 3px 0;
  }
  
  .main_area .wrap-img-title .wrap-text span {
    width: 18px;
    height: 28px;
    font-size: 0.9rem;
  }
  
  .main_area .day_wrapper {
    padding: 1.5rem 0.75rem;
  }
  
  .main_area .day_wrapper .date-time {
    font-size: 1rem;
  }
  
  .main_area .name-user {
    font-size: 1.8rem;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .main_area .name-user span {
    font-size: 1.8rem;
  }
  
  .main_area .name-user .text-and {
    font-size: 1rem;
    padding: 0;
  }
  
  .invitation-section .invitation-title p {
    font-size: 1.3rem;
  }
  
  .invitation-section .couple p span {
    font-size: 1.5rem;
  }
  
  .invitation-section .wrap-img-couple {
    max-width: 95%;
  }
  
  .invitation-section .wrap-img-couple img {
    width: 85%;
    max-width: 100%;
  }
  
  .couple-section .wrap-img {
    max-width: 95%;
  }
  
  .couple-section .wrap-img img {
    max-width: 100%;
  }
  
  .couple-section .wrap-people {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .couple-section .wrap-people .member {
    width: 100%;
    max-width: 100%;
  }
}

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

#wish-form textarea:focus {
  box-shadow: none;
}

#wish-form textarea {
  margin-bottom: 0;
  border-radius: 0 !important;
  resize: none;
}

#wish-form .textAreaIcons {
  position: relative;
  text-align: right;
  background: var(--white);
  padding: 10px;
  border-top: none;
  border-top: 1px solid var(--neutral-medium);
}

#wish-form .textAreaIcons span {
  color: var(--neutral-dark);
  cursor: pointer;
  margin-right: 4px;
}

.tooltip {
  width: 160px;
}

.tooltip .tooltip-inner {
  padding: 8px 12px;
  font-size: 16px;
}

#wish-form .tooltip-custom {
  position: relative;
  display: inline-block;
}

/* Event Dresscode */
.event-section .dresscode-colors-event {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(250, 250, 250, 0.7);
  padding: 4px;
  width: 36%;
  justify-content: center;
}

.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: 'Montserrat', sans-serif;
  font-size: 14px;
  background-color: var(--white);
  border: 1px solid var(--neutral-medium);
  color: var(--neutral-dark);
  box-shadow: var(--shadow-minimal);
  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: var(--white) transparent transparent transparent;
}

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