/* =========================================
   GLOBAL RESETS & BASE STYLES
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    min-height: 100vh; 
    font-family: 'Montserrat', sans-serif;
    background-color: #0f0a08; /* Fallback */
    
    /* Critical fixes to allow scrolling */
    overflow-y: auto !important; 
    overflow-x: hidden; 
}

body {
    background-image: url('assets/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Keeps background image still when scrolling */
    color: #fff9f5; /* Warm off-white */
    display: flex;
    flex-direction: column; /* Stacks the hero container and the footer */
}


.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* Primary Button Design (Matches your coffee brown styling) */
.btn-primary {
    background-color: #4a3321; /* Replace with your exact coffee color hex code */
    color: #ffffff;
    border: 1px solid #4a3321;
}

.btn-primary:hover {
    background-color: transparent;
    color: #4a3321;
}

/* Secondary Button Design */
.btn-secondary {
    background-color: transparent;
    color: #4a3321;
    border: 1px solid #4a3321;
}

.btn-secondary:hover {
    background-color: #4a3321;
    color: #ffffff;
}

/* =========================================
   HERO SECTION & OVERLAY
========================================= */
/* Subtle, soft gradient overlay for legibility and warmth */
.overlay {
    position: fixed; /* Covers the screen even when scrolling */
    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;
    pointer-events: none; /* Allows clicks to pass through to the footer links */
}

/* Main container for content */
.container {
    position: relative;
    z-index: 2;
    flex: 1; /* Pushes the footer to the bottom */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2.5rem;
    min-height: 100vh; /* Ensures the "Coming Soon" text is vertically centered on the first screen */
}

.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 STYLES
========================================= */
.site-footer {
    position: relative;
    z-index: 2; /* Keeps footer above the fixed background overlay */
    background-color: #4E220F; /* Coffee Brown */
    color: #d6d3d1; /* Soft Stone */
    font-family: 'Montserrat', sans-serif;
    padding: 4rem 2.5rem 1.5rem;
    line-height: 1.6;
    opacity: 1; /* Always visible */
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2.5rem;
}

.footer-col {
    flex: 1 1 250px;
    display: flex;
    flex-direction: column;
}

.footer-logo img {
    max-width: 160px;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.footer-col h3 {
    color: #f5f5f4; 
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-icon {
    width: 20px;
    height: 20px;
    stroke: #f59e0b; /* Amber Accent */
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-col p {
    font-size: 0.9rem;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-col p:hover {
    color: #f5f5f4;
}

.footer-link {
    color: #d6d3d1;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #f59e0b;
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(121, 85, 72, 0.5); 
    text-align: center;
    font-size: 0.75rem;
    color: #a8a29e;
    letter-spacing: 0.1em;
    font-weight: 300;
}

.footer-link-bottom {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link-bottom:hover {
    color: #f59e0b;
}

/* =========================================
   ANIMATIONS
========================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   RESPONSIVE DESIGN (MOBILE/TABLET)
========================================= */
@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;
    }

    /* Footer Mobile Adjustments */
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-logo img {
        margin: 0 auto;
    }

    .footer-col h3 {
        justify-content: center;
    }
}