/* /assets/css/zc-hero.css
   drop this as a NEW file and load it after your base css
   this locks mobile + desktop hero layout so it doesn’t “bleed” into tracks
*/

.zc-hero{
    position: relative;
    height: 100svh;
    min-height: 680px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay{
    position: absolute;
    inset: 0;
    background: rgba(44 0 77 / 23%);
    z-index: 1;
    pointer-events: none;
}

/* centered logo/tagline */
.zc-hero__inner{
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 18px 150px; /* room for meter */
    display: grid;
    justify-items: center;
    text-align: center;
}

/* =========================
   HERO LOGO
   ========================= */

.zc-hero__inner{
    position:relative;
    z-index:2;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}

.zc-hero__logo{
    width: clamp(280px, 40vw, 160px);
    height:auto;
    margin-bottom: 18px;
    filter: drop-shadow(0 12px 30px rgba(0,0,0,.45));
    transition: transform .4s ease;
}

/* subtle hover animation on desktop */
@media (hover:hover){
    .zc-hero__logo:hover{
        transform: rotate(8deg) scale(1.05);
    }
}

.zc-brand{
    line-height: 1;
    font-size: clamp(64px, 10vw, 200px);
    letter-spacing: .01em;
    color: #ff6200;
    text-transform: lowercase;
    text-shadow: 0 10px 28px rgba(0,0,0,.40);
}

.zc-tagline{
    margin-top: 12px;
    font-weight: 300;
    font-size: clamp(15px, 2.2vw, 64px);
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(255,255,255,.88);
    text-shadow: 0 10px 28px rgba(0,0,0,.40);
}

/* meter pinned to bottom INSIDE hero */
.zc-hero .zc-meter{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
}

/* MOBILE: stops the “header all over the place” */
@media (max-width: 640px){
    .zc-hero{
        height: 78vh;
        min-height: 560px;
    }
    .zc-hero__inner{
        padding-bottom: 140px; /* still keep room for meter */
    }
    .zc-tagline{
        letter-spacing: .22em;
        padding: 0 10px;
    }

    .zc-hero__logo{
        width: clamp(180px, 40vw, 160px);
        height:auto;
    }

}