/* Main page header styling */
.home-page-header-image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: center / cover no-repeat;
    background-image: url('/media/barneveldmain2.webp');
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: -59.1px;
}

/* Overlay */
.home-page-header-image-overlay {
    position: absolute;
    top: 59.1px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(14, 13, 30, 0.6);
    z-index: 1;
}

@media (max-width: 767px) {
    .home-page-header-image-container {
        margin-top: 0;
    }
    .home-page-header-image-overlay {
        top: 0;
    }
}

/* Content container */
.home-page-header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    width: 100%;
}

/* Centered logo */
.home-page-header-logo {
    margin-bottom: 30px; /* Adjust this to set the distance from the banner */
}

.home-page-header-logo img {
    max-width: 350px; /* Adjust logo size as needed */
}

.home-page-header-logo img {
    max-width: 350px; /* Adjust logo size as needed */
}

@media (max-width: 575px){
    .home-page-header-logo img {
        width: 300px; /* Adjust logo size as needed */
    }
}

@media (max-width: 450px){
    .home-page-header-logo img {
        width: 250px; /* Adjust logo size as needed */
    }
}

/* Full-width gold banner */
.home-page-header-banner {
    height: 75px;
    width: 100%;
    background-color: rgba(137, 115, 95, 0.9); /* Gold with transparency */
    text-align: center;
    padding: 15px 0;
    border-bottom: 1.5px solid #E2E2E2;
}

/* Banner text */
.banner-text {
    color: white;
    margin: 0;
}

@media (max-width: 575px){
    .banner-text {
        font-size: 0.9rem !important;
    }
}


@media (max-width: 575px) {
    .home-page-header-image-container {
        height: 475px;
    }

    .home-page-header-image-heading {
        font-size: 1.8rem;
    }
}

@media (min-width: 576px) {
    .home-page-header-image-container {
        height: 550px;
    }
}

@media (min-width: 768px) {
    .home-page-header-image-container {
        height: 650px;
    }
}

@media (min-width: 992px) {
    .home-page-header-image-container {
        height: 700px;
    }
}

.image-full-container {
    position: relative;
    width: 100%;
    height: 400px; /* Make the container take up the full column height */
    overflow: hidden;
}

.image-full-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the container */
    object-position: center; /* Centers the image */
}

.blue-home-container-box {
    background-color: var(--primary-blue);
}

.brands-banner {
    background-color: var(--primary-gold);
    border-bottom: 1.5px solid #E2E2E2;
}