/* ============================================================
   Canvas Signature Heritage — Hero Sections
   csh-hero.css
   ============================================================ */

/* ─────────────────────────────────────────────
   Base Hero
───────────────────────────────────────────── */
.csh-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Full screen hero */
.csh-hero--fullscreen {
    min-height: 100vh;
}

/* Standard hero (shorter) */
.csh-hero--image {
    min-height: 75vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Short hero */
.csh-hero--short {
    min-height: 55vh;
}

/* ─────────────────────────────────────────────
   Video Hero
───────────────────────────────────────────── */
.csh-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.csh-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ─────────────────────────────────────────────
   Hero Overlay
───────────────────────────────────────────── */
.csh-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 39, 68, 0.72) 0%,
        rgba(26, 39, 68, 0.45) 60%,
        rgba(26, 39, 68, 0.3) 100%
    );
    z-index: 1;
}

.csh-hero--overlay-heavy .csh-hero__overlay {
    background: rgba(26, 39, 68, 0.78);
}

/* ─────────────────────────────────────────────
   Hero Content
───────────────────────────────────────────── */
.csh-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 160px 0 100px;
}

.csh-hero__content .csh-container {
    max-width: var(--container-max);
}

.csh-hero__headline {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: clamp(3rem, 7vw, 7.5rem);
    line-height: 1.05;
    letter-spacing: 0.02em;
    color: #ffffff;
    margin-bottom: 1.5rem;
    max-width: 900px;
}

.csh-hero__sub {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    max-width: 640px;
    margin-bottom: 2.5rem;
}

.csh-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

/* ─────────────────────────────────────────────
   Hero Scroll Cue
───────────────────────────────────────────── */
.csh-hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s;
    cursor: pointer;
    text-decoration: none;
}

.csh-hero__scroll:hover { opacity: 1; }

.csh-hero__scroll-icon {
    display: block;
    width: 24px;
    height: 24px;
    border-right: 1.5px solid rgba(255,255,255,0.8);
    border-bottom: 1.5px solid rgba(255,255,255,0.8);
    transform: rotate(45deg) translateY(-4px);
    animation: csh-bounce 1.8s ease-in-out infinite;
}

@keyframes csh-bounce {
    0%, 100% { transform: rotate(45deg) translateY(-4px); opacity: 0.6; }
    50%       { transform: rotate(45deg) translateY(2px);  opacity: 1; }
}

/* ─────────────────────────────────────────────
   Full Bleed Section (dark overlay over bg image)
───────────────────────────────────────────── */
.csh-fullbleed {
    position: relative;
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.csh-fullbleed__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 39, 68, 0.80) 0%,
        rgba(26, 39, 68, 0.65) 100%
    );
    z-index: 0;
}

.csh-fullbleed .csh-container {
    position: relative;
    z-index: 1;
    padding-top: var(--section-v);
    padding-bottom: var(--section-v);
}

.csh-fullbleed__content {
    max-width: 720px;
}

.csh-fullbleed__content.csh-text-center {
    margin: 0 auto;
}
