/* Importation des polices */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Arial&display=swap');
/* Style du header */
h1, h2, h3, button {
    font-family: 'Playfair Display', serif;
}
body, p, input, textarea, label {
    font-family: 'Poppins', sans-serif;
}


header {
    background-color: #dadbdd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

/* Logo aligné à gauche */
.logo img {
    height: 50px; /* Ajuste selon ton logo */
}

/* Menu aligné à droite */
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

/* Style des liens */
nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: black;
    font-size: 16px;
    transition: font-weight 0.3s ease;
}

/* Effet au survol */
nav ul li a:hover {
    font-weight: bold;
}
/* Section Héros */
.hero {
    position: relative;
    width: 100vw; /* Largeur totale */
    height: 60vh; /* Hauteur ajustée */
    display: flex;
    justify-content: center; /* Centre horizontalement */
    align-items: center; /* Centre verticalement */
    overflow: hidden;
    text-align: center; /* Centrage du texte */
}

/* Image de fond */
.hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* Place l'image en arrière-plan */
}

/* Conteneur des titres */
.titres {
    position: absolute;
    top: 10%; /* Place le texte en haut de l'image */
    left: 50%;
    transform: translateX(-50%); /* Centre le texte horizontalement */
    text-align: center;
    z-index: 1; /* Assure que le texte est devant l’image */
}

/* Style du texte */
.titres h2, .titres h1 {
    color: white;
    text-shadow: 2px 2px 5px rgb(0, 0, 0); /* Contour noir */
    margin: 5px 0;
}

/* Style du H2 (au-dessus) */
.titres h2 {
    font-size: 24px;
    font-weight: lighter;
}

/* Style du H1 (en dessous du H2) */
.titres h1 {
    font-size: 36px;
    font-weight: bold;
}
/* Section Services */
/* Effet au survol du service */
.service:hover img {
    filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.3)); /* Ombre portée */
    transition: filter 0.3s ease-in-out;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Adaptable */
    gap: 20px;
    padding: 50px 10%;
    background-color: #f5f5f5;
    text-align: center;
}

/* Style de chaque service */
.service {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Effet au survol */
.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Icônes des services */
.service img {
    width: 80px; /* Taille ajustable */
    margin-bottom: 10px;
}

/* Titres des services */
.service h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
}

/* Texte descriptif */
.service p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

/* Boutons */
.service button {
    background: #444;
    color: white;
    border: none;
    padding: 10px 15px;
    margin: 5px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
}

/* Effet au survol des boutons */
.service button:hover {
    background: #777;
}

/* Galerie cachée par défaut */
.service-details {
    display: none;
    margin-top: 15px;
}

/* Galerie d'images */
.gallery img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    margin: 5px;
}

/* Bouton de fermeture */
.close-btn {
    background: red;
    color: white;
}
/* Section Réseaux Sociaux */
.socials {
    display: flex;
    justify-content: center; /* Centre les icônes */
    align-items: center;
    gap: 20px; /* Espacement entre les icônes */
    padding: 30px 0;
    background-color: #f5f5f5;
}

/* Style des icônes */
.socials a {
    display: inline-block;
    width: 50px; /* Taille des icônes */
    height: 50px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Ajustement des images */
.socials a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Effet au survol : agrandissement + légère ombre */
.socials a:hover {
    transform: scale(1.2); /* Effet zoom */
    filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.3)); /* Ombre légère */
}


/* Section FAQ */
.faq {
    background-color: #dadbdd; /* Fond gris */
    padding: 50px 10%;
    text-align: center;
}

/* Titre de la section */
.faq h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}



/* Style des questions */
.faq-item {
    text-align: left;
    background: white;
    padding: 15px 20px;
    margin: 10px auto;
    max-width: 600px; /* Centrage */
    border-radius: 8px; /* Coins arrondis */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Ombre légère */
    font-size: 18px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* Section Galerie */
.gallery-section {
    background-color: #dadbdd; /* Fond gris bien appliqué */
    color: white; /* Texte en blanc */
    text-align: center;
    padding: 50px 10%;
}

/* Titre de la galerie */
.gallery-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: white; /* Assurer que le titre est bien blanc */
}

/* Grille d'images uniformisées */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Adaptable */
    gap: 15px;
    justify-content: center;
}

/* Images de la galerie uniformisées */
.gallery img {
    width: 100%; /* Occupe tout l’espace de la case */
    height: 200px; /* Hauteur uniforme */
    object-fit: cover; /* Recadre proprement sans distorsion */
    border-radius: 8px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    cursor: pointer;
}

/* Effet au survol */
.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

/* Réponses cachées par défaut */
.faq-content {
    text-align: left;
    max-width: 600px;
    margin: auto;
    padding: 10px 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    color: #555;
    display: none; /* Caché par défaut */
}
/* Style du footer */
.footer {
    background-color: #222; /* Fond sombre */
    color: white;
    text-align: center;
    padding: 20px;
}

/* Contenu du footer */
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* Texte du footer */
.footer p {
    font-size: 14px;
    margin: 0;
}

/* Navigation du footer */
.footer-nav {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

/* Liens du footer */
.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

/* Effet au survol des liens */
.footer-nav a:hover {
    color: #ffcc00; /* Change de couleur au survol */
}

/* Icônes des réseaux sociaux */
.footer-nav img {
    width: 25px;
    height: 25px;
    transition: transform 0.3s ease;
}

/* Effet au survol des icônes */
.footer-nav a:hover img {
    transform: scale(1.2);
}
/* Section Contact */
.contact-section {
    background-color: #dadbdd; /* Fond gris */
    color: white; /* Texte en blanc */
    text-align: center;
    padding: 50px 10%;
}

/* Titre de la section */
.contact-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: white;
}

/* Section Contact */
.contact-section {
    background-color: #000000; /* Fond gris */
    color: white; /* Texte en blanc */
    text-align: center;
    padding: 50px 10%;
}

/* Titre de la section */
.contact-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: white;
}

/* Formulaire */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: auto;
}

/* Groupes de champs */
.form-group {
    display: flex;
    gap: 10px;
}

.form-group input {
    flex: 1;
    padding: 12px;
    border: 1px solid white;
    border-radius: 5px;
    font-size: 16px;
}

/* Options d'événement */
.event-options {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    color: white;
    text-align: left;
}

/* Champ de message */
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid white;
    border-radius: 5px;
    font-size: 16px;
    height: 100px;
}

/* Bouton de soumission */
.contact-form button {
    background: #ffcc00;
    color: black;
    border: none;
    padding: 15px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #e6b800;
}
