/* =============================================
   LINISHA & AMIT — WEDDING WEBSITE
   Elegant Rajasthani-Inspired Design
   ============================================= */

/* ----- CSS Variables / Design Tokens ----- */
:root {
    /* Color Palette — inspired by the save-the-date */
    --gold: #C4973B;
    --gold-light: #D4AF5C;
    --gold-glow: rgba(196, 151, 59, 0.3);
    --teal: #5B8A8A;
    --teal-dark: #3D6B6B;
    --teal-light: #7AACAC;

    --peach: #F5C6AA;
    --peach-light: #FDE8D8;
    --blush: #F2D1D1;
    --rose: #E8A0A0;
    --lavender: #D8C8E8;
    --sky: #C8DAF0;
    --cream: #FDF8F0;
    --ivory: #FFFDF7;

    --text-dark: #2C1810;
    --text-body: #5A4035;
    --text-muted: #8A7060;
    --text-light: #FFFDF7;

    /* Typography */
    --font-display: 'Playfair Display', 'Georgia', serif;
    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-script: 'Great Vibes', cursive;
    --font-body: 'Inter', 'Helvetica Neue', sans-serif;
    --font-ui: 'Inter', 'Helvetica Neue', sans-serif;

    /* Spacing */
    --section-padding: 120px 0;
    --container-width: 1200px;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ----- Reset & Base ----- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ----- Particles Canvas ----- */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

/* =============================================
   NAVIGATION
   ============================================= */
#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 60px;
    padding: 0 40px;
    background: rgba(253, 248, 240, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
}

#main-nav.scrolled {
    padding: 6px 40px;
    box-shadow: 0 2px 30px rgba(44, 24, 16, 0.08);
}

.nav-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
}

.nav-logo {
    text-decoration: none;
    transition: var(--transition-smooth);
    position: absolute;
    left: 50%;
    top: -70px;
    transform: translateX(-50%);
    z-index: 1001;
}

.nav-logo .nav-ampersand {
    font-family: var(--font-script);
    font-size: 1.8rem;
    margin: 0 4px;
}

#main-nav.scrolled .nav-logo {
    color: var(--gold);
}

.nav-logo-img {
    height: 250px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 40px;
    flex: 1;
    z-index: 1;
}

.nav-links-left {
    justify-content: flex-end;
    padding-right: 120px;
}

.nav-links-right {
    justify-content: flex-start;
    padding-left: 120px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-body);
    text-decoration: none;
    position: relative;
    padding: 4px 0;
    transition: var(--transition-smooth);
}

#main-nav.scrolled .nav-links a {
    color: var(--text-body);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after {
    width: 100%;
}

#nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

#nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--gold);
    transition: var(--transition-smooth);
}

.nav-rsvp-btn {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    padding: 8px 24px;
    border: 1.5px solid var(--gold);
    background: var(--gold);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition-smooth);
    z-index: 10;
}

.nav-rsvp-btn:hover {
    background: #a9882d;
    border-color: #a9882d;
    color: #fff;
    box-shadow: 0 0 20px var(--gold-glow);
}

/* ----- Mobile Side Drawer ----- */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 24, 16, 0.4);
    z-index: 1998;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.mobile-overlay.open {
    display: block;
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: var(--cream);
    z-index: 1999;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 30px rgba(44, 24, 16, 0.12);
    overflow-y: auto;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-body);
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s ease;
}

.mobile-close:hover {
    color: var(--gold);
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding: 80px 40px 40px;
    flex: 1;
}

.mobile-menu-inner a {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-body);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
}

.mobile-menu-inner a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.mobile-menu-inner a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.mobile-menu-inner a:hover::after {
    width: 100%;
}

.mobile-menu-footer {
    padding: 30px 40px;
    text-align: center;
}

.mobile-menu-divider {
    width: 40px;
    height: 0.5px;
    background: var(--gold);
    margin: 0 auto 16px;
    opacity: 0.4;
}

.mobile-menu-hashtag {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    opacity: 0.6;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center top, transparent 40%, rgba(253, 248, 240, 0.2) 100%);
    z-index: 2;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* ----- 3-Pane Split Layout ----- */
