* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* ===== HERO PLEIN ÉCRAN ===== */
#hero {
    height: 100vh;
    background-image: url('../assets/images/hero.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(2px);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 24px;
    max-width: 820px;
}

.hero-content p {
    font-size: clamp(1.1rem, 3.5vw, 1.8rem);
    line-height: 1.55;
    margin-bottom: 36px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-content a {
    background-color: #E87722;
    color: white;
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    font-weight: 700;
    padding: 14px 52px;
    border-radius: 10px;
    display: inline-block;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 16px rgba(232,119,34,0.4);
}

.hero-content a:hover {
    background-color: #d06618;
    transform: translateY(-2px);
}

/* ===== RESPONSIVE MOBILE ===== */
@media (max-width: 600px) {
    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-content a {
        padding: 12px 36px;
        font-size: 0.95rem;
    }
}