/* hero.css */
.hero-banner {
    width: 100%;
    height: 420px;
    background: url('assets/images/Background_Banner.png') center/cover no-repeat fixed;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 5px;
    border-bottom: 3px solid var(--bright-orange);
}

.hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.55) 42%, rgba(0,0,0,0.15) 70%, rgba(0,0,0,0.05) 100%);
    z-index: 1;
}

.hero-corner {
    position: absolute;
    width: 26px;
    height: 26px;
    border: 2px solid var(--bright-orange);
    z-index: 3;
    opacity: 0.85;
}
.hero-corner.tl { top: 18px; left: 18px; border-right: none; border-bottom: none; }
.hero-corner.tr { top: 18px; right: 18px; border-left: none; border-bottom: none; }
.hero-corner.bl { bottom: 18px; left: 18px; border-right: none; border-top: none; }
.hero-corner.br { bottom: 18px; right: 18px; border-left: none; border-top: none; }

.hero-text {
    position: absolute;
    left: 48px;
    bottom: 44px;
    z-index: 2;
    max-width: 560px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bright-orange);
    margin-bottom: 14px;
}

.hero-eyebrow .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red-orange);
    box-shadow: 0 0 0 0 rgba(234, 78, 61, 0.7);
    animation: livePulse 1.8s infinite;
}

.hero-headline {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.005em;
    color: var(--pure-white);
    margin: 0 0 14px 0;
}

.hero-headline span { color: var(--bright-orange); }

.hero-sub {
    color: var(--light-gray);
    font-size: 1.05rem;
    max-width: 420px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%; 
    z-index: 1;
    position: relative;
}

.hero-graphic {
    height: 100%;
    width: auto; /* Maintains the correct aspect ratio */
    max-width: 100%; /* Prevents it from breaking the screen on mobile */
    object-fit: contain;
    animation: slideUp 1s ease-out;
}

/* Slide up animation */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}
