/* ==========================================================================
   0. GLOBAL OVERFLOW & RESPONSIVENESS FIX
   Prevents horizontal scroll / right-side whitespace on mobile
   ========================================================================== */

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Ensure all sections never overflow the viewport horizontally */
section,
footer,
header {
    max-width: 100%;
    overflow-x: hidden;
}

/* Remove hover/active underscore & underline from navbar menu items */
.navbar-nav .nav-link,
.navbar-nav .nav-item,
.navbar-nav a {
    position: relative;
    text-decoration: none !important;
    color: #4A5568 !important;
    transition: color 0.25s ease, opacity 0.25s ease !important;
}

.navbar-nav .nav-link::after,
.navbar-nav .nav-link:after,
.navbar-nav .nav-item::after,
.navbar-nav .nav-item:after,
.navbar-nav a::after,
.navbar-nav a:after,
.navbar-nav .nav-link::before,
.navbar-nav .nav-link:before {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
    border: none !important;
    background: none !important;
}

/* Distinct Hover Color (Light Gold) */
.navbar-nav .nav-link:hover,
.navbar-nav a:hover {
    color: #E6CA65 !important;
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Distinct Active Color (Rich Gold) */
.navbar-nav .nav-link.active,
.navbar-nav .active > .nav-link,
.navbar-nav a.active {
    color: #D4AF37 !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

#hero {
    background-image: url("../images/bg-hero.jpg")
}

#the-wedding-event {
    background-image: url("../images/bg-the-wedding-event.jpg")
}

#countdown {
    background-image: url("../images/bg-proposed.jpg")
}

/* Countdown Section Styling */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.countdown-unit {
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 15px;
    min-width: 90px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.countdown-unit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    border-color: #6D8A91;
}

.countdown-val {
    display: block;
    font-family: 'PT Serif', serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: #6D8A91; /* Primary Slate Blue color */
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-lbl {
    display: block;
    font-family: 'Questrial', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #A0AEC0;
}

@media (max-width: 576px) {
    .countdown-timer {
        gap: 10px;
    }

    .countdown-unit {
        min-width: 70px;
        padding: 10px;
    }
    
    .countdown-val {
        font-size: 1.8rem;
    }
    
    .countdown-lbl {
        font-size: 0.7rem;
    }
}

#wedding-events {
    background-image: url("../images/bg-wedding-gifts.jpg")
}

.wedding-timeline {
    position: relative;
    padding: 10px 0;
}

.wedding-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 120px;
    width: 2px;
    background-color: #E2E8F0;
}

.timeline-item {
    position: relative;
    display: flex;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-time {
    width: 100px;
    text-align: right;
    font-family: 'Questrial', sans-serif;
    font-weight: bold;
    font-size: 0.95rem;
    color: #C99969;
    padding-top: 2px;
    flex-shrink: 0;
}

.timeline-marker {
    width: 42px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.timeline-dot {
    width: 14px;
    height: 14px; /* Slate Blue primary color */
    border: 3px solid #FFF;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(109, 138, 145, 0.2);
    margin-top: 6px;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    background-color: #C99969;
    box-shadow: 0 0 0 5px rgba(201, 153, 105, 0.3);
    transform: scale(1.2);
}

.timeline-content {
    flex: 1;
    padding-left: 15px;
}

.timeline-content h5 {
    font-family: 'PT Serif', serif;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.timeline-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .wedding-timeline::before {
        left: 15px;
    }
    
    .timeline-item {
        flex-direction: column;
        position: relative;
        padding-left: 35px;
        margin-bottom: 30px;
    }
    
    .timeline-time {
        width: auto;
        text-align: left;
        margin-bottom: 5px;
        font-size: 0.9rem;
    }
    
    .timeline-marker {
        position: absolute;
        left: 0;
        top: 0;
        width: 30px;
        display: flex;
        justify-content: center;
    }
    
    .timeline-dot {
        margin-top: 5px;
    }
    
    .timeline-content {
        padding-left: 0;
    }
}

footer {
    background-image: url("../images/bg-footer.jpg")
}

/* ==========================================================================
   1. INVITATION SEAL OVERLAY (PRESS AND HOLD REVEAL)
   ========================================================================== */

body.seal-locked {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    touch-action: none !important;
    overscroll-behavior: none !important;
}

#invitation-seal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    /* Use dvh for mobile browsers that have address bars — falls back to 100vh */
    height: 100vh;
    height: 100dvh;
    min-height: 100%;
    z-index: 99999;
    background: linear-gradient(135deg, #FAF7F2 0%, #F5EFE6 50%, #EFE5D8 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s ease;
    /* Ensure it's always on top of everything */
    isolation: isolate;
}

#invitation-seal-overlay.seal-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Split Curtain Effect when opening */
#invitation-seal-overlay::before,
#invitation-seal-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    /* Use 50% instead of 50vw to prevent overflow contribution */
    width: 50%;
    height: 100vh;
    height: 100dvh;
    background: inherit;
    z-index: -1;
    transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}

#invitation-seal-overlay::before {
    left: 0;
}

