/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body with background */
body {
    height: 100vh;
    background: url('foggy-montblanc.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Bebas Neue', sans-serif;
    display: flex;
    align-items: flex-start; /* CHANGÉ ici */
    justify-content: center;
}

/* Overlay to align top content */
.overlay {
    text-align: center;
    color: #f0f0f0;
    width: 100%;
    padding-top: 100px; /* AJOUT ici pour espace haut */
    padding-left: 20px;
    padding-right: 20px;
}

/* Slogan */
.slogan {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Main message */
h1 {
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    mix-blend-mode: difference;
}

/* Responsive */
@media (max-width: 600px) {
    h1 {
        font-size: 2.5rem;
    }

    .slogan {
        font-size: 1rem;
    }
}
