/* ============================================
   WEDDING INVITATION - BRUTALIST LUXURY STYLE
   Inspired by MOOSER Hotel Typography
   ============================================ */

/* CSS Variables - GREEN & GOLD LUXURY PALETTE */
:root {
    /* Primary Colors */
    --color-cream: #f8f9f4;
    --color-cream-dark: #e8ebe0;
    --color-brown: #2d4a3e;
    --color-brown-dark: #1a2f27;
    --color-brown-light: #4a7c67;
    --color-mocha: #2d4a3e;

    /* Text Colors */
    --color-text-dark: #1a2f27;
    --color-text-light: #f8f9f4;
    --color-text-muted: #5a7a6a;
    --color-text-muted-light: rgba(248, 249, 244, 0.6);

    /* Accent - GOLD */
    --color-accent: #c9a227;
    --color-accent-light: #d4af37;

    /* Fonts */
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Transitions */
    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-magnetic: cubic-bezier(0.23, 1, 0.32, 1);
}

/* ============================================
   VIDEO INTRO SPLASH SCREEN
   ============================================ */

.video-intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: var(--color-brown-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s var(--ease-out-expo), visibility 1s;
}

.video-intro.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.intro-skip-btn {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 3;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 12px 24px;
    transition: all 0.3s var(--ease-smooth);
    opacity: 0;
    animation: skipBtnFadeIn 1s var(--ease-out-expo) 1.5s forwards;
}

.intro-skip-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

@keyframes skipBtnFadeIn {
    to {
        opacity: 1;
    }
}

/* Hide main content when intro is active */
body.intro-active .main-nav,
body.intro-active .vertical-marquee,
body.intro-active .smooth-scroll-wrapper,
body.intro-active .loader,
body.intro-active .music-float,
body.intro-active .whatsapp-float {
    opacity: 0;
    pointer-events: none;
}

body.intro-active {
    overflow: hidden;
}

/* Video intro responsive */
@media (max-width: 768px) {
    .intro-skip-btn {
        bottom: 30px;
        right: 30px;
        font-size: 0.6rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .intro-skip-btn {
        bottom: 20px;
        right: 20px;
        font-size: 0.55rem;
        padding: 10px 18px;
    }
}

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

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

body {
    font-family: var(--font-display);
    background-color: var(--color-cream);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

body.loading {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   MOOSER-STYLE TYPOGRAPHY UTILITIES
   ============================================ */

/* Mixed typography style - italic + regular */
.text-mixed .italic {
    font-style: italic;
    font-weight: 300;
}

.text-mixed .regular {
    font-style: normal;
    font-weight: 400;
}

.text-mixed .bold {
    font-style: normal;
    font-weight: 600;
}

.text-mixed .light {
    font-style: normal;
    font-weight: 300;
    color: var(--color-text-muted);
}

/* Uppercase spaced text */
.text-spaced {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

/* Large display serif */
.text-display {
    font-family: var(--font-display);
    font-weight: 300;
    line-height: 1.1;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */

.custom-cursor {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
}

.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--color-brown);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.1s var(--ease-smooth);
    pointer-events: none;
}

.cursor-circle {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-brown);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.15s var(--ease-smooth);
    pointer-events: none;
    opacity: 0.5;
}

.cursor-hover .cursor-circle {
    width: 80px;
    height: 80px;
    opacity: 1;
    background: rgba(45, 74, 62, 0.1);
}

.cursor-hover .cursor-dot {
    transform: translate(-50%, -50%) scale(0);
}

/* Dark section cursor */
.dark-section .cursor-dot,
.hero-section .cursor-dot {
    background: var(--color-cream);
}

.dark-section .cursor-circle,
.hero-section .cursor-circle {
    border-color: var(--color-cream);
}

/* ============================================
   LOADER
   ============================================ */

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-text {
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 300;
    letter-spacing: 0.5rem;
    margin-bottom: 3rem;
    color: var(--color-brown);
}

.loader-text .letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: letterFadeIn 0.6s var(--ease-out-expo) forwards;
}

.loader-text .letter:nth-child(1) { animation-delay: 0.1s; }
.loader-text .letter:nth-child(2) { animation-delay: 0.2s; font-style: italic; }
.loader-text .letter:nth-child(3) { animation-delay: 0.3s; }

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

.loader-bar {
    width: 200px;
    height: 1px;
    background: rgba(45, 74, 62, 0.2);
    margin: 0 auto;
    overflow: hidden;
}

.loader-progress {
    width: 0;
    height: 100%;
    background: var(--color-brown);
    animation: loadProgress 2s var(--ease-out-expo) forwards;
}

@keyframes loadProgress {
    to {
        width: 100%;
    }
}

/* ============================================
   VERTICAL MARQUEE
   ============================================ */

.vertical-marquee {
    position: fixed;
    top: 0;
    width: 50px;
    height: 100vh;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    overflow: hidden;
}

.vertical-marquee.left {
    left: 0;
}

.vertical-marquee.right {
    right: 0;
}

.marquee-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
    animation: marqueeScroll 20s linear infinite;
    white-space: nowrap;
}

