/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #000;
}


/* ===== Container ===== */
.container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* ===== Banner (picture + img) ===== */
.banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
}

/* ===== Coming Soon Text ===== */
.coming-soon-text {
    position: absolute;
    z-index: 1;
    left: 50%;
    bottom: 10%;
    transform: translateX(-50%);
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: 0;
    color: #ffffff;
    text-align: center;
    width: 100%;
    white-space: nowrap;
}

/* ===== Responsive: Tablet ===== */
@media (max-width: 768px) {
    .coming-soon-text {
        font-size: 20px;
        bottom: 25%;
    }
}

/* ===== Responsive: Mobile ===== */
@media (max-width: 480px) {
    .coming-soon-text {
        font-size: 18px;
        bottom: 20%;
        white-space: normal;
    }
}