/* =====================================================================
   Static build overrides for coachrima
   ===================================================================== */

/* ---- White opaque menu bar overlaying the hero ----
   Placed on top of the first banner so it HIDES any header/title that is
   baked into the hero image (e.g. the "Coacher" strip that can't be edited). */
.ts-page-wrapper { position: relative; }
header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 14px rgba(0, 0, 0, .08);
    padding: 8px 0;
}
/* keep the hero text/photo BELOW the absolute white header bar
   (theme default is 128px; bump it so the first headline line never hides) */
.banner { padding-top: 160px; }

/* ---- Logo ---- */
header .logo img { max-width: 130px; width: auto; height: auto; }
.footer_logo img { max-width: 150px; height: auto; }

/* ---- Home hero banner ---- */
.banner { padding-bottom: 70px; }
.banner .founderimg { margin-top: 30px; }
/* image fills the whole hero (no blank area); shifted DOWN via focal point */
.banner .bgimg_banner { top: 0; height: 100%; object-fit: cover; object-position: center 30%; }
@media (max-width: 767px) {
    .banner { padding-top: 120px; padding-bottom: 40px; }
    .banner .founderimg { margin-top: 20px; }
    .banner .bgimg_banner { object-position: center 30%; }
}

/* ---- Pull the "How Can I Help You" section up (banner left untouched) ---- */
#how-can-i-help-you { margin-top: -70px; }
@media (max-width: 767px) { #how-can-i-help-you { margin-top: -40px; } }

/* ---- Counters band ---- */
.counters_band { padding: 70px 0; position: relative; }
.counters_band .counter_item h2 { font-size: 3rem; font-weight: 700; margin-bottom: 5px; color: #191919; }
.counters_band .counter_item p { font-size: 1rem; margin: 0; color: #555; }
@media (max-width: 767px){ .counters_band .counter_item { margin-bottom: 25px; } }

/* ---- Mobile header / logo / hamburger ---- */
header .toggle_btn { cursor: pointer; font-size: 24px; line-height: 1; color: #191919; }

@media (min-width: 768px) {
    header .toggle_btn { display: none; }
    header .menu_wrapper { display: block; }
}

@media (max-width: 767px) {
    header .logo img { max-width: 100px; }
    header .toggle_btn {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        margin-left: 12px;
        order: 2;
    }
    header .contactme { display: none; }
    header .menu_wrapper {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 8px 20px rgba(0,0,0,.08);
        z-index: 1000;
        padding: 10px 18px;
    }
    header .menu_wrapper.open { display: block; }
    header .menu_wrapper .main-nav__navigation-box { display: block; list-style: none; margin: 0; padding: 0; }
    header .menu_wrapper .main-nav__navigation-box li { display: block; }
    header .menu_wrapper .main-nav__navigation-box li a { display: block; padding: 10px 0; border-bottom: 1px solid #eee; }
}
