﻿@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600;700&family=Montserrat:wght@300;400;600&family=Great+Vibes&display=swap');

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

:root {
    --gold: #c9a961;
    --gold-light: #e8d7b8;
    --gold-dark: #9f8148;
    --navy: #1a2332;
    --navy-mid: var(--navy-mid);
    --footer-bg: var(--footer-bg);
    --cream: #faf8f5;
    --white: #ffffff;
    --rose: #d4a5a5;
    --gold-rgb: 201, 169, 97;
    --navy-rgb: 26, 35, 50;
    --cream-rgb: 250, 248, 245;
    --rose-rgb: 212, 165, 165;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--cream);
    color: var(--navy);
    overflow-x: hidden;
    line-height: 1.6;
}

.page {
    display: none;
    min-height: 100vh;
}

.page.active {
    display: block;
    animation: pageEnter 1s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Enhanced Navigation */
nav, #navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(var(--cream-rgb), 0.98);
    backdrop-filter: blur(20px);
    padding: 1.8rem 8%;
    z-index: 1000;
    border-bottom: 1px solid rgba(var(--gold-rgb), 0.2);
    transition: all 0.3s ease;
}

nav.scrolled, #navbar.scrolled {
    padding: 1.2rem 8%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

nav a {
    text-decoration: none;
    color: var(--navy);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    transition: color 0.4s ease;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav a:hover {
    color: var(--gold);
}

nav a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* Premium Carousel */
.carousel-container {
    position: relative;
    height: 100vh;
    margin-top: 0;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: cover;
    background-position: center;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--navy-rgb), 0.5), rgba(var(--gold-rgb), 0.3));
}

.carousel-slide.active {
    opacity: 1;
    animation: zoomIn 15s ease-out;
}

@keyframes zoomIn {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

.carousel-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    z-index: 2;
    padding: 2rem;
}

.carousel-names {
    font-family: 'Great Vibes', cursive;
    font-size: 7rem;
    font-weight: 400;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.5s ease;
    letter-spacing: 2px;
}

.carousel-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, white, transparent);
    margin: 1.5rem 0;
    animation: fadeInUp 1.7s ease;
}

.carousel-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.9s ease;
    max-width: 800px;
    font-style: italic;
}

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

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: white;
    font-size: 1.5rem;
}

.carousel-arrow:hover {
    background: rgba(var(--gold-rgb), 0.8);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.left {
    left: 3rem;
}

.carousel-arrow.right {
    right: 3rem;
}

.carousel-indicators {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.carousel-dot.active {
    background: var(--gold);
    transform: scale(1.4);
    border-color: white;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 10px;
    background: white;
    border-radius: 3px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Luxury Date Section */
.date-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 8rem 8%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.date-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(var(--gold-rgb), 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: movePattern 30s linear infinite;
}

@keyframes movePattern {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

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

.save-date {
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 2rem;
}

.big-date {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.date-divider {
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 2rem auto;
}

.date-time {
    font-size: 1.5rem;
    color: var(--gold-light);
    letter-spacing: 2px;
}

/* Event Cards */
.event-section {
    padding: 8rem 8%;
    background: var(--cream);
}

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

.section-subtitle {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.event-card {
    background: white;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), var(--rose));
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.event-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.event-card:hover::before {
    transform: scaleX(1);
}

.event-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(var(--gold-rgb), 0.3);
}

.event-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.event-detail {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.event-detail-icon {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.event-detail-text {
    flex: 1;
}

.event-detail-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 0.3rem;
}

.event-detail-value {
    font-size: 1.1rem;
    color: var(--navy);
    font-weight: 500;
}

/* Timeline Luxo */
.timeline-section {
    padding: 8rem 8%;
    background: linear-gradient(to bottom, white 0%, var(--cream) 100%);
}

.timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6rem;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 45%;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    border: 10px solid transparent;
    border-left-color: white;
}

.timeline-item:nth-child(even) .timeline-content::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    border: 10px solid transparent;
    border-right-color: white;
}

.timeline-date {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--gold);
    border-radius: 50%;
    border: 5px solid var(--cream);
    box-shadow: 0 0 0 5px rgba(var(--gold-rgb), 0.2);
    z-index: 10;
}

/* CTA Premium */
.cta-section {
    padding: 8rem 8%;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(var(--gold-rgb), 0.1), transparent);
    border-radius: 50%;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    padding: 4rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(var(--gold-rgb), 0.2), transparent);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.cta-card:hover {
    transform: translateY(-15px);
    border-color: var(--gold);
    box-shadow: 0 30px 80px rgba(var(--gold-rgb), 0.3);
}

.cta-card:hover::before {
    transform: scale(1);
}

.cta-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    filter: grayscale(0);
}

