/* style.css */

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.logo {
    max-height: 120px;
}

/* Bouton WhatsApp flottant */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    text-decoration: none;
    z-index: 1000;
}

.whatsapp-btn:hover {
    background-color: #1EBE57;
    color: white;
}

section .row {
    margin-bottom: 2rem;
}

/* Style pour l'en-tête plein écran */
.full-height-header {
    height: 90vh; /* Hauteur de 90% de la fenêtre */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.full-height-header .logo {
    max-height: 220px; /* Taille du logo augmentée */
}