#invitation-seal-overlay::after {
    right: 0;
}

#invitation-seal-overlay.seal-opening::before {
    transform: translateX(-100%);
}

#invitation-seal-overlay.seal-opening::after {
    transform: translateX(100%);
}

/* Seal Card Content */
.seal-card-content {
    text-align: center;
    max-width: 460px;
    width: 100%;
    z-index: 2;
    animation: sealCardFadeIn 1s ease-out;
}

@keyframes sealCardFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.seal-eyebrow {
    font-family: 'Questrial', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #8C6D46;
    margin-bottom: 4px;
}

.seal-invitee-name {
    font-family: 'Pinyon Script', cursive;
    font-size: 3.4rem;
    font-weight: 400;
    line-height: 1.15;
    color: #D4AF37;
    background: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 45%, #996515 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2px;
    padding: 0 15px;
    word-break: break-word;
    filter: drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.15));
}

.seal-invitee-name:empty {
    display: none;
}

.seal-title {
    font-family: 'Cormorant Garamond', 'PT Serif', serif;
    font-size: 3rem;
    font-weight: 600;
    color: #2D1E1E;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    line-height: 1.15;
}

.seal-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: #64748B;
    margin-bottom: 35px;
    font-style: italic;
    font-weight: 400;
}

/* Interactive Seal Button & SVG */
.seal-button-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 30px auto;
}

#seal-button {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
    padding: 0;
    user-select: none;
    -webkit-user-select: none;
    touch-action: none;
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#seal-button:hover {
    transform: scale(1.04);
}

#seal-button.holding {
    animation: sealPulseGlow 0.6s infinite alternate ease-in-out;
}

@keyframes sealPulseGlow {
    from {
        filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
    }
    to {
        filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.8));
    }
}

.seal-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.seal-bg-circle {
    fill: #A34A5C;
    stroke: #D4AF37;
    stroke-width: 3;
    filter: drop-shadow(0 8px 16px rgba(163, 74, 92, 0.35));
    transition: fill 0.3s ease;
}

.seal-progress-bg {
    fill: none;
    stroke: rgba(212, 175, 55, 0.25);
    stroke-width: 5;
}

.seal-progress-ring {
    fill: none;
    stroke: #D4AF37;
    stroke-width: 5;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.05s linear;
}

.seal-crack {
    fill: none;
    stroke: #FFE5A3;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 6px #FFE5A3);
}

/* Seal Split Animations */
#seal-left, #seal-right {
    transition: transform 0.8s cubic-bezier(0.6, -0.28, 0.735, 0.045), opacity 0.8s ease;
    transform-origin: center;
}

#invitation-seal-overlay.seal-opening #seal-left {
    transform: translate(-60px, -20px) rotate(-15deg);
    opacity: 0;
}

#invitation-seal-overlay.seal-opening #seal-right {
    transform: translate(60px, 20px) rotate(15deg);
    opacity: 0;
}