.hero-panes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    gap: 0;
    padding: 0;
}

.hero-pane {
    flex: 1;
    overflow: hidden;
    position: relative;
    border-radius: 0;
    margin-left: -1px;
}

.hero-pane:first-child {
    margin-left: 0;
}

.hero-pane video {
    position: absolute;
    top: 0;
    left: 0;
    width: 300%;
    height: 100%;
    object-fit: cover;
}

.pane-left video {
    left: 0;
}

.pane-center video {
    left: -100%;
}

.pane-right video {
    left: -200%;
}

/* ----- Hero Text Overlay ----- */
.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    text-align: center;
    pointer-events: none;
    animation: heroTextFade 2s ease-out;
}

@keyframes heroTextFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-date-line {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(255, 253, 247, 0.7);
    margin-bottom: 16px;
}

.hero-names-large {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5.5vw, 5.5rem);
    font-weight: 400;
    color: var(--ivory);
    letter-spacing: clamp(3px, 1vw, 14px);
    line-height: 1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    margin-bottom: 12px;
    white-space: nowrap;
}

.hero-amp {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    opacity: 0.8;
    margin: 0 8px;
}

.hero-location {
    font-family: var(--font-script);
    font-size: 2.5rem;
    font-weight: 400;
    color: rgba(255, 253, 247, 0.8);
    letter-spacing: 2px;
    margin-top: -4px;
}

.hero-rsvp-btn {
    display: inline-block;
    margin-top: 32px;
    padding: 16px 52px;
    background: #a9882d;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    pointer-events: auto;
    transition: var(--transition-smooth);
    box-shadow:
        0 4px 20px rgba(169, 136, 45, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    position: relative;
    overflow: hidden;
    animation: btnShimmer 3s ease-in-out infinite;
}

@keyframes btnShimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-rsvp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.hero-rsvp-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 8px 30px rgba(169, 136, 45, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.hero-rsvp-btn:hover::before {
    left: 100%;
}

/* ----- Arch Frame ----- */
.arch-frame {
    position: relative;
    z-index: 5;
    width: 900px;
    max-width: 90vw;
    margin-top: -40px;
}

.arch-inner {
    background: rgba(255, 253, 247, 0.25);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 450px 450px 8px 8px;
    padding: 0;
    text-align: center;
    box-shadow:
        0 0 60px rgba(196, 151, 59, 0.1),
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 0 40px rgba(255, 255, 255, 0.1);
    animation: fadeInArch 1.5s ease-out;
    overflow: hidden;
}

.arch-video {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 450px 450px 8px 8px;
}

@keyframes fadeInArch {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ----- Monogram ----- */
.monogram {
    margin-bottom: 28px;
    animation: fadeInDown 1s ease-out 0.3s both;
}

.monogram-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.monogram-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.monogram-circle::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 0.5px solid rgba(196, 151, 59, 0.3);
}

.monogram-letter {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 1px;
}

.monogram-ampersand {
    font-family: var(--font-script);
    font-size: 1.4rem;
    color: var(--gold);
    margin: 0 -2px;
}

/* ----- Hero Text ----- */
.hero-tagline {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 300;
    font-style: italic;
    color: var(--text-body);
    line-height: 1.8;
    letter-spacing: 1px;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease-out 0.5s both;
}

.save-the-date {
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-out 0.7s both;
}

.std-save,
.std-date {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 600;
    letter-spacing: 12px;
    color: var(--text-dark);
    line-height: 1.1;
    text-transform: uppercase;
}

.std-the {
    font-family: var(--font-script);
    font-size: 3.2rem;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    margin: -4px 0;
}

.std-the em {
    font-style: normal;
}

.hero-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 20px auto;
    animation: fadeInDown 1s ease-out 0.9s both;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 300;
    font-style: italic;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-bottom: 16px;
    animation: fadeInDown 1s ease-out 1s both;
}

.hero-names {
    animation: fadeInDown 1s ease-out 1.1s both;
    margin-bottom: 10px;
}

.name-linisha,
.name-amit {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--text-dark);
    display: inline-block;
}

