header {
    max-width: 100vw;
    width: 100%;
    aspect-ratio: 2500 / 1167; 

    background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('../images/yard-basketball-hero.jpeg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    &, #navbar .navbar-container a {
        color: white;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    }
}

@media (max-width: 576px) {
    header {
        aspect-ratio: 8 / 7;
        background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('../images/yard-basketball-hero-mobile.jpeg');
    }
}

#homepage-banner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.homepage-banner-text {
    width: 70%;
    font-size: 4rem;
}

@media (max-width: 1100px) {
    .homepage-banner-text {
        font-size: 3rem;
    }
}

@media (max-width: 800px) {
    .homepage-banner-text {
        width: 80%;
        font-size: 2.25rem;
    }
}

@media (max-width: 500px) {
    .homepage-banner-text {
        width: 90%;
        font-size: 2rem;
        margin-bottom: 70px;
    }
}

.homepage-section {
    margin: 20px 0;
    align-items: center;
}

.homepage-section img {
    width: 100%;
    border-radius: 1.75rem;
}

.img-container {
    padding: 1.5rem !important;
}

.homepage-section .text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;

    @media (max-width: 767px) {
        align-items: center;
        text-align: center;
    }

    .homepage-text-header {
        font-size: 2rem;
        font-weight: 700;
    }

    .homepage-text-details {
        font-size: 1.25rem;
    }

    .homepage-text-cta .btn {
        padding: 15px 20px;
        font-size: 1.25rem;
    }
}

/* PARTNER CONTAINER */
.partner-container {
    display: flex;
    flex-direction: column;
    justify-content: center;

    .btn {
        background-color: #f2f9ff !important;
        color: #14203b !important;
        width: fit-content;
        margin: auto;
        padding: 10px 15px;
    }

    @media (max-width: 550px) {
        .btn {
            font-size: 0.85rem;
        }
    }
}

.homepage-section.contact {
    margin: 50px;
    text-align: center;
    justify-content: center;
    align-items: center;
}