.cta-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-btn {
    background: var(--gold);
    color: var(--navy);
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 50px;
    transition: transform 0.4s ease;
    z-index: -1;
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(var(--gold-rgb), 0.5);
}

.cta-btn:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

/* Gift Page Premium */
.gifts-hero {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    padding: 10rem 8% 6rem;
    text-align: center;
    color: white;
    margin-top: 100px;
}

.gifts-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.gifts-hero p {
    font-size: 1.3rem;
    color: var(--gold-light);
    max-width: 700px;
    margin: 0 auto;
}

.gifts-container {
    padding: 6rem 8%;
    background: var(--cream);
}

.gift-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gift-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.gift-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--rose));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.gift-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.gift-card:hover::before {
    transform: scaleX(1);
}

.gift-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.gift-content {
    padding: 2.5rem;
}

.gift-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 600;
}

.gift-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.gift-price {
    font-size: 2rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.gift-btn {
    width: 100%;
    background: var(--navy);
    color: white;
    padding: 1.2rem;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gift-btn:hover {
    background: var(--gold);
    color: var(--navy);
    transform: scale(1.02);
}

.gift-btn.selected {
    background: #4a5568;
    cursor: not-allowed;
    opacity: 0.7;
}

/* RSVP Premium */
.rsvp-hero {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    padding: 10rem 8% 6rem;
    text-align: center;
    color: white;
    margin-top: 100px;
}

.rsvp-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.rsvp-hero p {
    font-size: 1.3rem;
    color: var(--gold-light);
    max-width: 700px;
    margin: 0 auto;
}

.rsvp-container {
    padding: 6rem 8%;
    background: var(--cream);
}

.rsvp-form {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    border-radius: 25px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--navy);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: white;
    box-shadow: 0 0 0 4px rgba(var(--gold-rgb), 0.1);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white;
    padding: 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(var(--gold-rgb), 0.4);
}

/* Confirmation Premium */
.confirmation-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    padding: 4rem 8%;
    text-align: center;
    margin-top: 100px;
}

.confirmation-content {
    max-width: 700px;
    color: white;
}

.confirmation-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin: 0 auto 3rem;
    animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(var(--gold-rgb), 0.4);
}

@keyframes scaleIn {
    from {
        transform: scale(0) rotate(-180deg);
    }
    to {
        transform: scale(1) rotate(0);
    }
}

.confirmation-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.confirmation-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--gold-light);
    margin-bottom: 3rem;
}

/* Countdown Ribbon */
.countdown-section {
    position: relative;
    padding: 5rem 8%;
    background: linear-gradient(135deg, rgba(var(--gold-rgb), 0.25), rgba(255, 255, 255, 0));
    overflow: hidden;
}

.countdown-section::before,
.countdown-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--gold-rgb), 0.18), transparent 65%);
    z-index: 0;
}

.countdown-section::before {
    top: -150px;
    left: -100px;
}

.countdown-section::after {
    bottom: -180px;
    right: -120px;
}

.countdown-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.countdown-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.countdown-subtitle {
    font-size: 1.05rem;
    color: #5c5c5c;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    gap: 1.5rem;
}

.countdown-item {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 18px;
    box-shadow: 0 15px 45px rgba(var(--navy-rgb), 0.12);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.countdown-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--gold-rgb), 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.countdown-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(var(--navy-rgb), 0.15);
}