.marquee-content.reverse {
    animation-direction: reverse;
}

@keyframes marqueeScroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

/* ============================================
   NAVIGATION - MOOSER STYLE
   ============================================ */

.main-nav {
    position: fixed;
    top: 0;
    right: 0;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 1000;
}

.nav-btn {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.4s var(--ease-smooth);
    will-change: transform;
    background: transparent;
    border: none;
    color: var(--color-text-light);
}

.nav-btn.menu-btn {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-btn.menu-btn::before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: currentColor;
    transition: width 0.3s var(--ease-smooth);
}

.nav-btn.menu-btn:hover::before {
    width: 30px;
}

.nav-btn.rsvp-trigger {
    background: var(--color-mocha);
    color: var(--color-text-light);
    border-radius: 30px;
    padding: 14px 28px;
}

.nav-btn.rsvp-trigger:hover {
    background: var(--color-brown-dark);
}

/* Light nav for cream sections */
.nav-light .nav-btn {
    color: var(--color-text-dark);
}

.nav-light .nav-btn.rsvp-trigger {
    background: var(--color-brown);
    color: var(--color-text-light);
}

/* Navigation Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-cream);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s var(--ease-out-expo);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-overlay-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-link {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 300;
    color: var(--color-text-muted);
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    transform: translateY(30px);
    opacity: 0;
}

.nav-overlay.active .nav-link {
    transform: translateY(0);
    opacity: 1;
}

.nav-link::before {
    content: attr(data-index);
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--color-brown-light);
}

.nav-link:hover {
    color: var(--color-brown);
    transform: translateX(20px);
}

.nav-link .italic {
    font-style: italic;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-brown-dark);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(26, 47, 39, 0.4) 0%,
        rgba(26, 47, 39, 0.6) 50%,
        rgba(26, 47, 39, 0.8) 100%
    );
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 8s var(--ease-smooth);
}

.hero-section.loaded .hero-image img {
    transform: scale(1);
}

/* Hero Video - 3 copies side by side */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    background: var(--color-brown-dark);
}

.hero-vid {
    flex: 1;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    min-width: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    color: var(--color-text-light);
}

/* MOOSER-style hero label */
.hero-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--color-text-muted-light);
}

.hero-date {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 0.5em;
    margin-bottom: 40px;
    color: var(--color-cream);
}

.hero-date .letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
}

/* MOOSER-style mixed typography hero title */
.hero-title {
    font-family: var(--font-display);
    font-weight: 300;
    line-height: 1.05;
}

.hero-title .line {
    display: block;
    overflow: hidden;
}

.hero-title .word {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
}

/* First name - italic */
.hero-title .line-1 .word {
    font-size: 7rem;
    font-style: italic;
    font-weight: 300;
}

/* Ampersand - regular, smaller */
.hero-title .line-2 .word {
    font-size: 3rem;
    font-style: normal;
    font-weight: 300;
    color: var(--color-accent-light);
    margin: 15px 0;
}

/* Second name - regular/bold, uppercase */
.hero-title .line-3 .word {
    font-size: 7rem;
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-subtitle {
    margin-top: 50px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.1em;
    opacity: 0;
    transform: translateY(20px);
    color: var(--color-text-muted-light);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0;
    animation: fadeInUp 1s var(--ease-out-expo) 2s forwards;
    color: var(--color-text-light);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--color-cream)
    );
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(0.5);
        transform-origin: top;
    }
    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

