* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gatsby-gold: #D4AF37;
    --gatsby-black: #0D0D0D;
    --gatsby-cream: #F5F1E8;
    --gatsby-emerald: #1B4D3E;
    --dark-bg: #000000;
    --dark-card: #1A1A1A;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #D4AF37 100%);
    --emerald-gradient: linear-gradient(135deg, #1B4D3E 0%, #2D6A4F 100%);
    --luxury-shadow: 0 10px 50px rgba(212, 175, 55, 0.3);
    --text-gold: #D4AF37;
}

body {
    font-family: 'Raleway', sans-serif;
    background: var(--dark-bg);
    color: var(--gatsby-cream);
    overflow-x: hidden;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, #1A1A1A 0%, #000000 100%);
    overflow: hidden;
}

.art-deco-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(212, 175, 55, 0.03) 50px, rgba(212, 175, 55, 0.03) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(212, 175, 55, 0.03) 50px, rgba(212, 175, 55, 0.03) 51px);
    opacity: 0.5;
}

.champagne-bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bubble {
    position: absolute;
    bottom: -50px;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    animation: riseBubble linear infinite;
}

@keyframes riseBubble {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-120vh) scale(0.3);
        opacity: 0;
    }
}

.spotlight {
    position: absolute;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: spotlight 6s ease-in-out infinite;
}

.spotlight-left {
    left: 0;
    transform-origin: left center;
}

.spotlight-right {
    right: 0;
    transform-origin: right center;
    animation-delay: -3s;
}

@keyframes spotlight {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 60px 20px;
    max-width: 900px;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vintage-ornament {
    width: 200px;
    height: 40px;
    margin: 0 auto 30px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 40"><path d="M0,20 Q50,0 100,20 Q150,40 200,20" stroke="%23D4AF37" stroke-width="1" fill="none"/><path d="M0,20 Q50,40 100,20 Q150,0 200,20" stroke="%23D4AF37" stroke-width="1" fill="none"/><circle cx="100" cy="20" r="5" fill="%23D4AF37"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.vintage-ornament.bottom {
    margin: 30px auto 60px;
}

.gatsby-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.logo-line {
    width: 100px;
    height: 2px;
    background: var(--gold-gradient);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 8px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 7vw, 72px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
}

.title-pre {
    display: block;
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 400;
    color: var(--gatsby-cream);
    margin-bottom: 10px;
}

.title-highlight {
    display: block;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: rgba(245, 241, 232, 0.8);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
    font-weight: 300;
}

.event-info-bar {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
}

.info-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gatsby-gold);
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.info-badge.golden {
    background: rgba(212, 175, 55, 0.2);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.badge-icon {
    font-size: 20px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 50px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--gatsby-black);
    box-shadow: var(--luxury-shadow);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 60px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--gatsby-gold);
    border: 2px solid var(--gatsby-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.btn-large {
    padding: 22px 50px;
    font-size: 18px;
}

.btn-icon {
    font-size: 22px;
}

.hero-features {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

.feature-pill {
    padding: 10px 25px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 2px;
    font-size: 14px;
    backdrop-filter: blur(10px);
    color: rgba(245, 241, 232, 0.9);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(212, 175, 55, 0.7);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--gatsby-gold);
    border-bottom: 2px solid var(--gatsby-gold);
    transform: rotate(45deg);
    margin: 10px auto;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
    40% { transform: rotate(45deg) translateY(10px); }
    60% { transform: rotate(45deg) translateY(5px); }
}

/* Dress Code Section */
.dress-code {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, #000000 0%, #1A1A1A 50%, #000000 100%);
    overflow: hidden;
}

.gatsby-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(212, 175, 55, 0.02) 20px, rgba(212, 175, 55, 0.02) 21px),
        repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(212, 175, 55, 0.02) 20px, rgba(212, 175, 55, 0.02) 21px);
    opacity: 0.5;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-ornament {
    width: 150px;
    height: 30px;
    margin: 0 auto 20px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 30"><path d="M0,15 L50,15 M100,15 L150,15" stroke="%23D4AF37" stroke-width="1"/><circle cx="75" cy="15" r="8" fill="none" stroke="%23D4AF37" stroke-width="1"/><circle cx="75" cy="15" r="4" fill="%23D4AF37"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.section-label {
    display: inline-block;
    padding: 8px 25px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gatsby-gold);
    border-radius: 2px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: var(--gatsby-gold);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 7vw, 64px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--gatsby-cream);
}

.section-subtitle {
    font-size: 18px;
    color: rgba(245, 241, 232, 0.7);
    font-weight: 300;
    font-style: italic;
}

.highlight {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dress-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 60px;
}

