/* ============================================================
   FRONTPAGE HERO (ISOLATED FROM ENTRY HERO)
   File: hero-frontpage.css
============================================================ */

/* ------------------------------
   HERO CONTAINER
------------------------------ */
.connect-hero.frontpage-hero {
    position: relative;
    height: 500px;
    width: 100%;
    padding: 0;
    overflow: hidden;
    z-index: 1;
}

/* ------------------------------
   HERO IMAGE
------------------------------ */
.connect-hero.frontpage-hero .connect-hero__image {
    width: 100%;
    height: 100%;
    position: relative;
}

.connect-hero.frontpage-hero .connect-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ------------------------------
   HERO OVERLAY
------------------------------ */
.connect-hero.frontpage-hero .connect-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(25, 118, 210, 0.55); /* Default blue overlay */
    pointer-events: none;
    z-index: 2;
}

/* ------------------------------
   HERO CONTENT
------------------------------ */
.connect-hero.frontpage-hero .connect-hero__content {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    z-index: 3;
}

.connect-hero.frontpage-hero .connect-hero__title {
    font-size: 64px;
    color: #fff;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 0;
}

.connect-hero.frontpage-hero .connect-hero__subtitle {
    font-size: 20px;
    margin-top: 10px;
}

/* ------------------------------
   MOBILE (PORTRAIT)
------------------------------ */
@media (max-width: 600px) and (orientation: portrait) {

    .connect-hero.frontpage-hero {
        height: 350px !important;
    }

    .connect-hero.frontpage-hero .connect-hero__title {
        font-size: 48px !important;
    }
}
