:root {
    --primary-color: #1f2e48;
    /* Rich dark brown */
    --accent-color: #d4af37;
    /* Gold */
    --bg-color: #fdfcf8;
    /* Off-white/Cream */
    --text-color: #1f2e48;
    --footer-bg: #1f2e48;
    --footer-text: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: radial-gradient(circle at center, #ffffff 0%, #f4f1ea 100%);
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-area {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #2a3d5e);
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(31, 46, 72, 0.2);
    border: 3px solid var(--accent-color);
    overflow: hidden;
    /* Ensure image respects border-radius */
}

.business-name {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-top: 1rem;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-align: center;
    font-weight: 700;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    animation: fadeIn 1.5s ease-out;
}

.hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 400;
}

.coming-soon {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--primary-color);
    margin: 1rem 0;
    text-transform: uppercase;
    letter-spacing: 5px;
    position: relative;
    display: inline-block;
}

.coming-soon::after {
    content: '';
    display: block;
    width: 60%;
    height: 3px;
    background-color: var(--accent-color);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
    margin-top: 2rem;
    line-height: 1.6;
}

/* Footer */
footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 2rem;
    text-align: center;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    .business-name {
        font-size: 2.2rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }
}