/* ==========================================================================
   NACS Show 2026 - Hero C Component (Page Hero with Full-Width Image)
   Tokens: NACSShow2026Tokens.css
   ========================================================================== */

/* --------------------------------------------------------------------------
   Hero C Container
   -------------------------------------------------------------------------- */
.hero-c {
    position: relative;
    width: 100%;
    background-color: var(--nacs-color-white);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* --------------------------------------------------------------------------
   Content Container (with dot pattern background)
   -------------------------------------------------------------------------- */
.hero-c__content {
    position: relative;
    width: 100%;
    padding: 64px 80px;
}

/* Background aligned to text container (max-width: 1280px, centered) */
.hero-c__bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 80px;
    right: 80px;
    max-width: 1280px;
    margin: 0 auto;
    pointer-events: none;
}

.hero-c__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-c__gradient {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 80px;
    right: 80px;
    max-width: 1280px;
    margin: 0 auto;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 75%, var(--nacs-color-white) 100%);
    pointer-events: none;
}

/* --------------------------------------------------------------------------
   Text Container (Two Columns)
   -------------------------------------------------------------------------- */
.hero-c__text-container {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 57px;
    align-items: flex-start;
    justify-content: center;
    max-width: 1280px;
    margin: 0 auto;
}

/* Title Column (Left) */
.hero-c__title-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
}

/* Eyebrow */
.hero-c__eyebrow {
    display: flex;
    gap: 10px;
    align-items: center;
    backdrop-filter: blur(10px);
}

.hero-c__eyebrow-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #78BE20, #00A82D);
    flex-shrink: 0;
}

.hero-c__eyebrow-text {
    font-family: var(--nacs-font-gotham);
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--nacs-color-navy);
    text-align: center;
}

/* Heading */
.hero-c__heading {
    font-family: var(--nacs-font-gotham);
    font-weight: 700;
    font-size: 56px;
    line-height: 64px;
    letter-spacing: 0;
    color: var(--nacs-color-navy);
    text-transform: capitalize;
    margin: 0;
}

/* Description Column (Right) */
.hero-c__desc-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
}

.hero-c__description {
    font-family: var(--nacs-font-gotham);
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0;
    color: var(--nacs-color-black);
    margin: 0;
}

/* CTA Button */
.hero-c__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    padding: 0 20px;
    background-color: var(--nacs-color-yellow);
    border-radius: 360px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-c__cta:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.hero-c__cta-text {
    font-family: var(--nacs-font-gotham);
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--nacs-color-navy);
}

.hero-c__cta-arrow {
    width: 24px;
    height: 24px;
    color: var(--nacs-color-navy);
}

/* --------------------------------------------------------------------------
   Full-Width Hero Image
   -------------------------------------------------------------------------- */
.hero-c__image-container {
    width: 100%;
    height: 502px;
    overflow: hidden;
}

.hero-c__image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-c__image-link {
    display: block;
    width: 100%;
    height: 100%;
}

/* --------------------------------------------------------------------------
   Mobile Styles (max-width: 768px)
   -------------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
    .hero-c__content {
        padding: 64px 20px;
    }

    .hero-c__bg,
    .hero-c__gradient {
        left: 20px;
        right: 20px;
    }

    .hero-c__text-container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .hero-c__title-col,
    .hero-c__desc-col {
        width: 100%;
    }

    .hero-c__desc-col {
        background-color: var(--nacs-color-white);
    }

    .hero-c__heading {
        font-size: 56px;
        line-height: 64px;
    }

    .hero-c__image-container {
        height: 502px;
    }
}
