@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;700;900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Barlow', sans-serif;
    overflow: hidden;
    height: 100vh;
    background: #dbe0e4;
}

.header {
    background-color: #9d9d6b;
    padding: 1rem 2rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
}

.main-container {
    position: relative;
    height: 100dvh;
    width: 100%;
    overflow: hidden;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-overlay {
    position: relative;
    z-index: 2;
    /* height: 100%; */
    display: flex;
    padding: 2rem 4rem;
    justify-content: flex-start;
    margin-top: 80px;
}

.coming-soon {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.1;
    color: #1a1a1a;
    max-width: 350px;
}


/* Mobile Responsive */

@media (max-width: 768px) {
    .header {
        padding: 0.75rem;
    }
    .header-logo {
        height: 70px;
    }
    .content-overlay {
        padding: 1.5rem;
        justify-content: center;
        text-align: center;
    }
    .coming-soon {
        font-size: 2.2rem;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .header-logo {
        height: 60px;
    }
    .content-overlay {
        padding: 1rem;
    }
    .coming-soon {
        font-size: 1.8rem;
    }
    .main-container {
        height: 90dvh;
    }
}


/* Landscape mobile */

@media (max-height: 600px) and (orientation: landscape) {
    .header {
        padding: 0.5rem;
    }
    .header-logo {
        height: 50px;
    }
    .content-overlay {
        padding: 1rem 2rem;
        justify-content: flex-start;
    }
    .coming-soon {
        font-size: 1.8rem;
    }
}