/* Seal Prompt Text */
#seal-prompt-text {
    font-family: 'Questrial', sans-serif;
    font-size: 1rem;
    color: #6D8A91;
    letter-spacing: 1px;
    animation: promptPulse 2s infinite ease-in-out;
    margin-top: 15px;
}

#seal-prompt-text.holding-active {
    color: #A34A5C;
    font-weight: bold;
    animation: none;
}

@keyframes promptPulse {
    0%, 100% { opacity: 0.6; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-3px); }
}

/* Sparkles & Particles */
.hold-sparkle {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 100000;
    animation: sparkleFade 0.7s ease-out forwards;
}

@keyframes sparkleFade {
    0% {
        opacity: 1;
        transform: scale(0.4) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: scale(1.5) translate(var(--sparkle-x, 0px), -30px) rotate(180deg);
    }
}

.seal-burst-particle {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 100000;
    animation: burstOut 0.9s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes burstOut {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx), var(--ty)) scale(0.2);
    }
}


/* ==========================================================================
   2. AMBIENT FLOATING FLOWER PETALS
   ========================================================================== */

#petal-container {
    position: fixed;
    top: 0;
    left: 0;
    /* Use 100% instead of 100vw to avoid scrollbar-caused overflow on mobile */
    width: 100%;
    height: 100vh;
    height: 100dvh;
    pointer-events: none;
    z-index: 999;
    overflow: hidden;
}

.floating-petal {
    position: absolute;
    top: -40px;
    border-radius: 15px 0 15px 0;
    pointer-events: none;
    animation: floatPetal 14s linear infinite;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05));
}

@keyframes floatPetal {
    0% {
        transform: translateY(0) rotate(0deg) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(105vh) rotate(540deg) translateX(120px);
        opacity: 0;
    }
}


/* ==========================================================================
   3. SCROLL ENTRANCE ANIMATIONS
   ========================================================================== */

.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.9s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.9s cubic-bezier(0.215, 0.61, 0.355, 1);
    will-change: opacity, transform;
}

/* Fade Up */
[data-animate="fade-up"] {
    transform: translateY(45px);
}
[data-animate="fade-up"].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Fade Left */
[data-animate="fade-left"] {
    transform: translateX(-50px);
}
[data-animate="fade-left"].revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Fade Right */
[data-animate="fade-right"] {
    transform: translateX(50px);
}
[data-animate="fade-right"].revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Zoom In */
[data-animate="zoom-in"] {
    transform: scale(0.88);
}
[data-animate="zoom-in"].revealed {
    opacity: 1;
    transform: scale(1);
}

/* Pulse animation on countdown revealed */
.countdown-unit.pulse-in {
    animation: countdownPulse 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes countdownPulse {
    0% { transform: scale(0.85); opacity: 0.5; }
    60% { transform: scale(1.08); }
    100% { transform: scale(1); opacity: 1; }
}


/* ==========================================================================
   4. 3D TILT & HOVER ENHANCEMENTS
   ========================================================================== */

.tilt-card {
    transition: transform 0.2s ease-out, box-shadow 0.3s ease;
    transform-style: preserve-3d;
}

.tilt-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12) !important;
}