.scroll-indicator span {
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* ============================================
   INTRO SECTION - CREAM BACKGROUND
   ============================================ */

.intro-section {
    padding: 180px 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--color-cream);
    position: relative;
}

/* Rounded top edge like MOOSER */
.intro-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--color-cream);
    border-radius: 80px 80px 0 0;
}

.intro-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 100px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.intro-left {
    position: relative;
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.rotate-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}

.sticky-content {
    position: sticky;
    top: 50%;
    transform: translateY(-50%);
}

.intro-right {
    padding-left: 50px;
}

/* MOOSER-style intro text with mixed weights */
.intro-text {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--color-text-muted);
}

.intro-text .bold {
    font-weight: 500;
    color: var(--color-text-dark);
}

.intro-text .italic {
    font-style: italic;
    color: var(--color-text-muted);
}

.intro-quote {
    margin-top: 60px;
    padding-left: 30px;
    border-left: 1px solid var(--color-accent-light);
}

.intro-quote blockquote {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 300;
    color: var(--color-accent);
    line-height: 1.8;
}

/* ============================================
   FADE UP ANIMATION
   ============================================ */

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo),
                transform 0.8s var(--ease-out-expo);
}

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

/* ============================================
   DETAILS SECTION - CREAM WITH PILL CARDS
   ============================================ */

.details-section {
    padding: 120px 80px 180px;
    background: var(--color-cream);
}

.details-header {
    text-align: center;
    margin-bottom: 80px;
}

/* MOOSER-style mixed title */
.large-title {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 300;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 15px;
    flex-wrap: wrap;
}

.large-title .italic {
    font-style: italic;
}

.large-title .regular {
    font-style: normal;
}

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

.large-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s var(--ease-out-expo);
}

.large-title.visible .word {
    opacity: 1;
    transform: translateY(0);
}

/* MOOSER-style pill cards */
.details-grid {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.details-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--color-brown-light);
    opacity: 0.3;
}

.detail-card {
    text-align: center;
    padding: 60px 50px;
    position: relative;
    flex: 1;
    transition: all 0.5s var(--ease-smooth);
    cursor: pointer;
}

/* Pill shape borders */
.detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid var(--color-brown-light);
    border-radius: 100px;
    opacity: 0.3;
    transition: all 0.4s var(--ease-smooth);
}

.detail-card:hover::before,
.detail-card:active::before {
    opacity: 1;
    border-color: var(--color-accent);
    background: rgba(201, 162, 39, 0.05);
}

.detail-card:hover,
.detail-card:active {
    transform: translateY(-8px);
}

.detail-card:hover .card-icon,
.detail-card:active .card-icon {
    color: var(--color-accent);
    transform: scale(1.1);
}

.detail-card:hover .card-main,
.detail-card:active .card-main {
    color: var(--color-accent);
}

.card-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 25px;
    color: var(--color-brown-light);
    transition: all 0.4s var(--ease-smooth);
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.card-main {
    transition: color 0.4s var(--ease-smooth);
}

.detail-card h3 {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 15px;
}

.card-main {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--color-text-dark);
}

.card-sub {
    font-family: var(--font-display);
    font-size: 1rem;
    font-style: italic;
    color: var(--color-text-muted);
}

/* ============================================
   PARALLAX SECTION - IMAGE BREAK
   ============================================ */

.parallax-section {
    position: relative;
    height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-image {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
}

.parallax-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}

.parallax-text {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* MOOSER-style parallax text */
.tracking-wide {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--color-text-light);
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.4);
}

.tracking-wide .italic {
    font-style: italic;
}

.tracking-animation {
    letter-spacing: 0.5em;
    transition: letter-spacing 1s var(--ease-out-expo);
}

.tracking-animation.tight {
    letter-spacing: 0.2em;
}

/* ============================================
   VENUE SECTION - CREAM BACKGROUND
   ============================================ */

.venue-section {
    padding: 180px 80px;
    background: var(--color-cream);
}

.venue-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.venue-image-stack {
    position: relative;
    height: 700px;
}

.venue-img {
    position: absolute;
    overflow: hidden;
    border-radius: 20px;
}

.venue-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

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

.img-1 {
    top: 0;
    left: 0;
    width: 70%;
    height: 60%;
    z-index: 1;
}

