/* Hero Component Styles — interior pages.
   Aligned with the lp-b2c landing system: navy gradient, DM Serif headline,
   Plus Jakarta body, no Bootstrap blue. */

.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-blue) 100%);
    color: #ffffff;
    padding: clamp(4rem, 7vw, 6rem) 0;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 18% 20%, rgba(255, 184, 0, 0.10) 0%, transparent 45%),
      radial-gradient(circle at 82% 75%, rgba(0, 200, 150, 0.10) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.hero-section > .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-family: var(--font-display);
    font-weight: 400;
    color: #ffffff;
    font-size: clamp(2rem, 3vw + 1rem, 3.25rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
    animation: hero-rise 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-section .lead {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.1rem;
    line-height: 1.55;
    max-width: 56ch;
    animation: hero-rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
}

.hero-section--centered .lead {
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    animation: hero-rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.24s both;
    margin-top: 1.5rem;
}

.hero-cta .btn-warning,
.hero-cta .btn-primary {
    background-color: var(--brand-gold);
    border-color: var(--brand-gold);
    color: var(--text-900);
    font-weight: 700;
    box-shadow: 0 8px 22px rgba(255, 184, 0, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta .btn-warning:hover,
.hero-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 184, 0, 0.36);
    background-color: #f5b000;
    border-color: #f5b000;
    color: var(--text-900);
}

.hero-section img {
    animation: hero-rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.32s both;
    max-height: 500px;
    object-fit: contain;
}

@keyframes hero-rise {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 991.98px) {
    .hero-section {
        text-align: center;
    }

    .hero-section img {
        margin-top: var(--space-8);
        max-height: 350px;
    }
}

@media (max-width: 767.98px) {
    .hero-section img {
        max-height: 280px;
    }

    .hero-cta .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-section h1,
    .hero-section .lead,
    .hero-cta,
    .hero-section img {
        animation: none;
    }
}