.replay-seal-nav-btn {
    border: 1px solid rgba(109, 138, 145, 0.4);
    background: transparent;
    color: #6D8A91;
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.replay-seal-nav-btn:hover {
    background: #6D8A91;
    color: #FFF;
    border-color: #6D8A91;
    box-shadow: 0 4px 10px rgba(109, 138, 145, 0.3);
}

/* ==========================================================================
   5. MOBILE RESPONSIVENESS — PREVENT HORIZONTAL OVERFLOW
   ========================================================================== */

/* Core fix: clip any element that bleeds past the viewport.
   We do NOT zero .row margins here — Bootstrap rows use negative margins
   to compensate for column padding, so zeroing them causes asymmetric
   left/right column spacing (e.g. gallery images shifted to the right).
   Instead we clip overflow on the container itself. */
@media (max-width: 991.98px) {
    /* Clip Bootstrap row bleed without removing margin compensation */
    .container,
    .container-fluid {
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Ensure all images are contained */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Prevent navbar brand image overflow */
    .navbar-brand img {
        max-width: 200px;
        height: auto;
    }

    /* Fix hero card overflow on small screens */
    #hero .col-md-9 {
        max-width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }

    /* Fix wedding event card overflow */
    #the-wedding-event .bg-white {
        max-width: 100%;
    }

    /* Fix countdown card */
    #countdown .bg-white {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Prevent RSVP form elements from overflowing */
    #rsvp input,
    #rsvp select,
    #rsvp textarea {
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Prevent tilt-card from overflowing */
    .tilt-card {
        max-width: 100%;
    }

    /* === PHOTO GALLERY FIX ===
       Clip any overflow at the section level only.
       Do NOT override .gallery-grid or .gallery-wrapper margins —
       the theme uses internal negative-margin gutters that must stay
       balanced. Clipping at the container level prevents any bleed
       without disturbing left/right symmetry. */
    #photos {
        overflow-x: hidden;
    }

    #photos .container {
        overflow-x: hidden;
    }

    /* Ensure carousel cells don't overflow */
    .carousel-cell {
        max-width: 100%;
        overflow: hidden;
    }
}

/* Extra small phones */
@media (max-width: 575.98px) {
    /* Clamp seal title font to prevent text from pushing layout */
    .seal-title {
        font-size: 2rem;
    }

    .seal-invitee-name {
        font-size: 2.5rem;
    }

    /* Ensure hero section text doesn't overflow */
    #hero h2,
    #hero h5,
    #hero p {
        word-break: break-word;
        overflow-wrap: break-word;
    }

    /* Fix navbar collapse menu overflow */
    .navbar-collapse {
        max-width: 100%;
    }

    /* Ensure RSVP form rows don't overflow */
    #rsvp .row {
        margin-left: 0;
        margin-right: 0;
    }

    /* Fix wedding program box */
    #wedding-events .col-lg-8 {
        padding: 20px 15px;
    }

    /* Fix footer overflow */
    footer .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* ==========================================================================
   6. VENOBOX LIGHTBOX DESKTOP OPTIMIZATIONS
   ========================================================================== */
@media (min-width: 768px) {
    /* Disable all vertical/horizontal scrollbars on the lightbox overlay & container */
    .vbox-overlay {
        overflow: hidden !important;
    }
    
    .vbox-container {
        position: fixed !important;
        inset: 0 !important;
        height: 100vh !important;
        max-height: 100vh !important;
        overflow: hidden !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Override vbox-content min-height and force flex centering */
    .vbox-content {
        min-height: 0 !important;
        height: 100vh !important;
        max-height: 100vh !important;
        width: 100vw !important;
        max-width: 100vw !important;
        padding: 40px 20px !important;
        box-sizing: border-box !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
    }
    
    /* Constrain the inner vbox-child box */
    .vbox-child {
        max-height: calc(100vh - 80px) !important;
        max-width: calc(100vw - 120px) !important;
        height: auto !important;
        width: auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }
    
    /* Force the gallery image to fit proportionally within screen height and width */
    .vbox-child img,
    .vbox-content img,
    .vbox-container img,
    .vbox-overlay img {
        max-width: calc(100vw - 140px) !important;
        max-height: calc(100vh - 100px) !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
        display: block !important;
        margin: 0 auto !important;
    }
}

/* ==========================================================================
   7. RSVP BUTTON SELECTION GROUP STYLING (LUXURY DESIGN)
   ========================================================================== */
.rsvp-btn-group {
    width: 100%;
    display: flex;
    gap: 12px;
}

.rsvp-option-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px !important;
    background-color: #FFFFFF !important;
    border: 1.5px solid #CBD5E0 !important;
    border-radius: 8px !important;
    color: #4A5568 !important;
    font-family: 'Questrial', sans-serif !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    text-transform: lowercase !important;
    letter-spacing: 0.3px !important;
    cursor: pointer !important;
    transition: all 0.25s cubic-bezier(0.215, 0.61, 0.355, 1) !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04) !important;
    user-select: none;
    outline: none !important;
}

