
:root {
    --Gold: #ffd700;
    --Gray: #f0f0f0;
}

.banner-container {
    background-image: linear-gradient(rgba(100, 86, 0, 0.4)), url('https://worldmasteritravel.site/assets/img/src/home/banner.avif');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}

.banner-flex {
    padding: 2rem;
    max-width: 1200px;
    margin: auto;
}

.banner-title {
    color: white;
    font-size: 2.5em;
    margin-bottom: 3rem;
    position: relative;
}

.banner-title span {
    color: var(--Gold);
}

.logo-boxes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-box {
    width: 170px;
    height: 170px;
    background-color: white;
    border-radius: 15px;
    border: 3px solid gold;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 20px;
    position: relative;
}

.logo-box img {
    width: 160px;
    height: 160px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 1200px) {
    .banner-flex {
        max-width: 90%;
        padding: 1.8rem;
    }
    .logo-boxes {
        gap: 15px;
    }
    .logo-box {
        width: 150px;
        height: 150px;
    }
    .logo-box img {
        width: 140px;
        height: 140px;
    }
}

@media screen and (max-width: 992px) {
    .banner-title {
        font-size: 2.2em;
        margin-bottom: 2.5rem;
    }
    .logo-boxes {
        gap: 12px;
    }
    .logo-box {
        width: 140px;
        height: 140px;
    }
    .logo-box img {
        width: 130px;
        height: 130px;
    }
}

@media screen and (max-width: 768px) {
    .banner-flex {
        padding: 1.5rem;
    }
    .banner-title {
        font-size: 1.8em;
        margin-bottom: 2rem;
    }
    .logo-boxes {
        gap: 15px;
    }
    .logo-box {
        width: 120px;
        height: 120px;
        border-radius: 12px;
        bottom: 15px;
    }
    .logo-box img {
        width: 110px;
        height: 110px;
    }
}

@media screen and (max-width: 576px) {
    .banner-flex {
        padding: 1.2rem;
    }
    .banner-title {
        font-size: 1.5em;
        margin-bottom: 1.5rem;
    }
    .logo-boxes {
        gap: 10px;
    }
    .logo-box {
        width: 100px;
        height: 100px;
        border-radius: 10px;
        bottom: 10px;
        border-width: 1px;
    }
    .logo-box img {
        width: 90px;
        height: 90px;
    }
}