/* ============================================================
   HIPHOP TEMPLE — MEGA 23 HOMEPAGE
   ============================================================ */

:root {
    --ht-black: #070707;
    --ht-panel: #111111;
    --ht-white: #f5f5f2;
    --ht-muted: #aaa;
    --ht-gold: #f5b900;
    --ht-border: rgba(255,255,255,.12);
}

.ht23 {
    background: var(--ht-black);
    color: var(--ht-white);
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
}

.ht23 * {
    box-sizing: border-box;
}

.ht23-hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, #050505 0%, rgba(5,5,5,.88) 32%, rgba(5,5,5,.20) 75%),
        url("/static/images/mega23/hero.jpg") center/cover no-repeat;
}

.ht23-hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 80px 7vw;
}

.ht23-kicker {
    color: var(--ht-gold);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.ht23-hero h1 {
    margin: 18px 0;
    font-size: clamp(58px, 8vw, 120px);
    line-height: .82;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: -.06em;
}

.ht23-hero h1 span {
    color: var(--ht-gold);
}

.ht23-hero p {
    max-width: 520px;
    color: #ddd;
    font-size: 18px;
    line-height: 1.6;
}

.ht23-actions {
    display: flex;
    gap: 14px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.ht23-button {
    display: inline-flex;
    padding: 16px 25px;
    border: 1px solid var(--ht-gold);
    color: #050505;
    background: var(--ht-gold);
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.ht23-button.alt {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,.5);
}

.ht23-pillars {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    background: #0d0d0d;
    border-top: 1px solid var(--ht-border);
    border-bottom: 1px solid var(--ht-border);
}

.ht23-pillar {
    padding: 24px 18px;
    border-right: 1px solid var(--ht-border);
}

.ht23-pillar strong {
    display: block;
    color: var(--ht-gold);
    margin-bottom: 7px;
    text-transform: uppercase;
}

.ht23-pillar span {
    color: #aaa;
    font-size: 13px;
}

.ht23-section {
    padding: 65px 3vw;
}

.ht23-section-title {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 25px;
}

.ht23-section-title h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 55px);
    text-transform: uppercase;
    letter-spacing: -.04em;
}

.ht23-section-title a {
    color: var(--ht-gold);
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
}

.ht23-training-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.ht23-card {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    border: 1px solid var(--ht-border);
    background: var(--ht-panel);
}

.ht23-card-image {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    transition: transform .5s ease;
}

.ht23-card:hover .ht23-card-image {
    transform: scale(1.05);
}

.ht23-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.95),
        rgba(0,0,0,.05) 70%
    );
}

.ht23-card-content {
    position: absolute;
    z-index: 2;
    left: 25px;
    right: 25px;
    bottom: 25px;
}

.ht23-card-number {
    color: var(--ht-gold);
    font-weight: 900;
}

.ht23-card h3 {
    margin: 8px 0;
    font-size: 30px;
    text-transform: uppercase;
}

.ht23-card p {
    margin: 0;
    color: #ccc;
}

.ht23-level {
    display: inline-block;
    margin-top: 15px;
    padding: 7px 10px;
    border: 1px solid var(--ht-gold);
    color: var(--ht-gold);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.ht23-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid var(--ht-border);
    border-bottom: 1px solid var(--ht-border);
}

.ht23-stat {
    padding: 30px;
    text-align: center;
    border-right: 1px solid var(--ht-border);
}

.ht23-stat strong {
    display: block;
    color: var(--ht-gold);
    font-size: 36px;
}

.ht23-stat span {
    color: #bbb;
    font-size: 12px;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .ht23-pillars,
    .ht23-training-grid,
    .ht23-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .ht23-hero {
        min-height: 600px;
    }
}

@media (max-width: 600px) {
    .ht23-pillars,
    .ht23-training-grid,
    .ht23-stats {
        grid-template-columns: 1fr;
    }

    .ht23-hero-content {
        padding: 50px 25px;
    }
}
