.headerMain {
    width: 100vw;
    height: calc(100dvh - 100px);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-left: clamp(30px, 10vw, 250px);
}

.headerContent h1 {
    font-family: "elfreth", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #f8f7f2;
    font-size: clamp(3.3rem, 11vw, 11rem);
}

.headerContent h2 {
    color: #f8f7f2;
    font-size: clamp(1.75rem, 6vw, 5rem);
    font-weight: 400;
}

.headerContent {
    position: relative;
    border-radius: 15px;
    padding: 15px 50px;
    z-index: 1;
    overflow: visible;
    min-width: content;
}

.headerContent::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 15px;
    pointer-events: none;
    /* Smokey radial gradient, adjust stops for softness */
    background: radial-gradient(ellipse at center, 
        rgba(0,0,0,1) 0%, 
        rgba(0,0,0,0.7) 40%, 
        rgba(0,0,0,0.5) 70%, 
        rgba(0,0,0,0) 100%);
    /* Optional: blur for extra softness */
    filter: blur(10px);
}

.headerSlideshow {
    position: relative;
    height: calc(100dvh - 200px);
    min-height: 350px;
    width: 100%;
    overflow: hidden;
    background-color: #000;
}

.headerSlideshow .slideshow-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 0;
}
.headerSlideshow .slideshow-bg.active {
    opacity: 1;
    z-index: 1;
}

@media (max-width: 1140px) {
    .headerSlideshow {
        height: calc(100dvh - 120px);
    }

    .headerMain {
        padding: 0;
        justify-content: center;
    }

    .headerContent {
        width: 95vw;
        padding: 0;
    }
}