/* ==========================================================================
   NACS Show 2026 - Hero D Component (Event Detail Hero with Glass Panel)
   Tokens: NACSShow2026Tokens.css
   ========================================================================== */

/* --------------------------------------------------------------------------
   Hero D Container
   -------------------------------------------------------------------------- */
.hero-d {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
}

/* Full-bleed Background Image */
.hero-d__bg {
    position: absolute;
    inset: 0;
}

.hero-d__bg img,
.hero-d__bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --------------------------------------------------------------------------
   Content Container
   -------------------------------------------------------------------------- */
.hero-d__content {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 80px;
    width: 100%;
}

/* --------------------------------------------------------------------------
   Frosted Glass Panel
   -------------------------------------------------------------------------- */
.hero-d__panel {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    width: 541px;
    padding: 40px;
    background: var(--nacs-glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
}

/* --------------------------------------------------------------------------
   Eyebrow + Heading
   -------------------------------------------------------------------------- */
.hero-d__header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    width: 100%;
}

/* Eyebrow */
.hero-d__eyebrow {
    display: flex;
    gap: 10px;
    align-items: center;
    backdrop-filter: blur(10px);
}

.hero-d__eyebrow-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #78BE20, #00A82D);
    flex-shrink: 0;
}

.hero-d__eyebrow-text {
    font-family: var(--nacs-font-gotham);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--nacs-color-white);
    text-align: center;
}

/* Heading */
.hero-d__heading {
    font-family: var(--nacs-font-gotham);
    font-weight: 700;
    font-size: 64px;
    line-height: 72px;
    letter-spacing: 0;
    color: var(--nacs-color-white);
    text-transform: capitalize;
    margin: 0;
    width: 100%;
}

/* --------------------------------------------------------------------------
   Event Detail Rows (with icons)
   -------------------------------------------------------------------------- */
.hero-d__details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    width: 100%;
}

.hero-d__detail-row {
    display: flex;
    gap: 22px;
    align-items: center;
    width: 100%;
}

.hero-d__detail-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-d__detail-icon i {
    font-size: 20px;
    color: var(--nacs-color-green-light);
}

.hero-d__detail-text {
    font-family: var(--nacs-font-gotham);
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0;
    color: var(--nacs-color-white);
}

/* --------------------------------------------------------------------------
   Description
   -------------------------------------------------------------------------- */
.hero-d__description-container {
    width: 100%;
}

.hero-d__description {
    font-family: var(--nacs-font-gotham);
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0;
    color: var(--nacs-color-white);
    margin: 0;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.hero-d__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 21px;
    align-items: center;
    align-content: center;
    width: 100%;
}

.hero-d__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 24px;
    border-radius: 360px;
    text-decoration: none;
    font-family: var(--nacs-font-gotham);
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-d__btn:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    text-decoration: none;
}

/* Primary Button (yellow) */
.hero-d__btn--primary {
    background-color: var(--nacs-color-yellow);
    color: var(--nacs-color-black);
}

/* Secondary Button (white with green text) */
.hero-d__btn--secondary {
    background-color: var(--nacs-color-white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #1A5E20;
}

/* --------------------------------------------------------------------------
   Tag Chip
   -------------------------------------------------------------------------- */
.hero-d__tag-container {
    display: flex;
    align-items: center;
}

.hero-d__tag {
    padding: 8px 20px;
    background: var(--nacs-tag-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 4px;
    font-family: var(--nacs-font-gotham);
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: var(--nacs-color-black);
    letter-spacing: 0;
}

/* --------------------------------------------------------------------------
   Mobile Styles (max-width: 768px)
   -------------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
    .hero-d__content {
        padding: 64px 20px;
    }

    .hero-d__panel {
        width: 100%;
        gap: 24px;
        padding: 32px 20px;
    }

    .hero-d__header {
        gap: 20px;
    }

    .hero-d__eyebrow-text {
        font-size: 12px;
        line-height: 16px;
    }

    .hero-d__heading {
        font-size: 32px;
        line-height: 40px;
    }

    .hero-d__details {
        gap: 12px;
    }

    .hero-d__detail-text {
        font-size: 16px;
        line-height: 18px;
    }

    .hero-d__description {
        font-size: 18px;
        line-height: 24px;
    }

    .hero-d__buttons {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media screen and (max-width: 480px) {
    .hero-d__heading {
        font-size: 28px;
        line-height: 36px;
    }

    .hero-d__detail-text {
        font-size: 14px;
        line-height: 18px;
    }

    .hero-d__description {
        font-size: 16px;
        line-height: 22px;
    }
}
