/* ==========================================================================
   NACS Show 2026 - Hero B Component (Page Hero with Image Mosaic)
   Tokens: NACSShow2026Tokens.css
   ========================================================================== */

/* --------------------------------------------------------------------------
   Hero B Container
   -------------------------------------------------------------------------- */
.hero-b {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: var(--nacs-color-white);
}

.hero-b__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-b__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-b__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(-58deg, rgba(255, 255, 255, 0) 33%, rgb(255, 255, 255) 100%);
    pointer-events: none;
}

/* --------------------------------------------------------------------------
   Content Container (Heading + Description)
   -------------------------------------------------------------------------- */
.hero-b__content {
    position: relative;
    z-index: 1;
    padding: 80px;
}

.hero-b__text-container {
    display: flex;
    gap: 171px;
    align-items: flex-start;
    justify-content: center;
    max-width: 1280px;
    margin: 0 auto;
}

/* Title Column (Left) */
.hero-b__title-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}

/* Eyebrow */
.hero-b__eyebrow {
    display: flex;
    gap: 10px;
    align-items: center;
    backdrop-filter: blur(10px);
}

.hero-b__eyebrow-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #78BE20, #00A82D);
    flex-shrink: 0;
}

.hero-b__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-b__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-b__desc-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
}

.hero-b__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-b__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-b__cta:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.hero-b__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-b__cta-arrow {
    width: 24px;
    height: 24px;
    color: var(--nacs-color-navy);
}

/* --------------------------------------------------------------------------
   Image Mosaic (Desktop)
   -------------------------------------------------------------------------- */
.hero-b__mosaic {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 20px;
    padding: 0 80px 80px;
    max-width: 1440px;
    margin: 0 auto;
    height: 486px;
}

/* Left tall image */
.hero-b__mosaic-left {
    flex: 0 0 305px;
    height: 486px;
}

/* Center column */
.hero-b__mosaic-center {
    flex: 0 0 522px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 486px;
}

.hero-b__mosaic-center-top {
    height: 220px;
}

.hero-b__mosaic-center-bottom {
    display: flex;
    gap: 20px;
    flex: 1;
}

.hero-b__mosaic-center-bottom-item {
    flex: 1;
}

/* Right tall image */
.hero-b__mosaic-right {
    flex: 1;
    height: 486px;
}

/* --------------------------------------------------------------------------
   Image Card
   -------------------------------------------------------------------------- */
.hero-b__image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
}

.hero-b__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-b__image-link {
    display: block;
    width: 100%;
    height: 100%;
}

/* Tag Badge */
.hero-b__tag {
    position: absolute;
    top: 18px;
    left: 18px;
    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-b__gradient {
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.76) 0%, rgba(255, 255, 255, 0) 100%);
    }

    .hero-b__content {
        padding: 32px 20px;
    }

    .hero-b__text-container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .hero-b__title-col,
    .hero-b__desc-col {
        width: 100%;
    }

    .hero-b__heading {
        font-size: 56px;
        line-height: 64px;
    }

    /* Mosaic - stacked layout */
    .hero-b__mosaic {
        flex-direction: column;
        height: auto;
        padding: 0 20px 32px;
        gap: 24px;
    }

    .hero-b__mosaic-left {
        flex: none;
        width: 100%;
        height: 249px;
    }

    .hero-b__mosaic-center {
        flex: none;
        width: 100%;
        height: auto;
        gap: 24px;
    }

    .hero-b__mosaic-center-top {
        height: 175px;
    }

    .hero-b__mosaic-center-bottom {
        gap: 20px;
    }

    .hero-b__mosaic-center-bottom-item {
        height: 289px;
    }

    .hero-b__mosaic-right {
        flex: none;
        width: 100%;
        height: 376px;
    }
}
