.banner-component {
    height: 80vh;
    width: 100%;
    background-color: black;
    position: relative;
}

.banner-component-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.banner-component-widget {
    width: 100%;
    height: 50vh;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    align-items: stretch;
}

.banner-gradient-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3), transparent, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
    pointer-events: none;
    z-index: 1;
}


/* Inner Container - Left aligned, not centered */
.banner-inner-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    margin: 0 auto;
    justify-content: center;
    z-index: 2;
}

.banner-content-spacing {
    flex: 2;
}

.banner-content-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex: 3;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
}

.banner-title-column {
    display: flex;
    flex-direction: column;
    margin: auto 0;
    gap: 2.5rem;
    align-items: start;
}

.banner-title {
    color: white;
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.3;
    margin: 0;
    margin-top: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
    pointer-events: none;
    align-self: flex-start;
}

.banner-indicator-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background-color: white;
    border-top-left-radius: 10px;
    padding: 1rem 2rem;
    width: min-content;
    z-index: 2;
}

.banner-indicator-container-position {
    position: absolute;
    right: 0rem;
    bottom: 0rem;
}

.banner-indicator {
    width: 16px;
    height: 16px;
    background-color: white;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

.banner-indicator:hover {
    background-color: #EEE;
    opacity: 0.4;
}

.banner-indicator-active {
    width: 16px;
    height: 16px;
    background-color: white;
    border: 1px solid #FF0000;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

.banner-indicator-dot {
    width: 8px;
    height: 8px;
    background-color: #FF0000;
    opacity: 0.2;
    border-radius: 50%;
}

.banner-indicator-dot-active {
    width: 8px;
    height: 8px;
    background-color: #FF0000;
    border-radius: 50%;
}

.banner-indicator-container-centered {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background-color: white;
    border-radius: 10px;
    padding: 1rem 2rem;
    width: min-content;
}

@media (min-width: 1081px) {
    .banner-title-column {
        max-width: 80%;
        margin-left: 15vw;
    }
}

@media (max-width: 1080px) {
    .banner-title-column {
        padding-left: 4rem;
        padding-right: 2rem;
    }

    .banner-content-spacing {
        flex: 0;
        display: none;
    }

    .banner-content-container {
        flex: 1;
    }
}

.banner-scroll-section {
    width: 100%;
    margin: 1rem 0;
}

.banner-scroll-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.banner-scroll-carousel {
    width: 100%;
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 1rem;
    padding: 1rem 0;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.banner-scroll-carousel::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.banner-scroll-spacer {
    flex-shrink: 0;
    width: 10%;
    /* 10% on each side leaves 80% for center */
}

.banner-scroll-item {
    flex-shrink: 0;
    width: 80%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    transition: transform 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.banner-scroll-image {
    width: 100%;
    height: 50vh;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 1080px) {
    .banner-scroll-spacer {
        width: 5%;
        /* Reduce spacing on tablets */
    }

    .banner-scroll-item {
        width: 90%;
        /* Increase item width on tablets */
    }

    .banner-scroll-image {
        height: 60vh;
    }
}

@media (max-width: 768px) {
    .banner-scroll-spacer {
        width: 2.5%;
        /* Minimal spacing on mobile */
    }

    .banner-scroll-item {
        width: 95%;
        /* Almost full width on mobile */
    }

    .banner-scroll-image {
        height: 50vh;
    }

    .banner-scroll-carousel {
        gap: 0.5rem;
    }
}