/* Romantic Mint - Hochzeit Isabell & Gabesz */
/* Variation von Demo 1 mit Mint-Akzenten */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

:root {
    --dusty-rose: #D4A5A5;
    --dusty-rose-light: #E8C4C4;
    --dusty-rose-dark: #B88888;
    --mint: #A8D5BA;
    --mint-light: #C8E6D0;
    --mint-dark: #7FB891;
    --champagne: #F7E7CE;
    --champagne-light: #FBF3E6;
    --gold: #C9A227;
    --gold-light: #E5D69B;
    --gold-dark: #9A7B1D;
    --gold-text: #8A6D14;
    --cream: #FDFAF6;
    --cream-dark: #F5EDE0;
    --dark: #3D3D3D;
    --dark-light: #5A5A5A;
    --white: #FFFFFF;
    --font-display: 'Cormorant Garamond', serif;
    --font-serif: 'Cormorant Garamond', serif;
    --font-body: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--dark);
    line-height: 1.6;
}

/* ==================== Grain Texture Overlay ==================== */
.grain-overlay {
    position: fixed;
    inset: 0;
    z-index: 98;
    pointer-events: none;
    opacity: 0.028;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
}

/* ==================== Container ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==================== Navigation ==================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253, 250, 246, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: none;
    transition: all 0.4s ease;
}

.nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.4;
    transition: opacity 0.4s ease;
}

.nav.scrolled {
    background: rgba(253, 250, 246, 0.97);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav.scrolled::after {
    opacity: 0.6;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: padding 0.4s ease;
}

.nav.scrolled .nav-container {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.nav-logo {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-logo-img {
    height: 60px;
    width: auto;
    display: block;
    transition: height 0.4s ease;
}

.nav.scrolled .nav-logo-img {
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--dark);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold-text);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-lang {
    display: flex;
    align-items: center;
    background: var(--cream-dark);
    border-radius: 20px;
    padding: 3px;
    border: 1px solid rgba(201, 162, 39, 0.15);
}

.nav-lang .lang-btn {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--dark-light);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.3rem 0.7rem;
    border-radius: 17px;
    letter-spacing: 0.05em;
}

.nav-lang .lang-btn.active {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(201, 162, 39, 0.3);
}

.nav-lang .lang-btn:hover:not(.active) {
    color: var(--gold);
    background: rgba(201, 162, 39, 0.08);
}

.nav-lang .lang-divider {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==================== Hero Section ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 4.5rem 2rem 4rem;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, transparent 65%, var(--cream) 100%),
        linear-gradient(
            135deg,
            rgba(212, 165, 165, 0.82) 0%,
            rgba(247, 231, 206, 0.8) 50%,
            rgba(253, 248, 243, 0.86) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
}

/* Soft radial glow behind names */
.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    width: 500px;
    height: 350px;
    background: radial-gradient(ellipse, rgba(253, 250, 246, 0.5) 0%, rgba(247, 231, 206, 0.25) 40%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.7; transform: translate(-50%, -55%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -55%) scale(1.08); }
}

/* Hero Rings */
.hero-rings {
    width: 64px;
    height: auto;
    display: block;
    margin: 0 auto 1rem;
    filter: drop-shadow(0 2px 8px rgba(201, 162, 39, 0.25));
}

/* Typography */
.pre-title {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 300;
    font-size: 1.5rem;
    color: var(--gold-text);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 0 1px 3px rgba(201, 162, 39, 0.1);
}

.names {
    font-family: var(--font-display);
    font-size: clamp(3rem, 9vw, 5.5rem);
    font-weight: 300;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.15;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 15px rgba(61, 61, 61, 0.06);
}

.name {
    display: inline-block;
}

.ampersand {
    font-style: italic;
    font-weight: 300;
    color: var(--gold-text);
    margin: 0 0.2em;
    font-size: 0.8em;
    display: inline-block;
    transform: translateY(-0.05em);
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.date-info {
    margin-bottom: 1.75rem;
}

.date {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--dark);
    letter-spacing: 0.12em;
}

.time {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--dark);
    margin-top: 0.35rem;
    letter-spacing: 0.08em;
}

.location-text {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--gold-text);
    margin-top: 0.5rem;
    font-style: italic;
    letter-spacing: 0.06em;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    background: rgba(253, 250, 246, 0.75);
    border-radius: 14px;
    padding: 0.75rem 1.25rem;
    border: 1px solid rgba(201, 162, 39, 0.12);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.countdown-item:hover {
    box-shadow: 0 6px 24px rgba(201, 162, 39, 0.12), 0 0 0 1px rgba(201, 162, 39, 0.08);
    border-color: rgba(201, 162, 39, 0.22);
}

