/* ============================================================
   SSF Hero — static hero section (replaces the old rotating slider)
   File: wp-content/themes/gulfite_woc12_10_24/ssf-hero.css
   Loaded by templates/front_1.php via a <link> tag.
   ============================================================ */

.ssf-hero {
    position: relative;
    width: 100%;
    min-height: 760px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.ssf-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 24px 0;
    box-sizing: border-box;
}

.ssf-hero-content {
    text-align: center;
}

.ssf-hero-heading {
    font-family: 'Alexandria', sans-serif;
    color: #243169;
    font-weight: 700;
    font-size: clamp(28px, 5vw, 50px);
    line-height: 1.5;
    margin: 0 0 34px;
    text-shadow: 0 2px 14px rgba(0,0,0,0.30);
}

.ssf-hero-line1,
.ssf-hero-line2 {
    display: block;
}

.ssf-hero-elongate {
    display: inline-block;
}

.ssf-hero-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.ssf-hero-btn.ssf-nav-btn {
    padding: 15px 20px !important;
    font-size: 18px !important;
    border-radius: 13px !important;
}

.ssf-hero-btn.ssf-nav-btn-outline {
    background: #395489 !important;
    color: #ffffff !important;
    border: 1.5px solid #ffffff !important;
}

.ssf-hero-btn.ssf-nav-btn-outline:hover,
.ssf-hero-btn.ssf-nav-btn-outline:focus {
    background: #46639e !important;
    color: #ffffff !important;
}

.ssf-hero-btn.ssf-nav-btn-solid {
    background: #395489 !important;
    color: #ffffff !important;
    border: 1.5px solid #395489 !important;
}

.ssf-hero-btn.ssf-nav-btn-solid:hover,
.ssf-hero-btn.ssf-nav-btn-solid:focus {
    background: #46639e !important;
    border-color: #46639e !important;
}

@media (max-width: 767px) {
    .ssf-hero {
        min-height: 480px;
    }
    .ssf-hero-inner {
        padding-top: 20px;
    }
    .ssf-hero-heading {
        margin-bottom: 22px;
    }
    .ssf-hero-btn.ssf-nav-btn {
        padding: 12px 18px !important;
        font-size: 15px !important;
    }
}