/* --- CODE COMMUN (Base) --- */
body {
    margin: 0;
    padding: 0;
    background-color: #3ECCCB;
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* On remplace height par min-height et on utilise une unité plus moderne */
    min-height: 100vh; 
    min-height: 100dvh; /* "dvh" = Dynamic Viewport Height (s'adapte aux barres mobiles) */
    
    /* On empêche tout scroll inutile */
    overflow: hidden; 
    
    font-family: 'Quicksand', sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 90%; /* Pour éviter que ça touche les bords sur mobile */
}

.email-link {
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    text-align: center;
}

/* --- ADAPTATION MOBILE (Écrans de moins de 600px) --- */
@media (max-width: 600px) {
    .centered-logo {
        width: 80%; /* On agrandit le logo sur mobile pour qu'il soit visible */
        height: auto;
    }
    .email-link {
        font-size: 1.1rem; /* On réduit un peu la taille du texte sur mobile */
    }
}

/* --- ADAPTATION PC (Écrans de plus de 600px) --- */
@media (min-width: 601px) {
    .centered-logo {
        width: 500px; /* On fixe une taille précise en pixels pour le PC */
        height: auto;
    }
    .email-link {
        font-size: 1.5rem; /* On laisse le texte plus grand sur PC */
    }
}

/* Effet au survol (reste le même) */
.email-link:hover {
    color: #FFDE59;
    transform: scale(1.05);
}

.info-text {
    color: white;
    text-align: center;
    line-height: 1.6; /* Espace un peu les lignes pour la lisibilité */
    margin: 0;
    max-width: 600px; /* Évite que le texte soit trop long sur une seule ligne sur PC */
    font-weight: 500; /* Un peu moins gras que le mail pour créer une hiérarchie */
}

/* --- ADAPTATION MOBILE --- */
@media (max-width: 600px) {
    .info-text {
        font-size: 1rem;
        width: 90%; /* On s'assure que le texte ne colle pas aux bords */
    }
    /* ... tes autres réglages mobile ... */
}

/* --- ADAPTATION PC --- */
@media (min-width: 601px) {
    .info-text {
        font-size: 1.2rem;
    }
    /* ... tes autres réglages PC ... */
}
.map-link {
    color: white;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.map-link:hover {
    color: #FFDE59 /* Rappel du jaune du logo au survol */
}

.info-text {
    color: white;
    text-align: center;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
}
.no-break {
    white-space: nowrap;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}