.name-ampersand {
    font-family: var(--font-script);
    font-size: 3rem;
    color: var(--gold);
    margin: 0 16px;
    display: inline-block;
    vertical-align: middle;
}

.hero-date {
    animation: fadeInDown 1s ease-out 1.3s both;
}

.date-text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ----- Palace Image ----- */
.palace-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    pointer-events: none;
}

.palace-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    opacity: 1;
}

/* ----- Scroll Indicator ----- */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeInDown 1s ease-out 1.8s both;
}

.scroll-indicator span {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-arrow {
    animation: scrollBounce 2s ease-in-out infinite;
    color: var(--gold);
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================
   COUNTDOWN SECTION
   ============================================= */
.countdown-section {
    position: relative;
    z-index: 10;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    overflow: hidden;
}

/* Frosted cream overlay for readability */
.countdown-overlay {
    display: none;
}

.countdown-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 40px;
    text-align: center;
}

.countdown-date {
    margin-bottom: 50px;
}

.section-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--text-dark);
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.section-title.light {
    color: var(--text-light);
}

.section-subtitle {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 300;
    font-style: italic;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 60px;
}

.section-subtitle.light {
    color: rgba(255, 253, 247, 0.7);
}

/* Ornamental divider */
.ornamental-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.ornamental-divider.bottom {
    margin-bottom: 0;
    margin-top: 40px;
}

.ornamental-divider::before,
.ornamental-divider::after {
    content: '';
    width: 80px;
    height: 0.5px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.ornamental-divider::before {
    background: linear-gradient(90deg, transparent, var(--gold));
}

.ornamental-divider::after {
    background: linear-gradient(90deg, var(--gold), transparent);
}

/* Countdown */
.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 110px;
}

.countdown-number {
    font-family: var(--font-display);
    font-size: 5.5rem;
    font-weight: 400;
    color: #49372a;
    line-height: 1;
    letter-spacing: 3px;
    text-shadow: none;
}

.countdown-label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #49372a;
    margin-top: 16px;
}

.countdown-separator {
    font-family: var(--font-body);
    font-size: 3rem;
    font-weight: 200;
    color: var(--gold-light);
    opacity: 0.35;
    margin-top: -20px;
}

/* =============================================
   TEAL INFO SECTION
   ============================================= */
.info-section {
    padding: var(--section-padding);
    background: #f0e6cc;
    position: relative;
    z-index: 10;
}

.info-section .section-container {
    max-width: var(--container-width);
    align-items: stretch;
}

.info-section .venue-showcase-image {
    border-radius: 0;
    box-shadow: none;
    flex: none;
    width: 900px;
    height: 450px;
    margin-left: -150px;
    margin-top: 150px;
}

.info-section .venue-showcase-image::after {
    display: none;
}

.info-section .venue-showcase-image img {
    border-radius: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-section .venue-showcase-content {
    align-items: flex-start;
    text-align: left;
    padding: 40px 44px;
    min-width: 400px;
    background: #c5963c;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.info-section .venue-showcase-content .section-subtitle {
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 253, 247, 0.9);
    font-weight: 400;
    margin-bottom: 12px;
    text-align: left;
}

.info-section .venue-showcase-content .section-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--ivory);
    text-align: left;
    margin-bottom: 28px;
    line-height: 1.1;
    letter-spacing: 1px;
}

.info-section .venue-showcase-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.85;
    font-weight: 300;
    letter-spacing: 0.3px;
    margin-bottom: 0;
}

.info-section .venue-showcase-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.info-section .venue-showcase-text p:last-child {
    margin-bottom: 0;
}

.venue-rsvp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 32px auto 0;
    padding: 16px 48px;
    background: transparent;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid #fff;
    border-radius: 4px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.venue-rsvp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
}