.dress-card {
    position: relative;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(13, 13, 13, 0.9) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 50px 40px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.dress-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.dress-card:hover::before {
    transform: scaleX(1);
}

.dress-card:hover {
    transform: translateY(-10px);
    border-color: var(--gatsby-gold);
    box-shadow: var(--luxury-shadow);
}

.dress-card.ladies {
    border-color: rgba(212, 175, 55, 0.5);
}

.dress-card.gents {
    border-color: rgba(212, 175, 55, 0.5);
}

.card-icon {
    font-size: 72px;
    margin-bottom: 25px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.dress-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--gatsby-gold);
    margin-bottom: 25px;
}

.dress-list {
    list-style: none;
    text-align: left;
    margin: 0 auto 25px;
    max-width: 280px;
}

.dress-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    font-size: 16px;
    color: rgba(245, 241, 232, 0.9);
    transition: all 0.3s ease;
}

.dress-list li:hover {
    color: var(--gatsby-gold);
    padding-left: 10px;
}

.dress-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gold-gradient);
    color: var(--gatsby-black);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
}

.dress-note {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px 40px;
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid var(--gatsby-gold);
    border-right: 4px solid var(--gatsby-gold);
    text-align: center;
}

.note-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.note-text {
    font-size: 20px;
    font-weight: 500;
    color: var(--gatsby-cream);
    line-height: 1.6;
}

/* Atmosphere Section */
.atmosphere {
    padding: 120px 0;
    background: radial-gradient(ellipse at center, #1A1A1A 0%, #000000 100%);
}

.atmosphere-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.atmosphere-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
}

.atmosphere-card:hover {
    transform: translateY(-8px);
    border-color: var(--gatsby-gold);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.card-color {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 3px solid var(--gatsby-gold);
}

.atmosphere-card.black .card-color {
    background: #0D0D0D;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

.atmosphere-card.gold .card-color {
    background: var(--gold-gradient);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.atmosphere-card.cream .card-color {
    background: #F5F1E8;
    box-shadow: 0 0 30px rgba(245, 241, 232, 0.4);
}

.atmosphere-card.emerald .card-color {
    background: #1B4D3E;
    box-shadow: 0 0 30px rgba(27, 77, 62, 0.6);
}

.atmosphere-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--gatsby-gold);
    margin-bottom: 10px;
}

.atmosphere-card p {
    font-size: 14px;
    color: rgba(245, 241, 232, 0.7);
}

.atmosphere-quote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 40px 60px;
}

.quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 120px;
    color: var(--gatsby-gold);
    opacity: 0.3;
    position: absolute;
    line-height: 0;
}

.quote-mark:first-child {
    top: 40px;
    left: 0;
}

.quote-mark:last-child {
    bottom: 0;
    right: 0;
    transform: rotate(180deg);
}

.atmosphere-quote p {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-style: italic;
    color: var(--gatsby-cream);
    position: relative;
    z-index: 1;
}

/* Music Section */
.music {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, #000000 0%, #1A1A1A 50%, #000000 100%);
    overflow: hidden;
}

.vinyl-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 13, 13, 0.8) 0%, rgba(13, 13, 13, 0.5) 40%, transparent 70%);
    border: 2px solid rgba(212, 175, 55, 0.1);
    animation: rotate 60s linear infinite;
    opacity: 0.3;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.music-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.music-card {
    position: relative;
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 50px 30px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
}

.music-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.music-card:hover::after {
    width: 300px;
    height: 300px;
}

.music-card:hover {
    transform: translateY(-10px);
    border-color: var(--gatsby-gold);
    box-shadow: var(--luxury-shadow);
}

.music-card.featured {
    border-color: var(--gatsby-gold);
    background: rgba(212, 175, 55, 0.05);
}

.music-icon {
    font-size: 64px;
    margin-bottom: 25px;
    display: inline-block;
}

.music-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gatsby-gold);
    margin-bottom: 15px;
}

.music-card p {
    font-size: 16px;
    color: rgba(245, 241, 232, 0.8);
    line-height: 1.6;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Program Section */
.program {
    padding: 120px 0;
    background: radial-gradient(ellipse at center, #1A1A1A 0%, #000000 100%);
}

.program-time {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 30px;
    background: var(--gold-gradient);
    color: var(--gatsby-black);
    font-size: 18px;
    font-weight: 700;
    margin-top: 20px;
    border-radius: 2px;
}

.time-icon {
    font-size: 24px;
}

.program-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.program-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gatsby-gold) 0%, rgba(212, 175, 55, 0.3) 100%);
}

.timeline-item {
    position: relative;
    padding: 40px 0 40px 120px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.5s ease;
}

