:root {
    --bg-color: #000000;
    --text-color: #FFFFFF;
    --accent-color: #D4AF37;
    /* Metallic Gold */
    --card-bg: #111111;
    --font-heading: 'Limelight', cursive;
    --font-body: 'Poiret One', cursive;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    margin: 0;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* --- Typography --- */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--accent-color);
    letter-spacing: 2px;
}

.big-font {
    font-size: 4.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.medium-font {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 10px;
}

.text-uppercase-spaced {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 600;
}

/* --- Layout --- */
.section-padding {
    padding: 5rem 1rem;
    position: relative;
}

/* --- Art Deco Border --- */
.deco-border {
    border: 2px solid var(--accent-color);
    padding: 20px;
    position: relative;
    margin: 20px;
}

.deco-border::before,
.deco-border::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease;
}

.deco-border::before {
    top: -5px;
    left: -5px;
    border-right: none;
    border-bottom: none;
}

.deco-border::after {
    bottom: -5px;
    right: -5px;
    border-left: none;
    border-top: none;
}

/* --- Hero Section --- */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 2rem;
    position: relative;
}

.hero-image-container {
    width: 280px;
    height: 380px;
    margin: 2rem auto;
    position: relative;
    border: 3px solid var(--accent-color);
    padding: 15px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(50%) contrast(120%);
}

/* --- Buttons --- */
.btn-vintage {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 12px 40px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-vintage:hover {
    background-color: var(--accent-color);
    color: #000;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    text-decoration: none;
}

/* --- Countdown --- */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    color: var(--accent-color);
    border: 2px double var(--accent-color);
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 10px;
    background: #000;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 2px;
}

/* --- Animations --- */
.champagne-bubble {
    position: fixed;
    bottom: -20px;
    background: radial-gradient(circle at 30% 30%, #fff, var(--accent-color));
    border-radius: 50%;
    opacity: 0.6;
    animation: rise 10s infinite ease-in;
    z-index: 0;
    pointer-events: none;
}

@keyframes rise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    20% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-120vh) scale(1.5);
        opacity: 0;
    }
}

/* --- Cards --- */
.vintage-card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border: 1px solid var(--accent-color);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.vintage-card::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    pointer-events: none;
}

/* --- Music Button --- */
.music-control {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.btn-music-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #000;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .big-font {
        font-size: 3.5rem;
    }

    .hero-image-container {
        width: 80%;
    }
}

/* --- Vintage Gallery --- */
.vintage-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.gallery-item-vin img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border: 2px solid var(--accent-color);
    filter: grayscale(100%) contrast(120%);
    transition: all 0.5s ease;
}

.gallery-item-vin:hover img {
    filter: grayscale(0%) sepia(20%);
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* --- Vintage Timeline --- */
.vintage-timeline {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.vintage-timeline::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-color);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item .time {
    width: 80px;
    font-weight: 700;
    color: var(--accent-color);
    text-align: right;
    padding-right: 20px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.timeline-item .icon {
    width: 40px;
    height: 40px;
    background: #000;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    font-size: 1.2rem;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.timeline-item .info {
    padding-left: 20px;
    flex: 1;
}

.timeline-item .info h3 {
    font-size: 1.5rem;
    margin: 0;
    color: #fff;
}

.timeline-item .info p {
    margin: 0;
    color: #aaa;
    font-weight: 300;
}