/* ================================================
   HERO — Full-screen landing hero
   ================================================ */

.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    /* Real photo of Hale's signature lobster roll. To swap, drop a new file in
       images/hero/ and change this one line. */
    --hero-img: url('../images/hero/lobster-roll.jpg');
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: var(--hero-img);
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

/* Symmetric darkening so the nav + gold hero-tag stay legible over any photo */
.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, transparent 30%, transparent 100%);
    pointer-events: none;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay-gradient);
}

.hero-content {
    position: relative;
    z-index: var(--z-above);
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--space-lg) 6rem;
}

.hero-tag {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-tag::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--accent);
}

.hero h1 {
    color: #fff;
    max-width: 800px;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 600px;
    }

    .hero-content {
        padding: 0 var(--space-md) 4rem;
    }

    .hero-buttons {
        flex-direction: column;
    }
}