.venue-rsvp-btn:hover {
    background: transparent;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.venue-rsvp-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.info-divider::before,
.info-divider::after {
    background: linear-gradient(90deg, transparent, rgba(255, 253, 247, 0.5), transparent) !important;
}

.info-divider::before {
    background: linear-gradient(90deg, transparent, rgba(255, 253, 247, 0.5)) !important;
}

.info-divider::after {
    background: linear-gradient(90deg, rgba(255, 253, 247, 0.5), transparent) !important;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 20px;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 50px 36px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 253, 247, 0.6), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.info-card:hover::before {
    opacity: 1;
}

.info-card-icon {
    color: rgba(255, 253, 247, 0.85);
    margin-bottom: 28px;
    transition: var(--transition-smooth);
}

.info-card:hover .info-card-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 12px rgba(255, 253, 247, 0.3));
}

.info-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--ivory);
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.info-card-detail {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 253, 247, 0.85);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.info-card-sub {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 253, 247, 0.55);
    letter-spacing: 0.5px;
}

/* =============================================
   TIMELINE — Horizontal Accordion
   ============================================= */
.tl-section {
    background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 25%, var(--cream) 75%, var(--ivory) 100%);
    position: relative;
    z-index: 10;
    padding: 0 0 80px;
}

.tl-header {
    text-align: center;
    padding: 40px 20px 0;
}

.tl-header .section-title {
    font-size: clamp(2.8rem, 5vw, 4rem);
    margin-bottom: 0;
}

/* ----- Accordion Container ----- */
.tl-accordion {
    display: flex;
    width: 100%;
    height: 520px;
    overflow: hidden;
    border-top: 1px solid rgba(196, 151, 59, 0.15);
    border-bottom: 1px solid rgba(196, 151, 59, 0.15);
}

/* ----- Single Accordion Item ----- */
.tl-item {
    display: flex;
    flex-shrink: 0;
    transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 0 0 65px;
    overflow: hidden;
    border-right: 1px solid rgba(196, 151, 59, 0.12);
}

.tl-item:last-child {
    border-right: none;
}

.tl-item.active {
    flex: 1 1 auto;
}

/* ----- Tab (Collapsed Strip) ----- */
.tl-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    width: 65px;
    min-width: 65px;
    height: 100%;
    padding: 20px 0;
    background: #49372b;
    border: none;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
}

.tl-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tl-item.active .tl-tab::before,
.tl-tab:hover::before {
    opacity: 1;
}

.tl-tab::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.tl-item.active .tl-tab::after {
    opacity: 0;
}

.tl-tab:hover {
    background: #5a4838;
}

.tl-item.active .tl-tab {
    background: #5a4838;
}