.img-2 {
    bottom: 0;
    right: 0;
    width: 65%;
    height: 55%;
    z-index: 2;
}

.venue-right {
    padding-top: 100px;
}

/* MOOSER-style venue title */
.venue-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: var(--color-text-dark);
}

.venue-title .italic {
    font-style: italic;
}

.venue-description {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--color-text-muted);
    margin-bottom: 50px;
}

.venue-features {
    margin-bottom: 50px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(45, 74, 62, 0.15);
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--color-text-dark);
}

.feature-icon {
    color: var(--color-brown-light);
    font-size: 0.5rem;
}

/* MOOSER-style button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid var(--color-brown);
    color: var(--color-brown);
    background: transparent;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s var(--ease-smooth);
}

.btn-primary .btn-text {
    position: relative;
    z-index: 1;
}

.btn-primary .btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-brown);
    transform: translateX(-101%);
    transition: transform 0.4s var(--ease-smooth);
}

.btn-primary:hover {
    color: var(--color-cream);
}

.btn-primary:hover .btn-bg {
    transform: translateX(0);
}

/* ============================================
   SCHEDULE SECTION - MOCHA BACKGROUND
   ============================================ */

.schedule-section {
    padding: 180px 80px;
    background: var(--color-mocha);
    position: relative;
    color: var(--color-text-light);
    border-radius: 60px 60px 0 0;
    margin-top: -60px;
}

.schedule-header {
    display: flex;
    align-items: flex-start;
    gap: 100px;
    margin-bottom: 100px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.left-label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: var(--color-text-muted-light);
}

/* MOOSER-style schedule title */
.schedule-main-title {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 300;
}

.schedule-main-title .italic {
    font-style: italic;
}

.schedule-main-title .light {
    color: var(--color-text-muted-light);
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 100px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    height: 100%;
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--color-accent-light),
        transparent
    );
}

.timeline-item {
    display: flex;
    gap: 50px;
    padding: 40px 0;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -58px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--color-mocha);
    border: 1px solid var(--color-accent-light);
    border-radius: 50%;
    transition: all 0.3s var(--ease-smooth);
}

.timeline-item:hover::before {
    background: var(--color-accent-light);
    box-shadow: 0 0 20px rgba(196, 168, 130, 0.5);
}

.timeline-time {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--color-accent-light);
    min-width: 100px;
}

.timeline-content h4 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.timeline-content h4 .italic {
    font-style: italic;
    font-weight: 300;
}

.timeline-content p {
    font-family: var(--font-display);
    font-weight: 300;
    color: var(--color-text-muted-light);
    line-height: 1.7;
}

/* ============================================
   GALLERY SECTION - CREAM BACKGROUND
   ============================================ */

.gallery-section {
    padding: 150px 80px;
    background: var(--color-cream);
}

.gallery-header {
    text-align: center;
    margin-bottom: 80px;
}

.gallery-header .large-title {
    font-size: 4rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 350px);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 15px;
}

.gallery-item.item-1 {
    grid-row: span 2;
}

.gallery-item.item-4 {
    grid-column: span 2;
}

.gallery-img-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.gallery-item:hover .gallery-img-wrapper img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: 'Shiko';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 12px 25px;
    background: var(--color-cream);
    color: var(--color-brown);
    border-radius: 30px;
    opacity: 0;
    transition: all 0.4s var(--ease-out-expo);
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* ============================================
   RSVP SECTION - MOCHA BACKGROUND
   ============================================ */

.rsvp-section {
    padding: 180px 80px;
    background: var(--color-mocha);
    position: relative;
    overflow: hidden;
    color: var(--color-text-light);
    border-radius: 60px 60px 0 0;
    margin-top: -60px;
}

.rsvp-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 25vw;
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    pointer-events: none;
}

.rsvp-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.rsvp-header {
    text-align: center;
    margin-bottom: 80px;
}

/* MOOSER-style RSVP title */
.rsvp-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 300;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 20px;
}

.rsvp-title .italic {
    font-style: italic;
}

.rsvp-title .word {
    display: inline-block;
}

.rsvp-subtitle {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--color-text-muted-light);
}

