/**
 * Showroom Hero Section - Light Theme
 * Framer-inspired, Rick Rubin minimalism, Neural Partners brand
 * Consistent hero structure across all showroom pages
 */

/* ==========================================================================
   Gradient Text Utility
   ========================================================================== */
.neural-gradient-text {
    background: linear-gradient(135deg, var(--neural-purple, #3c1361), var(--neural-orange, #d97706));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* ==========================================================================
   Showroom Hero - Base Styles
   ========================================================================== */
.showroom-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--neutral-warm, #FAF9F7);
    padding: 0;
    overflow: hidden;
}

.showroom-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.showroom-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(250, 249, 247, 0.75) 100%);
    z-index: 1;
}

/* ==========================================================================
   Industry-Specific Hero Backgrounds
   ========================================================================== */
.showroom-hero--landing::before {
    background-image: url('/assets/images/labs-homepage.webp');
    opacity: 0.12;
}

.showroom-hero--furniture::before {
    background-image: url('/assets/images/showroom-furniture-hero.webp');
    opacity: 0.18;
}

.showroom-hero--lighting::before {
    background-image: url('/assets/images/showroom-lighting-hero.webp');
    opacity: 0.2;
}

.showroom-hero--cannabis::before {
    background-image: url('/assets/images/showroom-cannabis-hero.webp');
    opacity: 0.15;
}

.showroom-hero--marina-auto::before {
    background-image: url('/assets/images/showroom-marina-auto-hero.webp');
    opacity: 0.18;
}

/* Fallback to generic if specific images don't exist */
.showroom-hero--furniture::before,
.showroom-hero--lighting::before,
.showroom-hero--cannabis::before,
.showroom-hero--marina-auto::before {
    background-image: url('/assets/images/labs-homepage.webp');
}

/* ==========================================================================
   Hero Content Container
   ========================================================================== */
.showroom-hero__container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 5vw;
    position: relative;
    z-index: 2;
}

.showroom-hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.showroom-hero__text {
    text-align: left;
}

.showroom-hero__visual {
    /* Reserved for future visual elements */
}

/* ==========================================================================
   Hero Typography - Rick Rubin Minimalism
   ========================================================================== */
.showroom-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--neural-grey, #6B7280);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.showroom-hero__breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.showroom-hero__breadcrumb a:hover {
    color: var(--neural-purple, #3c1361);
}

.showroom-hero__breadcrumb-separator {
    color: var(--neural-orange, #d97706);
    font-weight: 300;
}

.showroom-hero__eyebrow {
    display: block;
    color: var(--neural-purple, #3c1361);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.showroom-hero__title {
    color: #111827;
    font-family: var(--font-primary, 'Open Sans', system-ui, sans-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 200;
    line-height: 1.1;
    margin: 0 0 1.5rem 0;
    letter-spacing: 0.03em;
    position: relative;
    padding-bottom: 1.5rem;
}

.showroom-hero__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--neural-purple, #3c1361), var(--neural-orange, #d97706));
}

.showroom-hero__tagline {
    color: var(--neural-orange, #d97706);
    font-size: 1.15rem;
    font-weight: 400;
    margin: 0 0 1.25rem 0;
    letter-spacing: 0.01em;
}

.showroom-hero__description {
    color: #374151;
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.7;
    margin: 0 0 2rem 0;
    max-width: 600px;
}

/* ==========================================================================
   Hero CTA Button
   ========================================================================== */
.showroom-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--neural-purple, #3c1361), var(--neural-orange, #d97706));
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(60, 19, 97, 0.2);
}

.showroom-hero__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(60, 19, 97, 0.3);
}

.showroom-hero__cta-arrow {
    transition: transform 0.3s ease;
}

.showroom-hero__cta:hover .showroom-hero__cta-arrow {
    transform: translateX(4px);
}

/* ==========================================================================
   Hero Industry Tags - Landing Page Only
   ========================================================================== */
.showroom-hero__industries {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.showroom-hero__industry-tag {
    padding: 0.5rem 1rem;
    background: rgba(60, 19, 97, 0.08);
    border: 1px solid rgba(60, 19, 97, 0.15);
    border-radius: 100px;
    color: var(--neural-purple, #3c1361);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.2s ease;
}

.showroom-hero__industry-tag:hover {
    background: rgba(60, 19, 97, 0.12);
    border-color: rgba(60, 19, 97, 0.25);
    transform: translateY(-1px);
}

/* ==========================================================================
   Inline Text Links
   ========================================================================== */
.showroom-hero .inline-text-link {
    color: var(--neural-purple, #3c1361);
    text-decoration: underline;
    text-decoration-color: rgba(60, 19, 97, 0.3);
    text-underline-offset: 2px;
    transition: all 0.2s ease;
}

.showroom-hero .inline-text-link:hover {
    color: var(--neural-orange, #d97706);
    text-decoration-color: rgba(217, 119, 6, 0.5);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .showroom-hero__content {
        gap: 3rem;
    }

    .showroom-hero__title {
        font-size: clamp(2rem, 4.5vw, 3.5rem);
    }
}

@media (max-width: 768px) {
    .showroom-hero {
        min-height: auto;
        padding: calc(var(--header-height, 75px) + 2rem) 0 3rem;
    }

    .showroom-hero__content {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .showroom-hero__title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }

    .showroom-hero__description {
        font-size: 1rem;
    }

    .showroom-hero__tagline {
        font-size: 1rem;
    }

    .showroom-hero__eyebrow {
        font-size: 0.7rem;
    }

    .showroom-hero__visual {
        display: none;
    }

    .showroom-hero__industries {
        margin-top: 2rem;
    }

    .showroom-hero__industry-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .showroom-hero__container {
        padding: 0 1.25rem;
    }

    .showroom-hero__title {
        font-size: 1.6rem;
    }

    .showroom-hero__cta {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   Reduced Motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    .showroom-hero__cta,
    .showroom-hero__industry-tag,
    .showroom-hero .inline-text-link {
        transition: none;
    }
}
