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

/* --- Style général --- */
html, body {
    height: 100%;
}

body {
    min-height: 100vh;
    font-family: Arial, sans-serif;
    text-align: center;
    background: linear-gradient(to bottom, #cde6fa 0%, #ffffff 80%);
    display: flex;
    flex-direction: column;
}

/* --- Conteneur principal --- */
.container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 50px;
    flex: 1;
}

/* --- Logo principal --- */
.logo {
    width: 300px;
    max-width: 90%;
}

/* --- Texte principal --- */
h1 {
    font-size: 28px;
    font-weight: bold;
    margin-top: 20px;
    color: #000;
    line-height: 1.4;
}

h1 span {
    color: #0074c7;
}

/* --- Vidéo centrée et responsive --- */
.video-container {
    display: flex;
    justify-content: center;
    margin: 30px 0;
    width: 100%;
    z-index: 1;
}

video {
    width: 80%;
    max-width: 800px;
    height: auto;
    max-height: 300px;
    border-radius: 10px;
    object-fit: cover;
}
/* --- Boutons App Store & Google Play --- 

*/ .buttons {
    
    display: flex; 
    justify-content: center; 
    align-items: center; gap: 20px; 
    margin-top: 20px; } 
    
    .buttons img { width: 180px; height: 60px; object-fit: contain; display: block; cursor: pointer; transition: transform 0.3s ease; } 
    
    .buttons img:hover { transform: scale(1.05); }

/* --- Phrase de localisation --- */
.localisation {
    margin-top: 25px;
    font-size: 1.3rem;
    color: #000000;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

/* --- Animation d'apparition --- */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

h1, .localisation {
    animation: fadeInUp 1s ease forwards;
}

.localisation {
    animation-delay: 0.3s;
}

/* --- Section contact en dessous du texte --- */
.contact-inline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 25px;
    flex-wrap: wrap;
}

/* --- Boutons contact --- */
.btn-contact {
    border: 2px solid #0074c7;       /* contour bleu WashZone */
    color: #0074c7;
    background: transparent;
    padding: 12px 25px;
    border-radius: 40px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    min-width: 260px;
    white-space: nowrap;
    box-sizing: border-box;
}

.btn-contact:hover {
    background: #0074c7;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-contact i {
    font-size: 1rem;
}

/* --- Responsive mobile --- */
@media (max-width: 600px) {
    .logo {
        width: 220px;
    }

    h1 {
        font-size: 22px;
    }

    .buttons {
        gap: 15px;
    }

    .buttons img {
        width: 150px;
        height: 50px;
    }

    video {
        width: 90%;
        max-width: 300px;
        height: auto;
        max-height: 150px;
    }

    .localisation {
        font-size: 1.1rem;
    }

    .contact-inline {
        flex-direction: column;
        gap: 12px;
    }

    .btn-contact {
        width: 85%;
        font-size: 1rem;
        padding: 10px 0;
    }
}
html, body {
    background-color: #feffff;
    background-attachment: fixed;
}
.contact-inline {
    margin-bottom: 40px;
}
.localisation {
    margin-top: 25px;
    font-size: 1.3rem;
    color: #000000;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    padding: 0 20px; /* ✅ ajoute de l’espace à gauche et à droite */
}
