/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    background-color: #0b0c10; /* Deep obsidian */
    color: #ffffff;
    overflow-x: hidden;
}

/* HERO SECTION */
.hero {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 4rem;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 12, 16, 0.7), rgba(11, 12, 16, 0.95)); /* Darker Cinematic fade */
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 0 20px;
    margin-top: -5vh; /* Slight nudge upwards */
}

.logo {
    max-width: 600px;
    width: 90%;
    height: auto;
}

.tagline {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    color: #c5c6c7;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

/* CTA BUTTONS */
.cta-container {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    transition: transform 0.3s ease, filter 0.3s ease;
    display: inline-block;
}

.btn img {
    height: 54px;
    width: auto;
}

.btn:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

/* FOOTER NAV */
.footer-nav {
    position: absolute;
    bottom: 3rem;
    z-index: 2;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-nav a {
    color: #ffffff; /* White links */
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    font-weight: 500;
}

.footer-nav a:hover {
    color: #e0e0e0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.separator {
    color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .logo {
        max-width: 350px;
    }
    
    .tagline {
        font-size: 0.9rem;
        letter-spacing: 0.2em;
    }
    
    .cta-container {
        flex-direction: column;
        gap: 1.2rem;
    }
    
    .btn img {
        height: 60px; /* Slightly larger on mobile for easy tapping */
    }
}