.countdown-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 400;
    color: var(--gold-text);
    line-height: 1;
    transition: transform 0.3s ease;
}

.countdown-number.tick {
    transform: scale(1.05);
}

.countdown-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--dark-light);
    margin-top: 0.5rem;
}

.countdown-separator {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--gold);
    opacity: 0.3;
    align-self: center;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--white);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
    position: relative;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(201, 162, 39, 0.4);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(201, 162, 39, 0.3);
}

/* Save the Date subtle pulse */
.save-the-date {
    animation: ctaPulse 3s ease-in-out infinite;
}

.save-the-date:hover {
    animation-play-state: paused;
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(201, 162, 39, 0.45), 0 0 0 8px rgba(201, 162, 39, 0.06); }
}

/* Falling Petals */
.petals {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.petal {
    position: absolute;
    width: 40px;
    height: 40px;
    background: url('../images/petals-sprite-40.png') no-repeat;
    background-size: 200px 40px;
    opacity: 0;
    animation: petalFall linear infinite;
}

.petal:nth-child(1) { background-position: 0 0; }
.petal:nth-child(2) { background-position: -40px 0; }
.petal:nth-child(3) { background-position: -80px 0; }
.petal:nth-child(4) { background-position: -120px 0; }
.petal:nth-child(5) { background-position: -160px 0; }
.petal:nth-child(6) { background-position: 0 0; }
.petal:nth-child(7) { background-position: -80px 0; }
.petal:nth-child(8) { background-position: -160px 0; }

.petal:nth-child(1) { left: 5%;  animation-duration: 24s; animation-delay: 0s; }
.petal:nth-child(2) { left: 15%; animation-duration: 30s; animation-delay: 4s; }
.petal:nth-child(3) { left: 30%; animation-duration: 22s; animation-delay: 8s; }
.petal:nth-child(4) { left: 50%; animation-duration: 28s; animation-delay: 2s; }
.petal:nth-child(5) { left: 65%; animation-duration: 26s; animation-delay: 6s; }
.petal:nth-child(6) { left: 80%; animation-duration: 32s; animation-delay: 10s; }
.petal:nth-child(7) { left: 90%; animation-duration: 24s; animation-delay: 14s; }
.petal:nth-child(8) { left: 40%; animation-duration: 28s; animation-delay: 12s; }

.petals-paused .petal {
    animation-play-state: paused;
}

@keyframes petalFall {
    0%   { transform: translateY(-60px) translateX(0) rotate(0deg); opacity: 0; }
    10%  { opacity: 0.3; }
    25%  { transform: translateY(25vh) translateX(15px) rotate(90deg); }
    50%  { transform: translateY(50vh) translateX(-10px) rotate(180deg); }
    75%  { transform: translateY(75vh) translateX(20px) rotate(270deg); }
    90%  { opacity: 0.3; }
    100% { transform: translateY(100vh) translateX(-5px) rotate(360deg); opacity: 0; }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 1.2s both;
}

.scroll-arrow {
    width: 18px;
    height: 18px;
    border-right: 1.5px solid var(--gold);
    border-bottom: 1.5px solid var(--gold);
    transform: rotate(45deg);
    animation: scrollBounce 2.5s cubic-bezier(0.45, 0, 0.55, 1) infinite;
    opacity: 0.7;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.7; }
    50% { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

/* ==================== Couple Gallery – Editorial Tableau ==================== */
.couple-section {
    padding: 5.5rem 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(168, 213, 186, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(212, 165, 165, 0.06) 0%, transparent 50%),
        var(--cream);
    position: relative;
    overflow: hidden;
}

/* Decorative gold accent lines */
.gallery-accent-line {
    position: absolute;
    width: 1px;
    height: 120px;
    pointer-events: none;
    z-index: 1;
}

.gallery-accent-line-left {
    left: 8%;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(180deg, transparent, var(--gold-light), transparent);
    opacity: 0.35;
}

.gallery-accent-line-right {
    right: 8%;
    top: 45%;
    transform: translateY(-50%);
    background: linear-gradient(180deg, transparent, var(--mint), transparent);
    opacity: 0.25;
}

/* Section header */
.gallery-header {
    margin-bottom: 3rem;
}

/* Gallery grid – editorial asymmetric layout */
.couple-gallery {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
    height: 580px;
    position: relative;
}

.gallery-item {
    min-height: 0;
    overflow: visible;
    position: relative;
    /* Scroll reveal – initial hidden state */
    opacity: 0;
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Direction-based hidden states */
.gallery-item[data-reveal="left"] {
    transform: translateX(-40px) rotate(-1deg);
}

.gallery-item[data-reveal="right"] {
    transform: translateX(40px) rotate(0.5deg);
}

.gallery-item[data-reveal="up"] {
    transform: translateY(50px);
}

/* Revealed state */
.gallery-item.gallery-revealed {
    opacity: 1;
    transform: translateX(0) translateY(0) rotate(0deg);
}

.gallery-featured {
    grid-row: 1 / -1;
    grid-column: 1;
}

.gallery-landscape {
    grid-column: 2 / -1;
    grid-row: 1;
}

/* Subtle alternating rotations for editorial feel */
.gallery-item:nth-child(3) {
    transform-origin: center bottom;
}

.gallery-item:nth-child(3).gallery-revealed {
    transform: rotate(-0.6deg);
}

.gallery-item:nth-child(4).gallery-revealed {
    transform: rotate(0.4deg);
}

/* Frame styling */
.gallery-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(61, 61, 61, 0.08),
        0 2px 8px rgba(61, 61, 61, 0.04);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.gallery-frame:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow:
        0 20px 60px rgba(201, 162, 39, 0.18),
        0 8px 24px rgba(61, 61, 61, 0.06);
}

/* Gold border – refined inset frame */
.gallery-border {
    position: absolute;
    inset: 6px;
    border-radius: 3px;
    border: 1px solid var(--gold-light);
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-frame:hover .gallery-border {
    opacity: 0.6;
}

/* Shine / light sweep on hover */
.gallery-shine {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255, 255, 255, 0.12) 45%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.12) 55%,
        transparent 60%
    );
    transform: translateX(-120%);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-frame:hover .gallery-shine {
    transform: translateX(120%);
}

/* Image styling */
.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.88) brightness(1.02) contrast(1.02);
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scale(1.04);
}

