:root {
    --bg-color: #F9F7F2;
    /* Cream/Beige */
    --text-color: #2C3E31;
    /* Dark Green */
    --accent-color: #6B8E6B;
    /* Sage Green */
    --secondary-text: #5A6A5F;
    /* Muted Green/Grey */
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Montserrat', sans-serif;
    --card-bg: rgba(255, 255, 255, 0.6);
    --card-border: rgba(107, 142, 107, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-secondary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

/* Background Overlay for texture/depth - lighter and more organic */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(107, 142, 107, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(107, 142, 107, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 900px;
    width: 100%;
    animation: fadeIn 1.5s ease-out;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Logo Styling */
.logo-container {
    margin-bottom: 2rem;
}

.logo {
    max-width: 250px;
    width: 100%;
    height: auto;
}

/* Typography */
.headline {
    font-family: var(--font-primary);
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.subheadline {
    font-size: 1.2rem;
    color: var(--secondary-text);
    margin-bottom: 3.5rem;
    font-weight: 400;
    max-width: 600px;
    line-height: 1.6;
    margin: 30px auto 80px;
}

.opening-text {
    margin-top: 2.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-color);
    font-weight: 600;
}

/* Countdown Timer */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.countdown-item {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2rem;
    border-radius: 16px;
    min-width: 110px;
    border: 1px solid var(--card-border);
    box-shadow: 0 10px 25px rgba(44, 62, 49, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.countdown-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(44, 62, 49, 0.1);
    border-color: var(--accent-color);
}

.number {
    display: block;
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary-text);
    font-weight: 500;
}

/* Address Section */
.address-container {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(107, 142, 107, 0.3);
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.address-text {
    font-family: var(--font-secondary);
    color: var(--secondary-text);
    font-size: 0.95rem;
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.address-icon {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsiveness */
@media (max-width: 600px) {
    .headline {
        font-size: 2rem;
    }

    .countdown-container {
        gap: 1rem;
    }

    .countdown-item {
        min-width: 85px;
        padding: 1.2rem;
    }

    .number {
        font-size: 2rem;
    }

    .logo {
        max-width: 200px;
    }
}