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

body, html {
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    background-color: #0f0a08; /* Fallback */
    overflow: hidden; /* Single screen experience */
}

/* Background setup with image */
body {
    background-image: url('assets/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: #fff9f5; /* Warm off-white */
}

/* Subtle, soft gradient overlay for legibility and warmth */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at center, rgba(0, 0, 0, 0.1) 10%, rgba(0, 0, 0, 0.7) 100%),
        linear-gradient(
            to bottom, 
            rgba(35, 25, 20, 0.3) 0%, 
            rgba(45, 30, 25, 0.2) 40%, 
            rgba(25, 15, 10, 0.5) 100%
        );
    z-index: 1;
}

/* Main container for content */
.container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2.5rem;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.brand-logo {
    max-width: 240px;
    height: auto;
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.6));
}

/* Main Content */
.main-content {
    text-align: center;
    animation: fadeInUp 2s ease-out 0.5s forwards;
    opacity: 0;
}

.coming-soon {
    font-family: 'Cormorant Garamond', serif;
    font-size: 7rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 12px rgba(0,0,0,0.15); /* Soft shadow for extra depth */
}

.subtitle {
    font-weight: 300;
    font-size: 1rem;
    letter-spacing: 0.15em;
    color: rgba(255, 249, 245, 0.9);
}

/* Footer */
.footer {
    position: absolute;
    bottom: 2.5rem;
    width: 100%;
    text-align: center;
    animation: fadeIn 2s ease-out 1s forwards;
    opacity: 0;
}

.footer p {
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: rgba(255, 249, 245, 0.5);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }
    
    .coming-soon {
        font-size: 4rem;
    }
    
    .subtitle {
        font-size: 0.85rem;
        letter-spacing: 0.1em;
    }
    .brand-logo {
        max-width: 180px;
    }
}
