:root {
    --bg-color: #F5F5F0;
    --text-color: #333333;
    --text-light: #666666;
    --accent-color: #D4AF37;
    /* Matte Gold */
    --border-color: #E0E0E0;
    --font-heading: 'Bodoni Moda', serif;
    --font-body: 'Lato', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    font-weight: 300;
    overflow-x: hidden;
    margin: 0;
    line-height: 1.8;
}

/* --- Typography --- */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--text-color);
}

.big-font {
    font-size: 6rem;
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.medium-font {
    font-size: 3rem;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

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

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

/* --- Modern Card --- */
.modern-card {
    background: #fff;
    padding: 4rem 2rem;
    border: 1px solid var(--border-color);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

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

.hero-image-container {
    width: 300px;
    height: 400px;
    margin: 3rem auto;
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: transform 1s ease;
}

.hero-image-container:hover .hero-image {
    transform: scale(1.05);
    filter: grayscale(0%);
}

/* --- Buttons --- */
.btn-modern {
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--text-color);
    padding: 15px 40px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
}

.btn-modern:hover {
    background: var(--text-color);
    color: #fff;
    text-decoration: none;
}

/* --- Countdown --- */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 4rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 3rem 0;
}

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

.countdown-number {
    font-size: 4rem;
    font-family: var(--font-heading);
    color: var(--text-color);
    line-height: 1;
}

.countdown-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

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

.btn-music-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-music-circle:hover {
    background: var(--text-color);
    color: #fff;
}

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

    .medium-font {
        font-size: 2.5rem;
    }

    .countdown-container {
        gap: 2rem;
    }

    .hero-image-container {
        width: 80%;
        height: auto;
        aspect-ratio: 3/4;
    }
}

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

.gallery-item-modern img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.gallery-item-modern.tall img {
    height: 450px;
}

.gallery-item-modern:hover img {
    filter: grayscale(0%);
    transform: scale(1.02);
}

/* --- Modern Timeline --- */
.modern-timeline {
    border-left: 1px solid var(--border-color);
    padding-left: 2rem;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.timeline-item-modern {
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item-modern::before {
    content: '';
    position: absolute;
    left: -2.35rem;
    top: 0.5rem;
    width: 10px;
    height: 10px;
    background: var(--text-color);
    border-radius: 50%;
}

.timeline-item-modern .time {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-color);
}

.timeline-item-modern .event {
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: var(--text-light);
}