.countdown-item:hover::before {
    opacity: 1;
}

.countdown-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--navy);
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 0.5rem;
}

.countdown-label {
    color: var(--gold-dark);
    letter-spacing: 2px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* Highlight Metrics */
.stats-section {
    padding: 8rem 8%;
    background: linear-gradient(135deg, rgba(var(--navy-rgb), 0.95), rgba(var(--navy-rgb), 0.82)), url('https://images.unsplash.com/photo-1520854221050-0f4caff449fb?w=2000') center/cover fixed;
    color: white;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(var(--navy-rgb), 0.6);
}

.stats-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.stats-intro {
    font-size: 1.05rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.stats-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.8rem;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.stats-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 22px;
    padding: 3rem 2rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.stats-card:hover {
    transform: translateY(-12px);
    border-color: var(--gold);
}

.stats-number {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
}

.stats-label {
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.stats-description {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

/* Invitation Section */
.invitation-section {
    padding: 8rem 8%;
    background: var(--cream);
}

.invitation-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.invitation-copy {
    padding: 3rem 0;
}

.invitation-overline {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    font-weight: 600;
}

.invitation-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.invitation-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.invitation-signature {
    margin-top: 3rem;
}

.invitation-signature span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--navy);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.invitation-signature small {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 400;
}

.invitation-card {
    background: white;
    border-radius: 25px;
    padding: 4rem;
    box-shadow: 0 25px 80px rgba(var(--navy-rgb), 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.invitation-monogram {
    font-family: 'Great Vibes', cursive;
    font-size: 5rem;
    color: var(--gold);
    margin-bottom: 3rem;
    line-height: 1;
}

.invitation-details {
    margin-bottom: 2rem;
}

.invitation-details h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.invitation-details p {
    font-size: 1.1rem;
    color: var(--gold-dark);
    letter-spacing: 1px;
}

.invitation-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 2.5rem auto;
}

.invitation-schedule {
    margin-top: 2rem;
    font-size: 1.05rem;
    color: var(--navy);
    line-height: 1.6;
}

.invitation-schedule span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Quote highlight */
.quote-section {
    padding: 7rem 8%;
    background: var(--cream);
}

.quote-frame {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 28px;
    padding: 4rem;
    box-shadow: 0 30px 90px rgba(var(--navy-rgb), 0.1);
    position: relative;
    overflow: hidden;
}

.quote-frame::before {
    content: 'â€œ';
    position: absolute;
    top: -60px;
    left: 40px;
    font-size: 10rem;
    color: rgba(var(--gold-rgb), 0.2);
    font-family: 'Great Vibes', cursive;
}

.quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    color: var(--navy);
    line-height: 1.4;
    text-align: center;
    margin-bottom: 2rem;
}

.quote-author {
    text-align: center;
    font-size: 1.1rem;
    color: #777;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Wedding Party */
.party-section {
    padding: 8rem 8%;
    background: white;
}

.party-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.party-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(250, 248, 245, 0.9));
    border-radius: 24px;
    padding: 3rem 2rem 2.5rem;
    box-shadow: 0 22px 65px rgba(var(--navy-rgb), 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.party-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--gold-rgb), 0.18), transparent 70%);
}

.party-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 90px rgba(var(--navy-rgb), 0.15);
}

.party-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 18px 40px rgba(var(--gold-rgb), 0.35);
}

.party-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.party-role {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--gold-dark);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.party-quote {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

/* Experience Section */
.experience-section {
    padding: 8rem 8%;
    background: linear-gradient(180deg, var(--cream), white);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1150px;
    margin: 0 auto;
}

.experience-card {
    background: white;
    border-radius: 22px;
    padding: 3rem 2.5rem;
    box-shadow: 0 25px 70px rgba(var(--navy-rgb), 0.12);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.experience-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--gold-rgb), 0.18), transparent 65%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.experience-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 90px rgba(var(--navy-rgb), 0.15);
}

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