/* Form Styles */
.rsvp-form {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.form-group {
    position: relative;
}

.form-row {
    display: flex;
    gap: 30px;
}

.form-group.half {
    flex: 1;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 0;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-text-light);
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    outline: none;
    transition: border-color 0.3s var(--ease-smooth);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: transparent;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-accent-light);
}

.form-group label {
    position: absolute;
    left: 0;
    top: 15px;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--color-text-muted-light);
    pointer-events: none;
    transition: all 0.3s var(--ease-smooth);
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
    top: -20px;
    font-size: 0.7rem;
    color: var(--color-accent-light);
    letter-spacing: 0.1em;
    font-family: var(--font-body);
    text-transform: uppercase;
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent-light);
    transition: width 0.4s var(--ease-out-expo);
}

.form-group input:focus ~ .input-line,
.form-group select:focus ~ .input-line,
.form-group textarea:focus ~ .input-line {
    width: 100%;
}

.form-group select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group select option {
    background: var(--color-mocha);
    color: var(--color-text-light);
}

.form-group textarea {
    resize: none;
    min-height: 100px;
}

/* Submit Button - MOOSER style */
.btn-submit {
    align-self: center;
    position: relative;
    padding: 18px 50px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-mocha);
    background: var(--color-cream);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s var(--ease-smooth);
}

.btn-submit .btn-text {
    position: relative;
    z-index: 1;
}

.btn-submit .btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-brown-dark);
    transform: translateX(-101%);
    transition: transform 0.4s var(--ease-smooth);
}

.btn-submit:hover {
    color: var(--color-cream);
}

.btn-submit:hover .btn-bg {
    transform: translateX(0);
}

/* ============================================
   FOOTER - CREAM BACKGROUND
   ============================================ */

.footer {
    padding: 100px 80px;
    text-align: center;
    background: var(--color-cream);
    border-top: 1px solid rgba(45, 74, 62, 0.1);
}

.footer-names {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-bottom: 20px;
    color: var(--color-text-dark);
}

.footer-names .name:first-child {
    font-style: italic;
}

.footer-names .heart {
    color: var(--color-brown-light);
    animation: heartbeat 1.5s ease-in-out infinite;
}

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

.footer-date {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

.footer-message {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-brown-light);
    margin-bottom: 30px;
}

.footer-whatsapp {
    margin-bottom: 30px;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #25D366;
    color: white;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.4s var(--ease-smooth);
}

.whatsapp-link:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-link svg {
    width: 20px;
    height: 20px;
}

.footer-hashtag {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    color: var(--color-text-muted);
}

/* ============================================
   FLOATING MUSIC BUTTON - LEFT SIDE
   ============================================ */

.music-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 48px;
    height: 48px;
    background: var(--color-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    box-shadow: 0 4px 15px rgba(45, 74, 62, 0.4);
    transition: all 0.4s var(--ease-smooth);
    cursor: pointer;
    border: none;
    outline: none;
}

.music-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(45, 74, 62, 0.5);
    background: var(--color-accent);
}

.music-float svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-text-light);
    position: absolute;
    transition: opacity 0.3s ease;
}

.music-float .music-icon-on {
    opacity: 1;
}

.music-float .music-icon-off {
    opacity: 0;
}

.music-float.playing .music-icon-on {
    opacity: 1;
}

.music-float.playing .music-icon-off {
    opacity: 0;
}

/* Music equalizer bars */
.music-bars {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 16px;
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.music-float.playing .music-bars {
    opacity: 1;
}

.music-float.playing svg {
    opacity: 0;
}

.music-bars span {
    width: 3px;
    background: var(--color-text-light);
    border-radius: 2px;
    animation: musicBar 0.8s ease-in-out infinite alternate;
}

.music-bars span:nth-child(1) {
    height: 6px;
    animation-delay: 0s;
}

.music-bars span:nth-child(2) {
    height: 12px;
    animation-delay: 0.2s;
}

.music-bars span:nth-child(3) {
    height: 8px;
    animation-delay: 0.4s;
}

.music-bars span:nth-child(4) {
    height: 14px;
    animation-delay: 0.1s;
}

@keyframes musicBar {
    0% {
        height: 4px;
    }
    100% {
        height: 16px;
    }
}

/* ============================================
   FLOATING WHATSAPP BUTTON - RIGHT SIDE
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.4s var(--ease-smooth);
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: white;
}

/* ============================================
   LOCATION & MAP SECTION
   ============================================ */

.location-section {
    padding: 150px 80px;
    background: var(--color-cream-dark);
}

.location-content {
    max-width: 1400px;
    margin: 0 auto;
}

.location-header {
    text-align: center;
    margin-bottom: 80px;
}

.location-header .section-label {
    margin-bottom: 15px;
    display: block;
}

.location-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 300;
    color: var(--color-text-dark);
}

