/* ===========================================
   Follow-Along Page - Hero Section
   =========================================== */

.hero-section {
    position: relative;
    width: 100%;
    height: 35vh;
    min-height: 220px;
    max-height: 350px;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: grayscale(100%) brightness(0.5);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(15,15,15,0.3) 0%,
        rgba(15,15,15,0.5) 50%,
        rgba(15,15,15,0.95) 85%,
        rgba(15,15,15,1) 100%);
}

.hero-content {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    z-index: 20;
    padding: 0 5%;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

@media (min-width: 769px) {
    .hero-content {
        padding: 0 5%;
    }
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.hero-badge {
    background: var(--volt);
    color: #000;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    padding: 4px 8px;
}

.hero-count {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.hero-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(3rem, 10vw, 5rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: white;
    line-height: 0.85;
}

.hero-title .text-outline {
    -webkit-text-stroke: 1px rgba(255,255,255,0.4);
    color: transparent;
}

/* Mobile hero adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: 30vh;
        min-height: 180px;
        max-height: 250px;
    }
    .hero-content {
        bottom: 20px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
}