.experience-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.experience-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.experience-card p,
.experience-card ul {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

.experience-card ul {
    margin-top: 1rem;
    padding-left: 1.2rem;
}

.experience-card ul li {
    margin-bottom: 0.5rem;
}

/* Gallery */
.gallery-section {
    padding: 8rem 5% 6rem;
    background: linear-gradient(160deg, rgba(var(--navy-rgb), 0.95), rgba(var(--navy-rgb), 0.82));
    color: white;
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://www.transparenttextures.com/patterns/asfalt-dark.png');
    opacity: 0.3;
}

.gallery-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transform: translateY(40px);
    opacity: 0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item::after {
    content: 'Ver mais';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--navy-rgb), 0.55);
    color: white;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-item:hover::after {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    z-index: 2000;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 80%;
    max-height: 80%;
    position: relative;
    text-align: center;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
}

.lightbox-caption {
    margin-top: 1.5rem;
    color: white;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    letter-spacing: 1px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: -40px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: var(--gold);
    color: var(--navy);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.25);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: var(--gold);
    color: var(--navy);
}

.lightbox-nav.prev {
    left: -70px;
}

.lightbox-nav.next {
    right: -70px;
}

/* Travel Information */
.travel-section {
    padding: 8rem 8%;
    background: var(--cream);
}

.travel-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.travel-card {
    background: white;
    border-radius: 22px;
    padding: 3rem;
    box-shadow: 0 25px 70px rgba(var(--navy-rgb), 0.1);
    position: relative;
    overflow: hidden;
}

.travel-card::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--gold-rgb), 0.2), transparent 70%);
}

.travel-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.travel-card p,
.travel-card ul {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

.travel-card ul {
    margin-top: 1.5rem;
    padding-left: 1.2rem;
}

.travel-card ul li {
    margin-bottom: 0.6rem;
}

.map-wrapper {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(var(--navy-rgb), 0.12);
    min-height: 360px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.2) saturate(1.2);
}

/* Floating Controls */
.floating-rsvp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1500;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white;
    padding: 1.1rem 1.8rem;
    border-radius: 50px;
    border: none;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    box-shadow: 0 20px 50px rgba(var(--gold-rgb), 0.45);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-rsvp:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(var(--gold-rgb), 0.55);
}

.floating-audio {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: rgba(var(--navy-rgb), 0.85);
    padding: 1rem 1.4rem;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    color: white;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    z-index: 1500;
}

.floating-audio span {
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.floating-audio audio {
    height: 32px;
}

footer {
    background: var(--footer-bg);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 8% 2.5rem;
    text-align: center;
}

.footer-title {
    font-family: 'Great Vibes', cursive;
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-note {
    font-size: 0.85rem;
    letter-spacing: 2px;
}

/* Responsive */
@media (max-width: 968px) {
    nav ul {
        gap: 1.5rem;
    }

    nav a {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .carousel-names {
        font-size: 4rem;
    }

    .carousel-description {
        font-size: 1.3rem;
    }

    .big-date {
        font-size: 4rem;
    }

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

    .event-grid,
    .cta-grid {
        grid-template-columns: 1fr;
    }

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

    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 60px;
    }

    .timeline-content {
        width: 100%;
    }

    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        display: none;
    }

    .timeline-marker {
        left: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .carousel-arrow {
        width: 50px;
        height: 50px;
    }

    .carousel-arrow.left {
        left: 1rem;
    }

    .carousel-arrow.right {
        right: 1rem;
    }

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

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

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

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

    .lightbox-nav.prev {
        left: 10px;
    }

    .lightbox-nav.next {
        right: 10px;
    }

    .lightbox-close {
        top: -30px;
        right: 10px;
    }

    .floating-rsvp,
    .floating-audio {
        bottom: 20px;
    }

    .floating-audio {
        left: 20px;
    }

    .floating-rsvp {
        right: 20px;
    }

    .quote-frame {
        padding: 3rem 2rem;
    }

    .quote-text {
        font-size: 1.8rem;
    }

    .invitation-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .invitation-monogram {
        font-size: 4rem;
    }

    .invitation-details h3 {
        font-size: 2rem;
    }
}
