/* Réinitialisation des styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Style général */
body {
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #C53678;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Logo */
.logo img {
    height: 80px;
}

/* Navigation */
nav {
    position: relative;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

.btn-menu {
    background: white;
    color: #FF5841;
    padding: 8px 15px;
    border-radius: 5px;
}

.btn-menu:hover {
    background: #FF5841;
    color: white;
}

/* Burger menu pour mobile */
.menu-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 50px;
        right: 0;
        background: #C53678;
        width: 400px;
        text-align: right;
    }
    nav ul.active {
        display: flex;
    }
    nav ul li {
        padding: 10px;
    }
}

/* Section accueil */
.hero {
    text-align: center;
    padding: 50px 10px;
    /*background: linear-gradient(to right, #007BFF, #00BFFF);*/
	background: white;
    color: black;
}

.hero h1 {
    font-size: 2em;
}

.hero p {
    font-size: 1.2em;
    margin-top: 10px;
}

/* Features */
.features {
    padding: 10px 20px;
    text-align: center;
}

.features h3 {
    margin-bottom: 30px;
    font-size: 1.2em;
}

.feature-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.feature {
    background: white;
    padding: 10px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Bouton inscription */
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #FF5841;
    color: white;
    border-radius: 5px;
    text-decoration: none;
}

.btn:hover {
    background: #0056b3;
}

/* Explication des termes */
.etoile {
    font-size: 0.9em;
    color: #555;
    text-align: center;
    margin-top: 20px;
}

/* Galerie photo */
.photo-gallery {
    text-align: center;
    padding: 50px 20px;
    background: white;
}

.photo-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.photo-placeholder {
    width: 300px;
}

.photo-placeholder img {
    width: 100%;
    border-radius: 10px;
}

/* Section Qui sommes-nous */
.about {
    padding: 50px 20px;
    text-align: center;
    background: #f9f9f9;
}

.about p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
}

/* Formulaire de contact */
.contact-form {
    padding: 50px 20px;
    text-align: center;
}

.contact-form form {
    max-width: 500px;
    margin: 0 auto;
}

.contact-form label {
    display: block;
    font-weight: bold;
    margin: 10px 0 5px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    padding: 10px 20px;
    background: #FF5841;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #0056b3;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #C53678;
    color: white;
    margin-top: 30px;
}

/* Responsivité */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    .feature-list {
        flex-direction: column;
        align-items: center;
    }

    .photo-container {
        flex-direction: column;
        align-items: center;
    }
}
#scrollTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    display: none; /* Caché par défaut */
    transition: opacity 0.3s, transform 0.3s;
}

#scrollTopBtn:hover {
    background-color: #0056b3;
    transform: scale(1.1);
}

#scrollTopBtn:active {
    background-color: #003f7f;
}
.etoiles {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.etoile {
    background-color: #fff;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #C53678;
    font-size: 1rem;
    color: #333;
}

.etoile strong {
    color: #C53678;
    font-weight: bold;
}

.etoile p {
    margin: 0;
}
/* Style pour la photo */

.photo-zone {
    max-width: 100%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.photo-zone:hover {
    transform: scale(1.05); /* Ajoute un effet de zoom sur le survol de l'image */
}


.photo-zone {
    max-width: 100%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Style du modal */
.modal {
    display: none; /* Cacher par défaut */
    position: fixed;
    z-index: 1; /* Placer au-dessus de tout le contenu */
    left: 0;
    top: 100px; /* Ajuste cette valeur selon l'espace nécessaire */
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Fond semi-transparent */
    padding-top: 60px;
    overflow: auto; /* Permet de scroller si l'image est trop grande */
}

/* Contenu du modal */
.modal-content {
    position: relative;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 80%;
    max-height: 80%;
}

.mySlides img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Style du bouton de fermeture */
.close {
    position: absolute;
    top: 10px;
    right: 25px;
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10; /* Assure que la croix soit toujours au-dessus du contenu */
}

.close:hover,
.close:focus {
    color: #f1f1f1; /* Change de couleur lors du survol */
}

	