.location-title .italic {
    font-style: italic;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.location-photo,
.location-map {
    border-radius: 20px;
    overflow: hidden;
    height: 450px;
}

.photo-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

.location-photo:hover .photo-wrapper img {
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(26, 47, 39, 0.8), transparent);
}

.venue-badge {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-text-light);
}

.map-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%) contrast(1.1);
    transition: filter 0.3s ease;
}

.location-map:hover .map-wrapper iframe {
    filter: grayscale(0%) contrast(1);
}

.location-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    padding: 50px;
    background: var(--color-cream);
    border-radius: 20px;
}

.location-info {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: var(--color-brown-light);
}

.info-icon svg {
    width: 100%;
    height: 100%;
}

.info-content h4 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.info-content p {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--color-text-dark);
    line-height: 1.6;
}

.location-cta {
    text-align: center;
}

/* ============================================
   MAGNETIC EFFECT
   ============================================ */

.magnetic {
    will-change: transform;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .hero-title .line-1 .word,
    .hero-title .line-3 .word {
        font-size: 5.5rem;
    }

    .large-title {
        font-size: 4rem;
    }

    .venue-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .venue-image-stack {
        height: 500px;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .location-photo,
    .location-map {
        height: 350px;
    }

    .location-details {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px;
    }
}

@media (max-width: 992px) {
    .vertical-marquee {
        display: none;
    }

    .main-nav {
        padding: 20px 25px;
    }

    .hero-title .line-1 .word,
    .hero-title .line-3 .word {
        font-size: 4rem;
    }

    .hero-title .line-2 .word {
        font-size: 2rem;
    }

    .intro-section,
    .details-section,
    .venue-section,
    .schedule-section,
    .gallery-section,
    .rsvp-section,
    .location-section {
        padding: 100px 30px;
    }

    .intro-section::before {
        top: -40px;
        height: 40px;
        border-radius: 40px 40px 0 0;
    }

    .schedule-section,
    .rsvp-section {
        border-radius: 40px 40px 0 0;
        margin-top: -40px;
    }

    .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-left {
        display: none;
    }

    .intro-right {
        padding-left: 0;
    }

    .intro-text {
        font-size: 2.2rem;
    }

    .details-grid {
        flex-direction: column;
        gap: 20px;
    }

    .details-grid::before {
        display: none;
    }

    .large-title {
        font-size: 3rem;
    }

    .tracking-wide {
        font-size: 2rem;
        letter-spacing: 0.2em;
    }

    .schedule-header {
        flex-direction: column;
        gap: 30px;
    }

    .schedule-main-title {
        font-size: 3rem;
    }

    .timeline {
        padding-left: 60px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item::before {
        left: -48px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 250px);
    }

    .gallery-item.item-1 {
        grid-row: span 1;
    }

    .gallery-item.item-4 {
        grid-column: span 1;
    }

    .rsvp-title {
        font-size: 2.5rem;
    }

    .nav-link {
        font-size: 2.5rem;
    }

    /* Location section tablet */
    .location-title {
        font-size: 3rem;
    }

    .location-photo,
    .location-map {
        height: 300px;
    }

    .location-details {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    /* Single video on mobile */
    .hero-vid:nth-child(2),
    .hero-vid:nth-child(3) {
        display: none;
    }

    .hero-vid:first-child {
        width: 100%;
        object-fit: cover;
    }

    body {
        cursor: auto;
    }

    .custom-cursor {
        display: none !important;
    }

    .hero-section {
        min-height: 100svh;
        min-height: -webkit-fill-available;
    }

    /* Improve tap targets */
    .nav-btn,
    .btn-primary,
    .btn-submit,
    .whatsapp-link,
    .gallery-item {
        -webkit-tap-highlight-color: transparent;
    }

    /* Disable hover effects on touch */
    .detail-card:hover::before {
        opacity: 0.3;
        border-color: var(--color-brown-light);
        background: transparent;
    }

    .detail-card:hover {
        transform: none;
    }

    .detail-card:active::before {
        opacity: 1;
        border-color: var(--color-accent);
        background: rgba(201, 162, 39, 0.05);
    }

    .detail-card:active {
        transform: translateY(-4px);
    }

    .hero-label {
        font-size: 0.6rem;
    }

    .hero-date {
        font-size: 1rem;
        letter-spacing: 0.3em;
    }

    .hero-title .line-1 .word,
    .hero-title .line-3 .word {
        font-size: 3rem;
    }

    .hero-title .line-2 .word {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .form-row {
        flex-direction: column;
        gap: 35px;
    }

    .venue-title {
        font-size: 2.5rem;
    }

    .timeline-time {
        font-size: 1.6rem;
        min-width: 70px;
    }

    .timeline-content h4 {
        font-size: 1.2rem;
    }

    .footer-names {
        font-size: 1.8rem;
        flex-wrap: wrap;
    }

    /* Location section mobile */
    .location-title {
        font-size: 2.5rem;
    }

    .location-photo,
    .location-map {
        height: 250px;
    }

    .location-details {
        padding: 25px;
        gap: 25px;
    }

    .info-content h4 {
        font-size: 0.65rem;
    }

    .info-content p {
        font-size: 1rem;
    }

    .venue-badge {
        font-size: 1.2rem;
    }

    /* Improve timeline for mobile */
    .timeline-item {
        flex-direction: column;
        gap: 15px;
    }

    .timeline-time {
        min-width: auto;
    }

    /* Nav overlay mobile */
    .nav-link {
        font-size: 2rem;
    }

    .nav-overlay-content {
        gap: 12px;
        padding: 20px;
    }

    /* Floating buttons mobile */
    .music-float {
        bottom: 20px;
        left: 20px;
        width: 44px;
        height: 44px;
    }

    .music-float svg {
        width: 18px;
        height: 18px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }

    /* Footer WhatsApp link mobile */
    .whatsapp-link {
        padding: 12px 20px;
        font-size: 0.65rem;
    }

    .whatsapp-link svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .main-nav {
        padding: 15px 15px;
        gap: 8px;
    }

    .nav-btn {
        padding: 8px 12px;
        font-size: 0.55rem;
    }

    .nav-btn.rsvp-trigger {
        padding: 10px 16px;
    }

    .nav-btn.menu-btn::before {
        width: 15px;
    }

    .hero-title .line-1 .word,
    .hero-title .line-3 .word {
        font-size: 2.2rem;
    }

    .hero-title .line-2 .word {
        font-size: 1.2rem;
        margin: 10px 0;
    }

    .hero-date {
        font-size: 0.85rem;
        letter-spacing: 0.2em;
        margin-bottom: 30px;
    }

    .hero-label {
        font-size: 0.55rem;
        letter-spacing: 0.2em;
    }

    .hero-subtitle {
        margin-top: 30px;
        font-size: 0.8rem;
    }

    .large-title {
        font-size: 1.8rem;
        gap: 8px;
    }

    .detail-card {
        padding: 35px 25px;
    }

    .card-main {
        font-size: 1.5rem;
    }

    .card-sub {
        font-size: 0.9rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 200px);
        gap: 15px;
    }

    .rsvp-title {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 5px;
    }

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

    .btn-submit {
        padding: 15px 30px;
        font-size: 0.65rem;
    }

    .btn-primary {
        padding: 14px 28px;
        font-size: 0.65rem;
    }

    /* Location section small mobile */
    .location-section {
        padding: 80px 20px;
    }

    .location-header {
        margin-bottom: 50px;
    }

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

    .location-grid {
        gap: 20px;
        margin-bottom: 40px;
    }

    .location-photo,
    .location-map {
        height: 220px;
        border-radius: 15px;
    }

    .location-details {
        padding: 20px;
        gap: 20px;
        border-radius: 15px;
        margin-bottom: 40px;
    }

    .location-info {
        gap: 15px;
    }

    .info-icon {
        width: 30px;
        height: 30px;
    }

    .info-content p {
        font-size: 0.95rem;
    }

    .venue-badge {
        font-size: 1rem;
    }

    .photo-overlay {
        padding: 20px;
    }

    /* Intro section mobile */
    .intro-section {
        padding: 80px 20px;
        min-height: auto;
    }

    .intro-text {
        font-size: 1.6rem;
        line-height: 1.4;
    }

    .intro-quote {
        margin-top: 40px;
        padding-left: 20px;
    }

    .intro-quote blockquote {
        font-size: 1rem;
        line-height: 1.7;
    }

    /* Venue section mobile */
    .venue-section {
        padding: 80px 20px;
    }

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

    .venue-description {
        font-size: 1rem;
        line-height: 1.7;
    }

    .venue-image-stack {
        height: 350px;
    }

    .venue-img.img-1 {
        width: 80%;
        height: 55%;
    }

    .venue-img.img-2 {
        width: 70%;
        height: 50%;
    }

    .feature {
        padding: 14px 0;
        font-size: 0.95rem;
    }

    /* Schedule section mobile */
    .schedule-section {
        padding: 80px 20px;
    }

    .schedule-main-title {
        font-size: 2.2rem;
    }

    .timeline {
        padding-left: 40px;
    }

    .timeline::before {
        left: 10px;
    }

    .timeline-item {
        padding: 30px 0;
    }

    .timeline-item::before {
        left: -35px;
        width: 10px;
        height: 10px;
    }

    .timeline-time {
        font-size: 1.4rem;
    }

    .timeline-content h4 {
        font-size: 1.1rem;
    }

    .timeline-content p {
        font-size: 0.9rem;
    }

    /* Gallery section mobile */
    .gallery-section {
        padding: 80px 20px;
    }

    .gallery-header {
        margin-bottom: 50px;
    }

    .gallery-header .large-title {
        font-size: 2rem;
    }

    /* RSVP section mobile */
    .rsvp-section {
        padding: 80px 20px;
    }

    .rsvp-header {
        margin-bottom: 50px;
    }

    .rsvp-form {
        gap: 30px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents iOS zoom on focus */
        padding: 12px 0;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    /* Footer mobile */
    .footer {
        padding: 60px 20px;
    }

    .footer-names {
        font-size: 1.5rem;
        gap: 15px;
    }

    .footer-date {
        font-size: 0.7rem;
        letter-spacing: 0.3em;
    }

    .footer-message {
        font-size: 1rem;
    }

    .footer-hashtag {
        font-size: 0.6rem;
    }

    /* Nav overlay mobile */
    .nav-link {
        font-size: 1.6rem;
        gap: 20px;
    }

    .nav-link::before {
        font-size: 0.55rem;
    }

    /* Parallax section mobile */
    .parallax-section {
        height: 50vh;
    }

    .tracking-wide {
        font-size: 1.5rem;
        letter-spacing: 0.15em;
    }

    /* Details section cards mobile */
    .details-section {
        padding: 80px 20px;
    }

    .details-header {
        margin-bottom: 50px;
    }

    .detail-card::before {
        border-radius: 60px;
    }

    /* Floating buttons mobile */
    .music-float {
        bottom: 15px;
        left: 15px;
        width: 42px;
        height: 42px;
    }

    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 48px;
        height: 48px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero-title .line-1 .word,
    .hero-title .line-3 .word {
        font-size: 1.9rem;
    }

    .hero-title .line-2 .word {
        font-size: 1rem;
    }

    .intro-text {
        font-size: 1.4rem;
    }

    .large-title {
        font-size: 1.5rem;
    }

    .card-main {
        font-size: 1.3rem;
    }

    .venue-title,
    .location-title {
        font-size: 1.8rem;
    }

    .schedule-main-title {
        font-size: 1.9rem;
    }

    .rsvp-title {
        font-size: 1.5rem;
    }

    .footer-names {
        font-size: 1.3rem;
    }
}

/* ============================================
   SMOOTH SCROLL WRAPPER
   ============================================ */

.smooth-scroll-wrapper {
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.smooth-scroll-content {
    will-change: transform;
}

/* When smooth scroll is not active (fallback) */
body.no-smooth-scroll .smooth-scroll-wrapper {
    position: static;
    overflow: visible;
}

body.no-smooth-scroll .smooth-scroll-content {
    transform: none !important;
}
