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

body, html {
    height: 100%;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: url('../img/bg.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* Superposition */
.overlay {
    background-color: rgba(0, 0, 0, 0.6); /* assombrit le fond */
    height: 100%;
    width: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

/* Logo */
.logo {
    max-width: 200px;
    width: 100%;
    margin-bottom: 30px;
}

/* Texte contact */
.contact h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact p {
    font-size: 1.2rem;
    margin: 5px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .contact h1 {
        font-size: 2rem;
    }

    .contact p {
        font-size: 1rem;
    }
}