.timeline-item .timeline-dot {
    position: absolute;
    left: 42px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: var(--gatsby-gold);
    border: 4px solid #000;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.timeline-item.featured .timeline-dot {
    width: 28px;
    height: 28px;
    left: 37px;
    background: var(--gold-gradient);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.8);
}

.timeline-content {
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 30px 35px;
    transition: all 0.4s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateX(10px);
    border-color: var(--gatsby-gold);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.timeline-time {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--gatsby-gold);
    margin-bottom: 10px;
}

.timeline-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--gatsby-cream);
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 16px;
    color: rgba(245, 241, 232, 0.8);
    line-height: 1.6;
}

/* Contests Section */
.contests {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, #000000 0%, #1A1A1A 50%, #000000 100%);
    overflow: hidden;
}

.confetti-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="30">🏆✨🥂</text></svg>');
    opacity: 0.03;
    background-size: 200px;
}

.contests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.contest-card {
    position: relative;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 0.95) 100%);
    border: 2px solid var(--gatsby-gold);
    padding: 50px 40px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
}

.contest-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gold-gradient);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contest-card:hover::before {
    opacity: 0.3;
}

.contest-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
}

.contest-crown {
    font-size: 80px;
    margin-bottom: 25px;
    display: inline-block;
    animation: swing 2s ease-in-out infinite;
}

@keyframes swing {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.contest-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--gatsby-gold);
    margin-bottom: 15px;
}

.contest-card p {
    font-size: 16px;
    color: rgba(245, 241, 232, 0.8);
    margin-bottom: 30px;
}

.contest-prize {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: var(--gold-gradient);
    color: var(--gatsby-black);
    font-size: 18px;
    font-weight: 700;
    border-radius: 2px;
}

.prize-icon {
    font-size: 24px;
}

/* Gastronomy Section */
.gastronomy {
    padding: 120px 0;
    background: radial-gradient(ellipse at center, #1A1A1A 0%, #000000 100%);
}

.gastro-content {
    max-width: 1000px;
    margin: 0 auto;
}

.gastro-card {
    position: relative;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid var(--gatsby-gold);
    padding: 60px 50px;
    text-align: center;
    margin-bottom: 50px;
    overflow: hidden;
}

.gastro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gold-gradient);
}

.card-badge {
    position: absolute;
    top: 30px;
    right: -35px;
    background: var(--gold-gradient);
    color: var(--gatsby-black);
    padding: 8px 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.gastro-icon {
    font-size: 80px;
    margin-bottom: 25px;
}

.gastro-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--gatsby-gold);
    margin-bottom: 20px;
}

.gastro-card p {
    font-size: 18px;
    color: rgba(245, 241, 232, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.gastro-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.gastro-feature {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.gastro-feature:hover {
    transform: translateY(-8px);
    border-color: var(--gatsby-gold);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.feature-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.gastro-feature h4 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--gatsby-gold);
    margin-bottom: 12px;
}

.gastro-feature p {
    font-size: 16px;
    color: rgba(245, 241, 232, 0.8);
}

/* Entrance Section */
.entrance {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, #000000 0%, #1A1A1A 50%, #000000 100%);
    overflow: hidden;
}

.art-deco-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 30px solid transparent;
    border-image: repeating-linear-gradient(
        45deg,
        rgba(212, 175, 55, 0.1),
        rgba(212, 175, 55, 0.1) 10px,
        transparent 10px,
        transparent 20px
    ) 30;
    opacity: 0.3;
    pointer-events: none;
}

.entrance-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    max-width: 900px;
    margin: 0 auto 80px;
}

.entrance-card {
    position: relative;
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid rgba(212, 175, 55, 0.3);
    padding: 50px 40px;
    text-align: center;
    transition: all 0.4s ease;
}

.entrance-card.free {
    border-color: var(--gatsby-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
}

.entrance-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--luxury-shadow);
}

.card-ribbon {
    position: absolute;
    top: 20px;
    right: -8px;
    background: var(--gold-gradient);
    color: var(--gatsby-black);
    padding: 6px 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-ribbon::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 0;
    height: 0;
    border-right: 8px solid #B8941F;
    border-bottom: 8px solid transparent;
}

.price {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 900;
    color: var(--gatsby-gold);
    margin-bottom: 20px;
}

.entrance-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gatsby-cream);
    margin-bottom: 30px;
}

.entrance-list {
    list-style: none;
    text-align: left;
    max-width: 280px;
    margin: 0 auto;
}

.entrance-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    font-size: 16px;
    color: rgba(245, 241, 232, 0.9);
}

.accessories-info {
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 50px 40px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-align: center;
}

.accessories-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gatsby-gold);
    margin-bottom: 30px;
}

.accessories-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.accessory-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gatsby-gold);
    border-radius: 2px;
    font-size: 16px;
    font-weight: 600;
}

