
/* ── HERO ── */
#hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: -20px;
    /* compensate scale + blur overflow */
    /*background-image: url('/assets/img/assiette_terroir.webp');*/
    background-image: url('/assets/img/plat8.webp');
    background-size: cover;
    background-position: center 30%;
    transform: scale(1.05);
    transition: transform 8s ease;

}

#hero.loaded .hero-bg {
    transform: scale(1);
}

#hero.loaded .hero-blur {
    transform: scale(1);
}

.hero-blur-1 {
    backdrop-filter: none;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 38%);
    mask-image: linear-gradient(to bottom, black 0%, transparent 38%);
    filter: blur(14px);
}

.hero-blur-2 {
    -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 60%);
    mask-image: linear-gradient(to bottom, black 0%, transparent 60%);
    filter: blur(7px);
}

.hero-blur-3 {
    -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 80%);
    mask-image: linear-gradient(to bottom, black 0%, transparent 80%);
    filter: blur(3px);
}

#hero.loaded .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(20, 16, 10, 0.45) 0%,
            rgba(20, 16, 10, 0.25) 50%,
            rgba(20, 16, 10, 0.55) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 52px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s 0.3s, transform 0.9s 0.3s;
    background: rgba(184, 155, 112, 0.13);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

#hero.loaded .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-eyebrow {
    font-size: 1.2rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 18px;
    text-shadow:
        0 1px 8px rgba(0, 0, 0, 0.8),
        0 0 24px rgba(0, 0, 0, 0.6);
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    color: #fff;
    line-height: 1.05;
    margin-bottom: 10px;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.75),
        0 4px 16px rgba(0, 0, 0, 0.55),
        0 8px 40px rgba(0, 0, 0, 0.40);
}

.hero-subtitle {
    font-size: 1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #fff;
    ;
    margin-bottom: 36px;
    text-shadow:
        0 1px 6px rgba(0, 0, 0, 0.85),
        0 2px 20px rgba(0, 0, 0, 0.55);

}

.hero-badge {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.55);
    padding: 12px 32px;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: var(--green-dark);
    font-weight: bold;
    text-transform: uppercase;
    background: rgb(239, 234, 234);
    backdrop-filter: blur(4px);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.15);
    }
}