/* ----- Event-specific colors ----- */
/* Unified plum palette for all events */
.tl-item[data-index="0"] .tl-tab { background: #49372b; }
.tl-item[data-index="0"] .tl-content { background: #f1e7cd; }

.tl-item[data-index="1"] .tl-tab { background: #49372b; }
.tl-item[data-index="1"] .tl-content { background: #f1e7cd; }

.tl-item[data-index="2"] .tl-tab { background: #49372b; }
.tl-item[data-index="2"] .tl-content { background: #f1e7cd; }

.tl-item[data-index="3"] .tl-tab { background: #49372b; }
.tl-item[data-index="3"] .tl-content { background: #f1e7cd; }

.tl-item[data-index="4"] .tl-tab { background: #49372b; }
.tl-item[data-index="4"] .tl-content { background: #f1e7cd; }

.tl-item[data-index="5"] .tl-tab { background: #49372b; }
.tl-item[data-index="5"] .tl-content { background: #f1e7cd; }

.tl-tab-num {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fdf7f0;
    margin-bottom: auto;
}

.tl-tab-label {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fdf7f0;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    white-space: nowrap;
}

/* ----- Content Panel (visible when active) ----- */
.tl-content {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 50px 60px;
    background: #f1e7cd;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.5s ease 0.15s, transform 0.5s ease 0.15s;
    min-width: 0;
    overflow: hidden;
}

.tl-item.active .tl-content {
    opacity: 1;
    transform: translateX(0);
}

/* ----- Content Text ----- */
.tl-content-text {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.tl-label {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.tl-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: 1px;
    line-height: 1.1;
    margin-bottom: 4px;
}

.tl-date {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: -1px;
    line-height: 1;
    display: block;
    margin-bottom: 16px;
    opacity: 0.85;
}

.tl-desc {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-body);
    line-height: 1.7;
    max-width: 340px;
}

/* ----- Content Image ----- */
.tl-content-img {
    flex: 1;
    max-width: 380px;
    min-width: 260px;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 8px 8px 30px rgba(44, 24, 16, 0.1);
}

.tl-content-img img {
    width: 100%;
    height: 100%;
    max-height: 400px;
    object-fit: cover;
    display: block;
    filter: saturate(0.92) contrast(1.02);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.tl-content-img:hover img {
    filter: saturate(1) contrast(1);
    transform: scale(1.02);
}

/* ----- Section Break Divider ----- */
.section-break {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background: var(--ivory);
    z-index: 10;
    position: relative;
}

.section-break-line {
    display: block;
    width: 100px;
    height: 0.5px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.section-break-line:last-child {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.section-break-icon {
    font-size: 1rem;
    color: var(--gold);
    margin: 0 20px;
    opacity: 0.6;
}


/* =============================================
   VENUE SHOWCASE SECTION
   ============================================= */
.venue-showcase-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--ivory) 0%, var(--peach-light) 100%);
    position: relative;
    z-index: 10;
}

.venue-showcase-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

.venue-showcase-image {
    flex: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(44, 24, 16, 0.15), 0 0 0 1px rgba(196, 151, 59, 0.3);
}

.venue-showcase-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.venue-showcase-image:hover img {
    transform: scale(1.05);
}

.venue-showcase-image::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 60px rgba(44, 24, 16, 0.1);
    pointer-events: none;
    border-radius: 16px;
}

.venue-showcase-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.venue-showcase-content .section-subtitle {
    text-align: left;
    margin-bottom: 12px;
}

.venue-showcase-content .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.venue-showcase-text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 40px;
}

.venue-showcase-text p {
    margin-bottom: 20px;
}

.venue-showcase-text p:last-child {
    margin-bottom: 0;
}

.venue-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 48px;
    background: transparent;
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--gold);
    border-radius: 4px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.venue-link-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
}

.venue-link-btn:hover {
    color: var(--ivory);
    box-shadow: 0 10px 30px rgba(196, 151, 59, 0.3);
    border-color: transparent;
}

.venue-link-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}


/* =============================================
   VENUE SECTION
   ============================================= */
.venue-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 50%, var(--ivory) 100%);
    position: relative;
    z-index: 10;
}

.venue-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 20px;
}

.venue-card {
    background: rgba(253, 232, 216, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(196, 151, 59, 0.18);
    border-radius: 16px;
    padding: 50px 36px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.venue-card:nth-child(2) {
    background: rgba(242, 209, 209, 0.35);
    border-color: rgba(232, 160, 160, 0.2);
}

.venue-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.venue-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
}

.venue-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(196, 151, 59, 0.12);
    border-color: rgba(196, 151, 59, 0.3);
}

.venue-card:hover::before {
    opacity: 1;
}

.venue-card-icon {
    color: var(--gold);
    margin-bottom: 28px;
    transition: var(--transition-smooth);
}

.venue-card:hover .venue-card-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 12px var(--gold-glow));
}

.venue-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.venue-card-detail {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-body);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.venue-card-location {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 300;
    font-style: italic;
    color: var(--gold);
}

/* =============================================
   RSVP SECTION
   ============================================= */
.rsvp-section {
    padding: var(--section-padding);
    background: rgba(159, 46, 118, 0.8);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.rsvp-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.rsvp-content {
    position: relative;
    z-index: 2;
}

.rsvp-button {
    display: inline-block;
    padding: 18px 60px;
    border: 1.5px solid #fff;
    background: transparent;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin: 0 auto;
}

.rsvp-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s ease;
}

.rsvp-button:hover {
    background: transparent;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.rsvp-button:hover::before {
    left: 100%;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
    padding: 60px 40px 40px;
    background: #49372a;
    text-align: center;
    position: relative;
    z-index: 10;
}

.footer-logo {
    margin-bottom: 24px;
    overflow: visible;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo img {
    height: 300px;
    opacity: 0.9;
}

.footer-monogram {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: #fff;
    letter-spacing: 8px;
    margin-bottom: 0;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.footer-nav a {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #fff;
}

.footer-tagline {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.footer-divider {
    width: 40px;
    height: 0.5px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 auto 24px;
    opacity: 0.4;
}

.footer-hashtag {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 32px;
}

.footer-copyright {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.35);
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */
@media (max-width: 1024px) {
    .venue-cards,
    .info-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 2.2rem;
    }

    .nav-links-left {
        padding-right: 80px;
    }

    .nav-links-right {
        padding-left: 80px;
    }

    .nav-logo-img {
        height: 200px;
    }

    .nav-logo {
        top: -50px;
    }

    .venue-showcase-container {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .venue-showcase-content {
        align-items: center;
    }

    .venue-showcase-content .section-title,
    .venue-showcase-content .section-subtitle {
        text-align: center;
    }

    .venue-showcase-image {
        width: 100%;
        max-width: 600px;
    }

    .info-section .venue-showcase-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        margin-left: 0;
        margin-top: 0;
        flex: none;
    }

    .info-section .venue-showcase-content {
        align-items: center;
        text-align: center;
        padding: 36px 32px;
        min-width: unset;
    }

    .info-section .venue-showcase-content .section-subtitle,
    .info-section .venue-showcase-content .section-title {
        text-align: center;
    }

    .countdown-section {
        min-height: 55vh;
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    #main-nav {
        height: 60px;
        padding: 0 16px;
    }

    .nav-links {
        display: none;
    }

    .venue-showcase-container {
        padding: 0 20px;
    }

    .venue-showcase-image {
        max-width: 100%;
    }

    .info-section .venue-showcase-image {
        width: 100%;
        height: auto;
        margin-left: 0;
        margin-top: 0;
    }

    .info-section .venue-showcase-image img {
        max-height: 300px;
    }

    .info-section .venue-showcase-content {
        padding: 28px 20px;
        min-width: unset;
        align-items: center;
        text-align: center;
    }

    .info-section .venue-showcase-content .section-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .info-section .venue-showcase-content .section-subtitle {
        text-align: center;
    }

    .info-section .venue-showcase-text {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .info-section .venue-showcase-text p {
        text-align: center;
    }

    .venue-rsvp-btn {
        padding: 14px 36px;
        font-size: 0.7rem;
        letter-spacing: 3px;
    }

    .info-section .section-container {
        overflow: hidden;
    }

    .nav-links-left,
    .nav-links-right {
        display: none !important;
    }

    #nav-toggle {
        display: flex;
        left: 16px;
        gap: 6px;
        padding: 10px;
    }

    #nav-toggle span {
        width: 28px;
        height: 2px;
    }

    .nav-logo-img {
        height: 180px;
    }

    .nav-logo {
        top: -40px;
    }

    .nav-rsvp-btn {
        right: 16px;
        padding: 8px 18px;
        font-size: 0.65rem;
        letter-spacing: 2px;
    }

    .hero-location {
        font-size: 1.6rem;
    }

    .hero-date-line {
        font-size: 0.6rem;
        letter-spacing: 3px;
    }

    .hero-rsvp-btn {
        padding: 12px 32px;
        font-size: 0.6rem;
        letter-spacing: 3px;
        margin-top: 24px;
    }

    .arch-frame {
        width: 100%;
        max-width: 420px;
    }

    .arch-inner {
        padding: 50px 30px 40px;
        border-radius: 220px 220px 8px 8px;
    }

    .monogram-circle {
        width: 70px;
        height: 70px;
    }

    .monogram-img {
        width: 60px;
        height: 60px;
    }

    .hero-tagline {
        font-size: 0.95rem;
    }

    .std-save,
    .std-date {
        font-size: 2rem;
        letter-spacing: 8px;
    }

    .std-the {
        font-size: 2.4rem;
    }

    .name-linisha,
    .name-amit {
        font-size: 1.8rem;
        letter-spacing: 4px;
    }

    .name-ampersand {
        font-size: 2.2rem;
        margin: 0 10px;
    }

    .section-title {
        font-size: 2rem;
    }

    .countdown-section {
        min-height: 50vh;
    }

    .info-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .info-card {
        padding: 36px 28px;
    }

    .countdown-content {
        padding: 60px 24px;
    }

    .countdown {
        gap: 12px;
    }

    .countdown-item {
        min-width: 70px;
    }

    .countdown-number {
        font-size: 3.2rem;
    }

    .countdown-separator {
        font-size: 2rem;
    }

    .venue-cards {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Accordion timeline responsive */
    .tl-accordion {
        flex-direction: column;
        height: auto;
        overflow: visible;
    }

    .tl-item {
        flex: none;
        flex-direction: column;
        border-right: none;
        border-bottom: 1px solid rgba(196, 151, 59, 0.12);
        overflow: hidden;
    }

    .tl-item:last-child {
        border-bottom: none;
    }

    .tl-tab {
        width: 100%;
        min-width: unset;
        height: 56px;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        padding: 0 20px;
        gap: 12px;
    }

    .tl-tab::before {
        /* Move accent from top to left on mobile */
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        width: auto;
    }

    .tl-tab::after {
        display: none;
    }

    .tl-tab-label {
        writing-mode: horizontal-tb;
        text-orientation: initial;
        transform: none;
        font-size: 0.75rem;
    }

    .tl-tab-num {
        margin-bottom: 0;
    }

    /* Hide content by default, show when active */
    .tl-content {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.4s ease 0.1s,
                    padding 0.5s ease;
        transform: none;
    }

    .tl-item.active .tl-content {
        max-height: 600px;
        opacity: 1;
        padding: 24px 20px 30px;
        transform: none;
    }

    .tl-content-text {
        min-width: unset;
        max-width: 100%;
    }

    .tl-content-img {
        max-width: 100%;
        min-width: unset;
    }

    .tl-content-img img {
        max-height: 280px;
    }

    .tl-header {
        padding-top: 40px;
    }

    .section-container {
        padding: 0 24px;
    }

    .rsvp-button {
        padding: 16px 40px;
        font-size: 0.7rem;
    }

    .palace-image video {
        object-position: center center;
    }

    .hero {
        min-height: 100vh;
    }

    /* Single full-bleed video on mobile (no pane split) */
    .hero-pane.pane-center,
    .hero-pane.pane-right {
        display: none;
    }

    .hero-pane video {
        width: 100%;
    }

    .pane-left video {
        left: 0;
    }
}

@media (max-width: 480px) {
    #main-nav {
        height: 55px;
        padding: 0 12px;
    }

    #nav-toggle {
        left: 12px;
    }

    .nav-logo-img {
        height: 150px;
    }

    .nav-logo {
        top: -30px;
    }

    .nav-rsvp-btn {
        right: 12px;
        padding: 7px 14px;
        font-size: 0.6rem;
    }

    .hero-names {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .name-linisha,
    .name-amit {
        font-size: 1.6rem;
    }

    .hero-names-large {
        white-space: nowrap;
    }

    .hero-location {
        font-size: 1.3rem;
    }

    .name-ampersand {
        margin: 0;
    }

    .arch-inner {
        padding: 40px 24px 36px;
        border-radius: 180px 180px 8px 8px;
    }

    .std-save,
    .std-date {
        font-size: 1.6rem;
        letter-spacing: 6px;
    }

    .std-the {
        font-size: 2rem;
    }

    .countdown-number {
        font-size: 2.4rem;
    }

    .countdown-item {
        min-width: 55px;
    }

    .countdown-label {
        font-size: 0.55rem;
        letter-spacing: 2px;
    }

    .countdown-content {
        padding: 50px 16px;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .monogram-circle {
        width: 60px;
        height: 60px;
    }

    .monogram-img {
        width: 50px;
        height: 50px;
    }

    footer {
        padding: 50px 20px;
    }
}