/* Simple Banner Block Styles */
.simple-banner-section {
    position: relative;
    width: 100%;
    min-height: 60vh; /* Reduced from 70vh */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: var(--header-height, 80px);
    overflow: hidden; /* Ensure video doesn't overflow */
}

/* Video Background Styles */
.simple-banner-video {
    position: absolute;
    top: 50%;
    right: 0;
    width: 100%;
    height: 100%;
    left: 20%;
    object-fit: contain;
    object-position: top;
    transform: translateY(-50%);
    z-index: 1;
}

/* When video is present, remove background image */
.simple-banner-section.has-video {
    background-image: none !important;
}

.simple-banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    padding-top: 4rem; /* Match hero section spacing */
    text-align: left;
}

/* When header is transparent and overlapping */
.has-transparent-header .simple-banner-content {
    padding-top: calc(80px + 4rem); /* Account for header height + spacing */
}

.simple-banner-heading {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 1rem 0;
}

.simple-banner-subheading {
    font-size: 1.25rem;
    line-height: 1.5;
    max-width: 700px;
    color: #ffffff;
}

.simple-banner-mini-title {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #ffffff; /* white */
    text-transform: uppercase;
}
.simple-banner-mini-title--small {
    font-size: 0.95rem;
    line-height: 1.2;
}
.simple-banner-mini-title--large {
    font-size: 1.5rem;
    line-height: 1.25;
}
.simple-banner-mini-title--xlarge {
    font-size: 2.25rem;
    line-height: 1.1;
}
.simple-banner-mini-title--xxlarge {
    font-size: 3rem;
    line-height: 1.05;
}

@media (max-width: 768px) {
    .simple-banner-section {
        min-height: 45vh; /* Reduced from 50vh */
    }
    .simple-banner-content {
        padding: 0 1.5rem;
        padding-top: 2rem;
    }
    .simple-banner-heading {
        font-size: 2rem;
    }

} 