/* CSS Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-color: #fdfaf5;
    --text-primary: #1a130f;
    --accent-gold: #c5a059;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    text-align: center;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    animation: fadeIn 1.5s ease-out;
}

.text-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.logo {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.coming-soon {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: clamp(1rem, 3vw, 1.25rem);
    font-weight: 500;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Desktop Layout */
@media (min-width: 768px) {
    .content {
        flex-direction: row-reverse;
        justify-content: center;
        align-items: center;
        gap: 4rem;
        text-align: left;
    }

    .logo {
        max-width: 400px;
    }

    .text-content {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .container {
        padding: 1.5rem;
    }
    
    .logo {
        max-width: 280px;
    }

    .content {
        gap: 1.5rem;
    }

    .text-content {
        gap: 1.5rem;
    }
}