.acc-icon {
    font-size: 24px;
}

.accessories-note {
    font-size: 14px;
    color: rgba(245, 241, 232, 0.7);
    font-style: italic;
}

.limited-notice {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px 40px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gatsby-gold);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.notice-icon {
    font-size: 40px;
}

.limited-notice p {
    font-size: 18px;
    font-weight: 600;
    color: var(--gatsby-cream);
}

/* Booking Section */
.booking {
    position: relative;
    padding: 120px 0;
    background: radial-gradient(ellipse at center, #1A1A1A 0%, #000000 100%);
    overflow: hidden;
}

.champagne-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="40">🥂</text></svg>');
    opacity: 0.03;
    background-size: 150px;
}

.booking-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 0.95) 100%);
    border: 3px solid var(--gatsby-gold);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    box-shadow: var(--luxury-shadow);
}

.vintage-ornament.top-small,
.vintage-ornament.bottom-small {
    width: 150px;
    height: 30px;
}

.booking-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 6vw, 52px);
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--gatsby-cream);
}

.booking-question {
    font-size: 24px;
    color: var(--gatsby-gold);
    font-weight: 600;
    margin-bottom: 50px;
}

.booking-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gatsby-gold);
}

.info-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.info-text {
    text-align: left;
    flex: 1;
}

.info-text strong {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gatsby-gold);
    margin-bottom: 5px;
}

.info-text span,
.info-text a {
    font-size: 16px;
    color: var(--gatsby-cream);
    text-decoration: none;
}

.info-text a:hover {
    color: var(--gatsby-gold);
}

.booking-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

/* Footer */
.footer {
    position: relative;
    padding: 80px 0 40px;
    background: linear-gradient(180deg, #000000 0%, #0D0D0D 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(212, 175, 55, 0.02) 40px, rgba(212, 175, 55, 0.02) 41px);
    opacity: 0.5;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    text-align: center;
}

.logo-gatsby {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.logo-gatsby .logo-line {
    width: 60px;
    height: 1px;
}

.logo-gatsby .logo-text {
    font-size: 32px;
    letter-spacing: 4px;
}

.footer-tagline {
    font-size: 16px;
    color: rgba(245, 241, 232, 0.7);
    margin-top: 10px;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--gatsby-gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    font-size: 14px;
    color: rgba(245, 241, 232, 0.7);
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(245, 241, 232, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gatsby-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(245, 241, 232, 0.6);
    margin-bottom: 15px;
}

.footer-ornament {
    width: 100px;
    height: 20px;
    margin: 20px auto;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><path d="M0,10 L40,10 M60,10 L100,10" stroke="%23D4AF37" stroke-width="1"/><circle cx="50" cy="10" r="5" fill="%23D4AF37"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.footer-motto {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-style: italic;
    color: var(--gatsby-gold);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
    }
    
    .hero-content {
        padding: 40px 20px;
    }
    
    .gatsby-logo {
        gap: 15px;
    }
    
    .logo-line {
        width: 60px;
    }
    
    .logo-text {
        font-size: 32px;
        letter-spacing: 4px;
    }
    
    .main-title {
        font-size: 36px;
    }
    
    .title-pre {
        font-size: 20px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .event-info-bar {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .dress-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .atmosphere-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .music-cards {
        grid-template-columns: 1fr;
    }
    
    .program-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        padding: 30px 0 30px 80px;
    }
    
    .timeline-item .timeline-dot {
        left: 22px;
    }
    
    .timeline-item.featured .timeline-dot {
        left: 17px;
    }
    
    .contests-grid {
        grid-template-columns: 1fr;
    }
    
    .entrance-options {
        grid-template-columns: 1fr;
    }
    
    .booking-card {
        padding: 50px 30px;
    }
    
    .booking-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .booking-actions {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .section-header {
        margin-bottom: 50px;
    }
    
    .dress-code,
    .atmosphere,
    .music,
    .program,
    .contests,
    .gastronomy,
    .entrance,
    .booking {
        padding: 80px 0;
    }
    
    .atmosphere-grid {
        grid-template-columns: 1fr;
    }
    
    .accessories-grid {
        flex-direction: column;
        gap: 15px;
    }
    
    .limited-notice {
        flex-direction: column;
        gap: 15px;
    }
}

/* Scroll Animations */
.dress-card,
.atmosphere-card,
.music-card,
.timeline-item,
.contest-card,
.gastro-feature,
.entrance-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.dress-card.visible,
.atmosphere-card.visible,
.music-card.visible,
.timeline-item.visible,
.contest-card.visible,
.gastro-feature.visible,
.entrance-card.visible {
    opacity: 1;
    transform: translateY(0);
}
