/* banner.css */

/* =======================================
   Panorama Banner Styles
   ======================================= */
.panorama-banner {
    position: relative;
    width: calc(100vw / var(--ui-zoom));
    margin-left: calc((100% - 100vw / var(--ui-zoom)) / 2);
    margin-right: calc((100% - 100vw / var(--ui-zoom)) / 2);
    height: 400px;
    background-image: url('../img/Picture1.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
    margin-bottom: 40px;
    margin-top: calc(-1 * var(--main-padding-top));
}

.panorama-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    color: #FFFFFF;
    max-width: 780px;
    padding: 16px 18px;
}

.overlay-text h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 0 0 8px;
    line-height: 1.05;
}

.overlay-text h2 {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.4;
    margin: 0;
    color: #F0F4F8;
}