.rsvp-option-btn:hover {
    border-color: #6D8A91 !important;
    color: #2D3748 !important;
    background-color: #F7FAFC !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(109, 138, 145, 0.15) !important;
}

/* Active / Selected State */
.rsvp-option-btn.active {
    background: linear-gradient(135deg, #6D8A91 0%, #526E75 100%) !important;
    border-color: #6D8A91 !important;
    color: #FFFFFF !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(109, 138, 145, 0.35) !important;
}

.rsvp-option-btn:focus {
    box-shadow: 0 0 0 3px rgba(109, 138, 145, 0.25) !important;
}

@media (max-width: 575.98px) {
    .rsvp-btn-group {
        gap: 8px;
    }
    .rsvp-option-btn {
        padding: 7px 10px !important;
        font-size: 0.75rem !important;
        letter-spacing: 0 !important;
    }
}

/* ==========================================================================
   8. INPUT & TEXTAREA PLACEHOLDER STYLING
   ========================================================================== */
input::placeholder,
textarea::placeholder,
#rsvp input::placeholder,
#rsvp textarea::placeholder {
    font-family: 'Questrial', sans-serif !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    text-transform: lowercase !important;
    letter-spacing: 0.3px !important;
    color: #A0AEC0 !important;
    opacity: 1 !important;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
#rsvp input::-webkit-input-placeholder,
#rsvp textarea::-webkit-input-placeholder {
    font-family: 'Questrial', sans-serif !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    text-transform: lowercase !important;
    letter-spacing: 0.3px !important;
    color: #A0AEC0 !important;
}

input::-moz-placeholder,
textarea::-moz-placeholder,
#rsvp input::-moz-placeholder,
#rsvp textarea::-moz-placeholder {
    font-family: 'Questrial', sans-serif !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    text-transform: lowercase !important;
    letter-spacing: 0.3px !important;
    color: #A0AEC0 !important;
    opacity: 1 !important;
}

/* ==========================================================================
   9. DISABLED FORM FIELD STYLING
   ========================================================================== */
input:disabled,
textarea:disabled,
select:disabled,
button:disabled,
.form-control:disabled,
[disabled] {
    background-color: #F1F5F9 !important;
    border-color: #E2E8F0 !important;
    color: #94A3B8 !important;
    cursor: not-allowed !important;
    opacity: 0.85 !important;
}

/* ==========================================================================
   10. RSVP SUBMIT BUTTON STYLING
   ========================================================================== */
.rsvp-submit-btn {
    background: linear-gradient(135deg, #6D8A91 0%, #526E75 100%) !important;
    border: none !important;
    color: #FFFFFF !important;
    font-family: 'Questrial', sans-serif !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    padding: 12px 36px !important;
    border-radius: 50px !important;
    cursor: pointer !important;
    box-shadow: 0 4px 15px rgba(109, 138, 145, 0.35) !important;
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) !important;
    display: inline-block;
    outline: none !important;
}

.rsvp-submit-btn:hover {
    background: linear-gradient(135deg, #5B7B82 0%, #455F65 100%) !important;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(109, 138, 145, 0.45) !important;
}

.rsvp-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(109, 138, 145, 0.3) !important;
}

.rsvp-submit-btn:focus {
    box-shadow: 0 0 0 3px rgba(109, 138, 145, 0.3) !important;
}

/* ==========================================================================
   11. VALIDATION ERROR MESSAGE STYLING (MATCHES PLACEHOLDER STYLES)
   ========================================================================== */
.validator-err,
.help-block.error,
.invalid-feedback,
.form-text.error-msg {
    font-family: 'Questrial', sans-serif !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    text-transform: lowercase !important;
    letter-spacing: 0.3px !important;
    color: #C53030 !important;
    margin-top: 6px !important;
    margin-bottom: 0 !important;
    display: block !important;
    line-height: 1.4 !important;
}

@media (max-width: 575.98px) {
    .validator-err,
    .help-block.error,
    .invalid-feedback {
        font-size: 0.75rem !important;
    }
}

/*# sourceMappingURL=custom.min.css.map */