/* Banner Section Styles */
.section-banner {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-banner__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(10, 10, 15, 0.5);
    pointer-events: none;
}

.section-banner__content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-12, 6rem) var(--space-6, 2rem);
}

/* Heights */
.banner-height-small {
    min-height: 400px;
}

.banner-height-medium {
    min-height: 600px;
}

.banner-height-large {
    min-height: 800px;
}

/* Alignments */
.banner-align-left .section-banner__content {
    text-align: left;
}

.banner-align-center .section-banner__content {
    text-align: center;
}

.banner-align-right .section-banner__content {
    text-align: right;
}

/* Background image with darker overlay */
.banner-has-image .section-banner__overlay {
    background-color: rgba(10, 10, 15, 0.7);
}

@media (max-width: 991px) {
    .banner-height-small {
        min-height: 300px;
    }

    .banner-height-medium {
        min-height: 450px;
    }

    .banner-height-large {
        min-height: 600px;
    }
}

@media (max-width: 767px) {
    .section-banner__content {
        padding: var(--space-8, 3rem) var(--space-4, 1rem);
    }

    .banner-height-small {
        min-height: 250px;
    }

    .banner-height-medium {
        min-height: 350px;
    }

    .banner-height-large {
        min-height: 450px;
    }
}
