/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette from Logo */
    --cream-bg: #f5f1e8;
    --aged-parchment: #e8e0d0;
    --dark-brown: #3d2817;
    --medium-brown: #6b4e3d;
    --light-brown: #8b6f47;
    --green-foliage: #5a7c4a;
    --green-grass: #6b8e5a;
    --red-accent: #b85450;
    --text-dark: #2c1f14;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: var(--aged-parchment);
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(139, 111, 71, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(107, 78, 61, 0.1) 0%, transparent 50%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

/* Header and Logo */
header.logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 1rem 0;
    position: relative;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 600px;
}

.logo-wrapper::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    max-width: 420px;
    height: 30px;
    background: radial-gradient(ellipse, rgba(61, 40, 23, 0.3) 0%, rgba(61, 40, 23, 0.15) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: fadeIn 1.2s ease-in;
}

.logo {
    max-width: 100%;
    height: auto;
    width: 100%;
    filter: drop-shadow(0 8px 16px rgba(61, 40, 23, 0.3));
    animation: fadeIn 1s ease-in;
    display: block;
    position: relative;
    z-index: 1;
}

.coming-banner {
    position: absolute;
    top: 8%;
    right: 2%;
    transform: rotate(30deg);
    background: var(--cream-bg);
    border: 2px solid var(--dark-brown);
    padding: 0.5rem 1.5rem;
    font-size: clamp(0.85rem, 1.8vw, 1.1rem);
    color: var(--dark-brown);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
    font-family: 'Georgia', 'Times New Roman', serif;
    opacity: 0;
    animation: fadeIn 0.6s ease-in 1.1s forwards;
    z-index: 10;
    box-shadow: 
        0 3px 8px rgba(61, 40, 23, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    white-space: nowrap;
}


/* Hero Section */
.hero {
    text-align: center;
    width: 100%;
    display: none;
}

.tagline {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    color: var(--dark-brown);
    font-style: italic;
    letter-spacing: 0.05em;
    margin-top: 1rem;
    text-shadow: 1px 1px 2px rgba(61, 40, 23, 0.1);
    animation: fadeIn 1.2s ease-in;
}


/* Footer */
footer {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    color: var(--medium-brown);
    font-size: 0.9rem;
    border-top: 1px solid rgba(107, 78, 61, 0.2);
    margin-top: auto;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 1rem;
    }
    
    .container {
        gap: 0.75rem;
    }
    
    header.logo-container {
        padding: 0.5rem 0;
    }
    
    .logo-wrapper::after {
        width: 65%;
        height: 20px;
        bottom: -8px;
    }
    
    .coming-banner {
        top: 6%;
        right: 1%;
        transform: rotate(30deg);
        padding: 0.4rem 1.2rem;
        font-size: clamp(0.75rem, 1.5vw, 0.95rem);
    }
}

@media (max-width: 480px) {
    .coming-banner {
        top: 5%;
        right: 0%;
        transform: rotate(30deg);
        padding: 0.35rem 1rem;
        font-size: 0.7rem;
        letter-spacing: 0.1em;
    }
    
    footer {
        padding: 1rem 0;
        font-size: 0.85rem;
    }
}