/* Object-position per image for optimal face/subject framing */
.gallery-featured .gallery-img {
    object-position: center 25%;
}

.gallery-landscape .gallery-img {
    object-position: center 30%;
}

.gallery-item:nth-child(3) .gallery-img {
    object-position: center top;
}

.gallery-item:nth-child(4) .gallery-img {
    object-position: center 55%;
}

.gallery-frame:hover .gallery-img {
    filter: saturate(1.05) brightness(1.05) contrast(1);
}

/* Gallery subtitle poem */
.gallery-subtitle-poem {
    line-height: 1.9;
    font-size: 1.05rem;
}

.gallery-spoiler {
    font-style: italic;
    opacity: 0.7;
    font-size: 0.92em;
}

/* Caption below gallery */
.gallery-caption {
    text-align: center;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 300;
    font-size: 1.2rem;
    color: var(--gold-text);
    letter-spacing: 0.2em;
    margin-top: 2rem;
    opacity: 0.45;
}

/* ==================== Gallery Responsive ==================== */
@media (max-width: 768px) {
    .couple-section {
        padding: 3.5rem 0;
    }

    .gallery-accent-line {
        display: none;
    }

    .gallery-header {
        margin-bottom: 2rem;
    }

    .couple-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        height: auto;
        gap: 0.625rem;
    }

    .gallery-featured,
    .gallery-landscape {
        grid-row: auto;
        grid-column: auto;
    }

    .gallery-item {
        aspect-ratio: 3 / 4;
    }

    .gallery-item:nth-child(3).gallery-revealed,
    .gallery-item:nth-child(4).gallery-revealed {
        transform: none;
    }

    .gallery-frame {
        border-radius: 5px;
    }

    .gallery-border {
        inset: 4px;
    }

    .gallery-caption {
        font-size: 0.95rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .couple-gallery {
        gap: 0.375rem;
    }

    .gallery-frame {
        border-radius: 4px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gallery-frame,
    .gallery-img,
    .gallery-shine,
    .gallery-border,
    .gallery-item {
        transition: none !important;
    }

    .gallery-item {
        opacity: 1;
        transform: none !important;
    }

    .gallery-shine {
        display: none;
    }
}

/* ==================== Floral Dividers ==================== */
.section-divider-img {
    display: block;
    width: 200px;
    height: auto;
    margin: 0 auto 1.25rem;
    filter: drop-shadow(0 2px 6px rgba(168, 213, 186, 0.15));
}

/* ==================== Sections Common ==================== */
.section {
    padding: 5.5rem 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 300;
    color: var(--dark);
    margin: 0.5rem 0;
    letter-spacing: 0.03em;
}

.section-subtitle {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 300;
    color: var(--dusty-rose-dark);
    font-style: italic;
    letter-spacing: 0.06em;
    margin-top: 0.75rem;
}

/* Section Leaves */
.section-leaf {
    position: absolute;
    width: 180px;
    height: 360px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 150 300'%3E%3Cpath d='M75 300 Q75 250 70 200 Q65 150 75 100 Q85 50 75 0' stroke='%237FB891' stroke-width='2' fill='none'/%3E%3Cellipse cx='55' cy='50' rx='20' ry='12' fill='%23A8D5BA' opacity='0.7' transform='rotate(-20 55 50)'/%3E%3Cellipse cx='95' cy='80' rx='18' ry='10' fill='%23A8D5BA' opacity='0.6' transform='rotate(25 95 80)'/%3E%3Cellipse cx='50' cy='120' rx='22' ry='13' fill='%23A8D5BA' opacity='0.7' transform='rotate(-15 50 120)'/%3E%3Cellipse cx='100' cy='160' rx='20' ry='11' fill='%23A8D5BA' opacity='0.6' transform='rotate(20 100 160)'/%3E%3Cellipse cx='55' cy='200' rx='18' ry='10' fill='%23A8D5BA' opacity='0.5' transform='rotate(-25 55 200)'/%3E%3Cellipse cx='95' cy='240' rx='16' ry='9' fill='%23A8D5BA' opacity='0.5' transform='rotate(15 95 240)'/%3E%3C/svg%3E") center/contain no-repeat;
    pointer-events: none;
    opacity: 0.2;
}

.section-leaf-left {
    left: -50px;
    top: 50%;
    transform: translateY(-50%) rotate(15deg);
}

.section-leaf-right {
    right: -50px;
    top: 50%;
    transform: translateY(-50%) scaleX(-1) rotate(15deg);
}

/* ==================== Location Section ==================== */
.location-section {
    background: linear-gradient(180deg, var(--cream) 0%, var(--champagne-light) 30%, var(--cream) 100%);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.location-card {
    background: rgba(253, 250, 246, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(168, 213, 186, 0.25);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/wedding-beach.jpg') center/cover no-repeat;
    z-index: 0;
}

.location-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(230, 240, 232, 0.85);
    z-index: 0;
}

.location-card > * {
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

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

.location-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 1rem;
    background: var(--mint-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-icon svg {
    width: 28px;
    height: 28px;
    color: var(--cream);
}

.location-name {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.location-address {
    font-size: 1rem;
    color: var(--dark-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.location-features {
    margin-bottom: 1.5rem;
    text-align: left;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(168, 213, 186, 0.15);
}

.feature:last-child {
    border-bottom: none;
}

.feature-icon {
    color: var(--mint-dark);
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.feature span:last-child {
    font-size: 0.95rem;
    color: var(--dark);
}

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.location-link:hover {
    color: var(--gold-dark);
}

.location-link svg {
    width: 16px;
    height: 16px;
}

.location-map {
    border-radius: 16px;
    overflow: hidden;
    min-height: 400px;
    border: 1px solid rgba(168, 213, 186, 0.25);
    position: relative;
}

/* Map gold corner accents */
.map-frame-corner {
    position: absolute;
    width: 35px;
    height: 35px;
    border: 2px solid var(--gold);
    opacity: 0.5;
    z-index: 1;
}

.map-frame-tl { top: -3px; left: -3px; border-right: none; border-bottom: none; }
.map-frame-tr { top: -3px; right: -3px; border-left: none; border-bottom: none; }
.map-frame-bl { bottom: -3px; left: -3px; border-right: none; border-top: none; }
.map-frame-br { bottom: -3px; right: -3px; border-left: none; border-top: none; }

/* Soften map colors to match romantic mint theme */
.location-map .mapboxgl-canvas {
    filter: saturate(0.5) sepia(0.12) brightness(1.05) contrast(0.95);
}

/* Custom Mapbox Marker */
.custom-marker {
    cursor: pointer;
    filter: drop-shadow(0 3px 6px rgba(127, 184, 145, 0.4));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.custom-marker:hover {
    transform: scale(1.1) translateY(-3px);
    filter: drop-shadow(0 5px 10px rgba(127, 184, 145, 0.5));
}

/* Mapbox Popup Styling */
.theme-popup .mapboxgl-popup-content {
    background: var(--cream);
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(201, 162, 39, 0.25);
    overflow: hidden;
}

.theme-popup .mapboxgl-popup-tip {
    border-top-color: var(--cream);
}

.theme-popup .mapboxgl-popup-close-button {
    color: var(--gold);
    font-size: 1.2rem;
    padding: 4px 8px;
    right: 2px;
    top: 2px;
}

.theme-popup .mapboxgl-popup-close-button:hover {
    background: transparent;
    color: var(--gold-dark);
}

.theme-popup .popup-content {
    padding: 1rem 1.25rem;
}

.theme-popup .popup-content h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.theme-popup .popup-content p {
    font-size: 0.85rem;
    color: var(--dark-light);
    line-height: 1.4;
}

/* Mapbox Navigation Controls */
.mapboxgl-ctrl-group {
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid rgba(201, 162, 39, 0.2) !important;
}

.mapboxgl-ctrl-group button {
    background-color: var(--cream) !important;
    border-color: rgba(201, 162, 39, 0.15) !important;
}

.mapboxgl-ctrl-group button:hover {
    background-color: var(--champagne-light) !important;
}

.mapboxgl-ctrl-group button .mapboxgl-ctrl-icon {
    filter: sepia(0.3) hue-rotate(10deg);
}

/* Mapbox Attribution */
.mapboxgl-ctrl-attrib {
    background: rgba(253, 250, 246, 0.85) !important;
    border-radius: 6px;
    font-size: 0.7rem !important;
}

.mapboxgl-ctrl-attrib a {
    color: var(--gold) !important;
}

/* ==================== Accommodation Section ==================== */
.accommodation-section {
    background: linear-gradient(180deg, var(--cream) 0%, var(--champagne-light) 50%, var(--cream) 100%);
}

.travel-info-card {
    background: var(--white);
    padding: 2rem 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(201, 162, 39, 0.15);
    max-width: 800px;
    margin: 0 auto 2.5rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
    position: relative;
}

.travel-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
    border-radius: 1px;
}

.travel-info-card p {
    font-size: 0.95rem;
    color: var(--dark);
    line-height: 1.6;
}

/* Hotels Grid */
.hotels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hotel-card {
    background: var(--white);
    padding: 1.75rem;
    border-radius: 14px;
    border: 1px solid rgba(201, 162, 39, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.hotel-card.hotel-revealed:nth-child(1) { animation: hotelReveal 0.6s ease forwards 0s; }
.hotel-card.hotel-revealed:nth-child(2) { animation: hotelReveal 0.6s ease forwards 0.1s; }
.hotel-card.hotel-revealed:nth-child(3) { animation: hotelReveal 0.6s ease forwards 0.2s; }
.hotel-card.hotel-revealed:nth-child(4) { animation: hotelReveal 0.6s ease forwards 0.3s; }
.hotel-card.hotel-revealed:nth-child(5) { animation: hotelReveal 0.6s ease forwards 0.4s; }
.hotel-card.hotel-revealed:nth-child(6) { animation: hotelReveal 0.6s ease forwards 0.5s; }

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

.hotel-card.hotel-revealed:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.hotel-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 20px;
    margin-bottom: 1rem;
    color: var(--white);
    align-self: flex-start;
}

.hotel-card.hotel-recommended {
    background: linear-gradient(135deg, #fdfaf3 0%, var(--white) 100%);
    border-color: rgba(201, 162, 39, 0.25);
    position: relative;
    overflow: hidden;
}

.hotel-card.hotel-recommended::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
}

.hotel-card.hotel-recommended .hotel-category {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
}

.hotel-links {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

/* 1: Empfehlung – via .hotel-recommended */
/* 2: 10 perc – neutral/dunkel */
.hotel-card:nth-child(2) .hotel-category {
    background: linear-gradient(135deg, #4A4A4A 0%, #6A6A6A 100%);
}
/* 3: Luxus – gold */
.hotel-card:nth-child(3) .hotel-category {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
}
/* 4: Premium – dusty rose */
.hotel-card:nth-child(4) .hotel-category {
    background: linear-gradient(135deg, var(--dusty-rose-dark) 0%, var(--dusty-rose) 100%);
}
/* 5: Mittelklasse – mint */
.hotel-card:nth-child(5) .hotel-category {
    background: linear-gradient(135deg, var(--mint-dark) 0%, var(--mint) 100%);
}
/* 6: Budget – helles neutral */
.hotel-card:nth-child(6) .hotel-category {
    background: linear-gradient(135deg, #7A7A6E 0%, #9A9A8E 100%);
}

.hotel-card h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 0.75rem;
    letter-spacing: 0.01em;
}

.hotel-description {
    font-size: 0.925rem;
    color: var(--dark-light);
    line-height: 1.7;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.hotel-link {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hotel-link:hover {
    color: var(--gold-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.booking-note {
    text-align: center;
    padding: 1.25rem 1.5rem;
    background: var(--champagne-light);
    border-radius: 12px;
    border: 1px solid rgba(201, 162, 39, 0.08);
}

.booking-note p {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 300;
    color: var(--dark);
    font-style: italic;
    letter-spacing: 0.02em;
}

/* ==================== RSVP Section ==================== */
.rsvp-section {
    background: linear-gradient(180deg, var(--cream) 0%, var(--dusty-rose-light) 50%, var(--cream) 100%);
}

.rsvp-section .section-subtitle {
    color: var(--dusty-rose-dark);
}

.rsvp-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(201, 162, 39, 0.2);
    box-shadow:
        0 8px 40px rgba(212, 165, 165, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.rsvp-form::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--mint), var(--gold), var(--mint));
    border-radius: 2px;
}

.rsvp-form::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--mint), var(--gold));
    border-radius: 2px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label:not(.radio-label):not(.checkbox-label) {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--dark);
    background: var(--cream);
    border: 2px solid transparent;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23C9A227' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--mint);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(168, 213, 186, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--dark);
}

.radio-label input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.radio-custom {
    display: block;
    width: 22px;
    height: 22px;
    border: 2px solid var(--mint);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.radio-label input:checked + .radio-custom {
    border-color: var(--mint-dark);
    background: var(--mint-dark);
}

.radio-label input:focus-visible + .radio-custom {
    outline: 2px solid var(--mint-dark);
    outline-offset: 2px;
}

.radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 10px;
    height: 10px;
    background: var(--white);
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.radio-label input:checked + .radio-custom::after {
    transform: translate(-50%, -50%) scale(1);
}

.guest-details {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--dusty-rose-light);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.4s ease, padding 0.4s ease, margin 0.4s ease;
}

.guest-details.visible {
    max-height: 500px;
    opacity: 1;
}

.guest-details.hidden {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    padding-top: 0;
    border-top-color: transparent;
}

/* Consent Checkbox */
.consent-group { margin-top: 0.5rem; }

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--dark-light);
    position: relative;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-custom {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    border: 2px solid var(--cream-dark);
    border-radius: 4px;
    background: var(--white);
    transition: all 0.3s ease;
    position: relative;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--mint-dark);
    border-color: var(--mint-dark);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 11px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label input[type="checkbox"]:focus-visible + .checkbox-custom {
    box-shadow: 0 0 0 3px rgba(127, 184, 145, 0.3);
}

.checkbox-label a {
    color: var(--mint-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.checkbox-label a:hover {
    color: var(--gold);
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.25rem 2rem;
    margin-top: 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--white);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(201, 162, 39, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(201, 162, 39, 0.3);
}

.submit-btn svg {
    width: 20px;
    height: 20px;
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-error {
    background: #fef2f2;
    border: 1px solid var(--dusty-rose);
    color: var(--dusty-rose-dark);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
    animation: fadeInUp 0.3s ease;
}

/* RSVP Success Message */
.rsvp-success {
    text-align: center;
    padding: 2rem;
    animation: fadeInUp 0.6s ease;
}

.rsvp-success .success-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--mint) 0%, var(--mint-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rsvp-success .success-icon svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

.rsvp-success h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.rsvp-success p {
    color: var(--dark-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* ==================== Contact Section ==================== */
.contact-section {
    background: var(--cream);
    position: relative;
    padding-bottom: 120px;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 90px;
    background: var(--mint-dark);
    clip-path: ellipse(60% 100% at 50% 100%);
}

.contact-section .section-subtitle {
    color: var(--dusty-rose-dark);
}

.contact-section .cta-button {
    background: linear-gradient(135deg, var(--mint-dark) 0%, var(--mint) 100%);
    box-shadow: 0 4px 15px rgba(127, 184, 145, 0.3);
}

.contact-section .cta-button:hover {
    box-shadow: 0 6px 20px rgba(127, 184, 145, 0.4);
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 1rem 0 2rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--mint) 0%, var(--mint-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.contact-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--dark);
    line-height: 1.9;
    margin-bottom: 2rem;
    letter-spacing: 0.01em;
}

/* ==================== Footer ==================== */
.footer {
    background: linear-gradient(180deg, var(--mint-dark) 0%, #6ea882 100%);
    color: var(--cream);
    padding: 4rem 0 2.5rem;
    position: relative;
    overflow: clip;
    overflow-clip-margin: 150px 0 0 0;
    clip-path: inset(-150px -30px 0 -30px);
    margin-top: -1px;
}

.footer-fireflies {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.7;
}

.footer-eucalyptus {
    position: absolute;
    width: 220px;
    height: 420px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 380'%3E%3Cdefs%3E%3ClinearGradient id='leafG1' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0%25' stop-color='%23d4eadb'/%3E%3Cstop offset='100%25' stop-color='%23a8d5ba'/%3E%3C/linearGradient%3E%3ClinearGradient id='leafG2' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0%25' stop-color='%23c8e6d0'/%3E%3Cstop offset='100%25' stop-color='%2396c9a6'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M90 380 Q88 340 85 300 Q80 250 82 200 Q84 150 88 100 Q92 50 90 10' stroke='%23b5d8bf' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3Cg opacity='0.55'%3E%3Cpath d='M85 55 Q60 35 42 28 Q55 22 75 40 Z' fill='url(%23leafG1)'/%3E%3Cpath d='M65 40 L56 32' stroke='%23b5d8bf' stroke-width='0.8' fill='none'/%3E%3C/g%3E%3Cg opacity='0.5'%3E%3Cpath d='M88 70 Q112 52 130 48 Q118 58 98 68 Z' fill='url(%23leafG2)'/%3E%3Cpath d='M108 58 L118 52' stroke='%23b5d8bf' stroke-width='0.8' fill='none'/%3E%3C/g%3E%3Cg opacity='0.6'%3E%3Cpath d='M84 105 Q56 82 38 72 Q54 70 78 92 Z' fill='url(%23leafG1)'/%3E%3Cpath d='M62 88 L48 78' stroke='%23b5d8bf' stroke-width='0.8' fill='none'/%3E%3C/g%3E%3Cg opacity='0.55'%3E%3Cpath d='M86 125 Q114 105 136 100 Q120 112 96 122 Z' fill='url(%23leafG2)'/%3E%3Cpath d='M112 112 L124 105' stroke='%23b5d8bf' stroke-width='0.8' fill='none'/%3E%3C/g%3E%3Cg opacity='0.6'%3E%3Cpath d='M83 160 Q52 138 32 128 Q50 124 76 148 Z' fill='url(%23leafG1)'/%3E%3Cpath d='M58 144 L42 134' stroke='%23b5d8bf' stroke-width='0.8' fill='none'/%3E%3C/g%3E%3Cg opacity='0.5'%3E%3Cpath d='M84 180 Q110 158 132 152 Q118 164 94 176 Z' fill='url(%23leafG2)'/%3E%3Cpath d='M108 166 L122 158' stroke='%23b5d8bf' stroke-width='0.8' fill='none'/%3E%3C/g%3E%3Cg opacity='0.5'%3E%3Cpath d='M82 215 Q55 196 38 188 Q52 184 76 204 Z' fill='url(%23leafG1)'/%3E%3Cpath d='M60 200 L46 192' stroke='%23b5d8bf' stroke-width='0.8' fill='none'/%3E%3C/g%3E%3Cg opacity='0.45'%3E%3Cpath d='M84 235 Q108 218 126 214 Q114 224 94 232 Z' fill='url(%23leafG2)'/%3E%3Cpath d='M106 224 L118 218' stroke='%23b5d8bf' stroke-width='0.8' fill='none'/%3E%3C/g%3E%3Cg opacity='0.45'%3E%3Cpath d='M83 270 Q58 254 44 248 Q56 244 78 260 Z' fill='url(%23leafG1)'/%3E%3C/g%3E%3Cg opacity='0.4'%3E%3Cpath d='M85 295 Q105 280 120 276 Q110 286 92 292 Z' fill='url(%23leafG2)'/%3E%3C/g%3E%3Cg opacity='0.35'%3E%3Cpath d='M86 325 Q66 312 54 308 Q64 304 80 316 Z' fill='url(%23leafG1)'/%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat;
    pointer-events: none;
    opacity: 0.45;
}

.footer-eucalyptus-left {
    left: -20px;
    bottom: -30px;
    top: -140px;
    height: auto;
    transform: rotate(12deg);
}

.footer-eucalyptus-right {
    right: -20px;
    bottom: -30px;
    top: -140px;
    height: auto;
    transform: scaleX(-1) rotate(12deg);
}

.footer-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-divider {
    margin-bottom: 1.5rem;
}

.footer-divider .divider-line {
    background: linear-gradient(90deg, transparent, var(--cream), transparent);
}

.footer-divider .divider-leaf {
    color: var(--cream);
    opacity: 0.7;
}

.footer-names {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.footer-date {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 1rem;
    letter-spacing: 0.08em;
}

.footer-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 300;
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.7;
    letter-spacing: 0.03em;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-links span {
    opacity: 0.5;
}

.footer-copyright {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ==================== Scroll Progress Bar ==================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--mint), var(--gold));
    z-index: 99;
    transition: none;
    box-shadow: 0 0 8px rgba(201, 162, 39, 0.3);
}

/* ==================== Hero Parallax Background ==================== */
.hero-bg {
    position: absolute;
    inset: 0;
    height: 130%;
    background: url('../images/hero-bg2.avif') center/cover no-repeat;
}

/* ==================== Section Reveal Refinements ==================== */
/* Floral divider reveal */
.section-divider-img {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.1s;
}

.section.visible .section-divider-img,
.couple-section.section-revealed .section-divider-img {
    opacity: 0.8;
    transform: scale(1);
}

/* Section title with growing underline */
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.2s;
    border-radius: 1px;
}

.section.visible .section-title::after,
.couple-section.section-revealed .section-title::after {
    width: 60px;
}

/* Section subtitle delayed fade-in */
.section-subtitle {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: 0.5s;
}

.section.visible .section-subtitle,
.couple-section.section-revealed .section-subtitle {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== Animations ==================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

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

/* Language switch fade */
[data-i18n],
[data-i18n-html] {
    transition: opacity 0.2s ease;
}

/* Scroll animations for sections */
.section.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

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

/* ==================== Reduced Motion ==================== */
@media (prefers-reduced-motion: reduce) {
    .fade-in {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .section.fade-in {
        opacity: 1;
        transform: none;
        transition: none;
        will-change: auto;
    }

    .petals {
        display: none;
    }

    .scroll-indicator {
        animation: none;
    }

    .scroll-arrow {
        animation: none;
    }

    .cta-button,
    .hotel-card,
    .submit-btn,
    .custom-marker,
    .location-card,
    .countdown-item {
        transition: none;
    }

    .save-the-date {
        animation: none;
    }

    .hotel-card {
        opacity: 1;
        transform: none;
    }

    .countdown-number {
        transition: none;
    }

    .ampersand {
        animation: none;
        -webkit-text-fill-color: var(--gold-text);
    }

    .hero-glow {
        animation: none;
        opacity: 0.7;
    }

    .footer-fireflies {
        display: none;
    }

    [data-i18n] {
        transition: none !important;
    }

    html {
        scroll-behavior: auto;
    }

    /* Disable new animations */
    .hero-bg {
        will-change: auto;
    }

    .section-divider-img {
        opacity: 0.8;
        transform: none;
        transition: none;
    }

    .section-title::after {
        width: 60px;
        transition: none;
    }

    .section-subtitle {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .couple-section .section-divider-img {
        opacity: 0.8;
    }

    .scroll-progress {
        display: none;
    }
}

/* ==================== Responsive Design ==================== */
@media (max-width: 1024px) {
    .location-content {
        grid-template-columns: 1fr;
    }

    .hotels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1280px) and (min-width: 1025px) {
    .hotels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.3);
        z-index: 95;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

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

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(253, 250, 246, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: center;
        padding: 1.5rem 2rem 2rem;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(201, 162, 39, 0.2);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(201, 162, 39, 0.1);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 0.85rem 0;
        font-size: 1rem;
        letter-spacing: 0.1em;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-lang {
        display: flex;
        margin-right: 0.5rem;
    }

    .nav-lang .lang-btn {
        min-height: 44px;
        min-width: 44px;
        padding: 0.5rem 0.9rem;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .names .ampersand {
        display: block;
        margin: 0.1em 0;
    }

    .ornament {
        width: 150px;
        height: 45px;
    }

    .countdown-item {
        min-width: 0;
        padding: 0.5rem 0.875rem;
    }

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

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

    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 0.85rem;
    }

    .section {
        padding: 3.5rem 0;
    }

    .section-leaf {
        display: none;
    }

    .hotels-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rsvp-form {
        padding: 2rem;
    }

    .contact-section {
        padding-bottom: 80px;
    }

    .contact-section::after {
        height: 60px;
    }

    .footer {
        padding: 2.5rem 0 2rem;
    }

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

    .footer-tagline {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .countdown {
        gap: 0.5rem;
    }

    .countdown-item {
        padding: 0.4rem 0.625rem;
        border-radius: 10px;
    }

    .countdown-separator {
        display: none;
    }

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

    .countdown-label {
        font-size: 0.65rem;
        letter-spacing: 0.05em;
    }

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

    .rsvp-form {
        padding: 1.5rem;
    }

    .couple-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        aspect-ratio: 4 / 3;
    }

    .contact-section {
        padding-bottom: 60px;
    }

    .contact-section::after {
        height: 45px;
    }

    .footer {
        padding: 2rem 0 1.5rem;
    }

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

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

    .footer-tagline {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .footer-eucalyptus {
        display: none;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-links span {
        display: none;
    }
}
