/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}


/* Styles pour le header - Version mise à jour */
header {
    position: sticky; /* Changé de fixed à sticky */
    width: 100%;
    top: 0;
    z-index: 1000;
    background: white; /* Ajout d'un fond pour éviter la transparence */
}

.header-top {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0 15px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #017593;
}

.header-info {
    background-color: #f8f9fa;
    color: #017593;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 8px 15px;
    font-size: 0.9rem;
    border-top: 0px solid #eaeaea;
}

/* Media Queries pour le header */
@media (max-width: 768px) {
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    .header-info {
        flex-direction: column;
        gap: 5px;
        padding: 8px;
    }
}
/* Styles pour le main */
main {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 0; /* Supprimé le margin-top de 80px */
}

/* Styles pour le footer */
footer {
    background-color: #017593;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.social-links a {
    margin: 0 0.5rem;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: inherit;
}

.social-links a:hover {
    transform: scale(1.2);
}

footer nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 1rem 0;
}

footer nav ul li {
    margin: 0 1rem;
}

footer nav ul li a {
    color: #fff;
    text-decoration: none;
}

footer nav ul li a:hover {
    color: #ccc;
}

/* Styles pour les images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Styles pour la bannière */
.hero {
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    margin-bottom: 2rem;
    border: 2px solid #017593;
    border-radius: 10px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #017593;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.hero img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Styles pour la page d'accueil */
.about {
    background-color: #fff;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 2px solid #017593;
    border-radius: 10px;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #017593;
}

.about p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.atouts {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.atouts h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #017593;
}

.atouts ul {
    list-style-type: none;
    padding-left: 0;
}

.atouts li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.atouts li:before {
    content: "✔";
    color: #017593;
    position: absolute;
    left: 0;
}

.credo {
    font-style: italic;
    color: #017593;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.conclusion {
    font-weight: bold;
    color: #017593;
    margin-top: 1rem;
}

/* Styles pour la section Témoignages */
.testimonials {
    background-color: #fff;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 2px solid #017593;
    border-radius: 10px;
}

.testimonials h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #017593;
}

.testimonial {
    background-color: #f9f9f9;
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 4px solid #017593;
}

.testimonial p {
    margin-bottom: 0.5rem;
    font-style: italic;
}

.author {
    font-style: normal;
    font-weight: bold;
    color: #017593;
}


/* Styles pour la page Restaurant */
.restaurant {
    background-color: #fff;
    padding: 2rem;
    border: 2px solid #017593;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.restaurant h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
    color: #017593;
}

.subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #333;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.description {
    margin-bottom: 2rem;
    text-align: center;
}

.description p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Styles des catégories */
.restaurant .categorie {
    background-color: #f9f9f9;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    border-left: 4px solid #017593;
    display: flex;
    flex-direction: column;
}

.restaurant .categorie-content {
    flex: 1;
}

.restaurant .categorie h2 {
    font-size: 1.8rem;
    color: #017593;
    margin-bottom: 1rem;
}

.restaurant .categorie img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 1rem;
}

/* Section Service */
.service-section {
    background-color: #f9f9f9;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid #017593;
    border-radius: 0 10px 10px 0;
}

.service-section h2 {
    font-size: 1.8rem;
    color: #017593;
    margin-bottom: 1rem;
}

.service-section ul {
    list-style-type: none;
    padding-left: 1.5rem;
}

.service-section li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-section li:before {
    content: "•";
    color: #017593;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.quote {
    font-style: italic;
    color: #017593;
    margin: 1rem 0;
    text-align: center;
    padding: 0.5rem;
}

/* Version desktop */
@media (min-width: 768px) {
    .restaurant .categorie {
        flex-direction: row;
        align-items: center;
    }
    
    .restaurant .categorie:nth-child(even) {
        flex-direction: row-reverse;
    }
    
    .restaurant .categorie img {
        width: 40%;
        height: 300px;
        margin: 0 1.5rem;
    }
    
    .restaurant .categorie:nth-child(even) img {
        margin-left: 0;
    }
}

/* Version mobile */
@media (max-width: 767px) {
    .service-section {
        padding: 1rem;
    }
    
    .service-section h2 {
        font-size: 1.5rem;
    }
}


/* Styles pour le menu responsive */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.menu-toggle {
    display: none;
}

.hamburger {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    justify-content: center;
    flex: 1;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.nav-menu ul li {
    margin: 0 1rem;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.language-selector {
    margin-left: 1rem;
}

/* Styles pour les écrans de smartphones */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #fff;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-menu ul {
        flex-direction: column;
    }
    .nav-menu ul li {
        margin: 0;
        padding: 0.5rem 1rem;
        border-bottom: 1px solid #eee;
    }
    .language-selector {
        margin-left: 0;
        margin-top: 1rem;
    }
}

/* Styles pour les images des menus */
.menu {
    margin-top: 2rem;
}

.menu h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #017593;
}

.plat {
    background-color: #fff;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid #017593;
    border-radius: 10px;
    text-align: center;
}

.plat img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.plat h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #017593;
}

.plat p {
    margin-bottom: 0.5rem;
}

.horaires {
    background-color: #f9f9f9;
    padding: 1rem;
    margin-top: 2rem;
    text-align: center;
    border: 2px solid #017593;
    border-radius: 10px;
}

.horaires h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #017593;
}

.horaires p {
    margin-bottom: 0.5rem;
}

/* Styles pour la page Chambres */
.chambres {
    background-color: #fff;
    padding: 2rem;
    border: 2px solid #017593;
    border-radius: 10px;
}

.chambres h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
    color: #017593;
}

.subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #333;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.description {
    margin-bottom: 2rem;
    text-align: center;
}

.description p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.categories {
    margin-bottom: 2rem;
}

.categories h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #017593;
    text-align: center;
}

.categorie {
    background-color: #f9f9f9;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #017593;
    display: flex;
    flex-direction: column;
}

.categorie-content {
    flex: 1;
}

.categorie h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #017593;
}

.categorie ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.categorie li {
    margin-bottom: 0.3rem;
    position: relative;
    padding-left: 1.5rem;
}

.categorie li:before {
    content: "✔";
    color: #017593;
    position: absolute;
    left: 0;
}

.price {
    font-weight: bold;
    color: #017593;
    margin-top: 1rem;
    font-size: 1.2rem;
}

.categorie img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 1rem;
}

.features {
    margin-bottom: 2rem;
}

.features h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #017593;
    text-align: center;
}

.features ul {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.features li {
    margin-bottom: 0.5rem;
}

.coup-de-coeur {
    margin-bottom: 2rem;
}

.coup-de-coeur h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #017593;
    text-align: center;
}

.coup-de-coeur ul {
    list-style-type: none;
    padding-left: 0;
}

.coup-de-coeur li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.coup-de-coeur li:before {
    content: "✔";
    color: #017593;
    position: absolute;
    left: 0;
}

.quote {
    font-style: italic;
    color: #017593;
    margin-top: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.2rem;
}

.reservation-info {
    text-align: center;
    margin-top: 2rem;
}

.reservation-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #017593;
}

.reservation-info p {
    margin-bottom: 1rem;
}

.reserver {
    display: inline-block;
    background-color: #017593;
    color: #fff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    font-weight: bold;
}

.reserver:hover {
    background-color: #015a75;
}

/* Styles pour la page Contact et Réservation */
.contact {
    background-color: #fff;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 2px solid #017593;
    border-radius: 10px;
}

.contact h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #017593;
}

.contact p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: center;
}

/* Styles pour le conteneur des coordonnées */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

/* Styles pour les informations de contact */
.contact-info {
    flex: 1;
    min-width: 300px;
    margin-right: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

/* Styles pour l'image de contact */
.contact-image {
    flex: 1;
    min-width: 300px;
    perspective: 1000px;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-image img:hover {
    transform: scale(1.05) rotateY(10deg);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Styles pour la carte */
.map {
    width: 100%;
    height: 400px;
    margin: 1rem 0;
    border: 2px solid #017593;
    border-radius: 10px;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Styles pour le formulaire de réservation */
.reservation {
    background-color: #fff;
    padding: 2rem;
    border: 2px solid #017593;
    border-radius: 10px;
}

.reservation h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #017593;
}

form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
}

form label {
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #017593;
}

form input, form select, form textarea {
    margin-bottom: 1rem;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #017593;
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #015a75;
}

/* Media Queries pour la réactivité */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
    .contact-info {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    .contact-image {
        margin-top: 1rem;
    }
}

/* Styles pour la page Piscine */
.piscine {
    background-color: #fff;
    padding: 2rem;
    border: 2px solid #017593;
    border-radius: 10px;
}

.piscine h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
    color: #017593;
}

.subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #333;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.description {
    margin-bottom: 2rem;
    text-align: center;
}

.description p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.features {
    margin-bottom: 2rem;
}

.features h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #017593;
    text-align: center;
}

.feature {
    background-color: #f9f9f9;
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 4px solid #017593;
    border-radius: 0 10px 10px 0;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #017593;
}

.feature p, .feature li {
    margin-bottom: 0.5rem;
}

.commitment, .experience, .security, .access {
    margin-bottom: 2rem;
}

.commitment h2, .experience h2, .security h2, .access h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #017593;
    text-align: center;
}

.commitment ul, .experience ul, .security ul {
    list-style-type: none;
    padding-left: 0;
    max-width: 600px;
    margin: 0 auto;
}

.commitment li, .experience li, .security li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.commitment li:before, .experience li:before, .security li:before {
    content: "✔";
    color: #017593;
    position: absolute;
    left: 0;
}

.access p {
    text-align: center;
    font-size: 1.1rem;
    font-weight: bold;
}

.quote {
    margin: 2rem 0;
    text-align: center;
    font-style: italic;
    font-size: 1.3rem;
    color: #017593;
    padding: 1rem;
    border-left: 4px solid #017593;
    border-right: 4px solid #017593;
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
}

.gallery {
    margin-top: 2rem;
}

.gallery h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #017593;
    text-align: center;
}

.gallery-item {
    margin-bottom: 1.5rem;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 0.5rem;
}

.gallery-item p {
    text-align: center;
    font-style: italic;
}

/* Media Queries pour la réactivité */
@media (min-width: 768px) {
    .gallery {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .gallery-item {
        flex: 1 1 30%;
        margin: 0 1%;
    }
    .gallery-item img {
        height: 200px;
    }
    .categorie {
        flex-direction: row;
        align-items: center;
    }
    .categorie img {
        width: 300px;
        height: auto;
        margin-left: 1.5rem;
    }
    .categorie-content {
        flex: 2;
    }
}

/* Styles pour les images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Styles pour les images dans la section hero */
.hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 1rem;
}

/* Styles pour les images dans les sections highlight */
.highlight-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

/* Styles pour la bannière */
.hero {
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    margin-bottom: 2rem;
    border: 2px solid #017593;
    border-radius: 10px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #017593;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Styles pour la page d'accueil */
.about {
    background-color: #fff;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 2px solid #017593;
    border-radius: 10px;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #017593;
}

.about p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Styles pour les sections highlight */
.highlights {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.highlight {
    background-color: #fff;
    padding: 1rem;
    margin-bottom: 1rem;
    flex: 1 1 30%;
    text-align: center;
    border: 2px solid #017593;
    border-radius: 10px;
}

.highlight h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #017593;
}

.highlight p {
    margin-bottom: 0.5rem;
}

/* Media Queries pour la réactivité */
@media (max-width: 768px) {
    .highlights {
        flex-direction: column;
    }
    .highlight {
        flex: 1 1 100%;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    .hero p {
        font-size: 0.9rem;
    }
    .about h2 {
        font-size: 1.5rem;
    }
}

/* Styles pour le carrousel */
.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
}

.carousel-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Styles pour la section hero */
.hero {
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    margin-bottom: 2rem;
    border: 2px solid #017593;
    border-radius: 10px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #017593;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Styles pour la page Expériences Professionnelles & Événements */
.experiences {
    background-color: #fff;
    padding: 2rem;
    border: 2px solid #017593;
    border-radius: 10px;
}

.experiences h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
    color: #017593;
}

.subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #333;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.description {
    margin-bottom: 2rem;
    text-align: center;
}

.description p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Styles pour les sections */
.pack, .randonnees, .evenements, .plus, .demande {
    margin-bottom: 2rem;
}

.pack h2, .randonnees h2, .evenements h2, .plus h2, .demande h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #017593;
    text-align: center;
}

.pack p, .randonnees p, .evenements p, .plus p, .demande p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.pack ul, .randonnees ul, .evenements ul, .plus ul, .demande ul {
    list-style-type: none;
    padding-left: 0;
    max-width: 600px;
    margin: 0 auto;
}

.pack li, .randonnees li, .evenements li, .plus li, .demande li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.pack li:before, .randonnees li:before, .evenements li:before, .plus li:before, .demande li:before {
    content: "✔";
    color: #017593;
    position: absolute;
    left: 0;
}

.quote {
    font-style: italic;
    color: #017593;
    margin-top: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.2rem;
}

/* Media Queries pour la réactivité */
@media (max-width: 768px) {
    .pack, .randonnees, .evenements, .plus, .demande {
        flex-direction: column;
    }
}

/* Styles pour les conteneurs de section */
.section-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

/* Styles pour les sections */
.randonnees, .evenements {
    flex: 1;
    min-width: 300px;
    margin-right: 1rem;
}

/* Styles pour les images des sections */
.randonnees-image, .evenements-image {
    flex: 1;
    min-width: 300px;
}

.randonnees-image img, .evenements-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Media Queries pour la réactivité */
@media (max-width: 768px) {
    .section-container {
        flex-direction: column;
    }
    .randonnees, .evenements {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    .randonnees-image, .evenements-image {
        margin-top: 1rem;
    }
}

/* Styles pour les sections avec images */
.section-with-image {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

/* Styles pour le contenu texte */
.text-content {
    flex: 1;
    min-width: 300px;
}

/* Styles pour le contenu image */
.image-content {
    margin-left: 1rem;
}

.image-content img {
    width: 200px;
    height: auto;
    border-radius: 10px;
}

/* Media Queries pour la réactivité */
@media (max-width: 768px) {
    .section-with-image {
        flex-direction: column;
    }
    .text-content {
        margin-bottom: 1rem;
    }
    .image-content {
        margin-left: 0;
        margin-top: 1rem;
    }
}

/* Styles pour la page de connexion */
.login-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border: 2px solid #017593;
    border-radius: 10px;
    text-align: center;
}

.login-container h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #017593;
}

.login-container form {
    display: flex;
    flex-direction: column;
}

.login-container label {
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #017593;
}

.login-container input {
    margin-bottom: 1rem;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.login-container button {
    background-color: #017593;
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.login-container button:hover {
    background-color: #015a75;
}

.error {
    color: red;
    margin-bottom: 1rem;
}

/* Styles pour les onglets */
.tabs {
    display: flex;
    margin-bottom: 1rem;
}

.tab-button {
    padding: 0.5rem 1rem;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    cursor: pointer;
    margin-right: 0.5rem;
    border-radius: 5px 5px 0 0;
}

.tab-button.active {
    background-color: #017593;
    color: #fff;
}

.tab-content {
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 0 0 5px 5px;
    display: none;
}

.tab-content:first-child {
    display: block;
}

/* Styles pour le formulaire */
form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
}

form label {
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #017593;
}

form input, form textarea {
    margin-bottom: 1rem;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #017593;
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #015a75;
}

/* Styles pour le formulaire */
.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #017593;
}

.form-group input[type="text"],
.form-group input[type="date"],
.form-group input[type="checkbox"] {
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.input-with-button {
    display: flex;
    align-items: center;
}

.input-with-button input {
    flex: 1;
}

.scan-button {
    margin-left: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: #017593;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.scan-button:hover {
    background-color: #015a75;
}

.signature-container {
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#signature-pad {
    width: 100%;
    height: 200px;
    border: 1px solid #000;
    border-radius: 5px;
}

#clear-signature {
    padding: 0.5rem 1rem;
    background-color: #ccc;
    color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 0.5rem;
}

#clear-signature:hover {
    background-color: #aaa;
}

button[type="submit"] {
    padding: 0.5rem 1rem;
    background-color: #017593;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #015a75;
}

/* Styles pour la page de confirmation */
.confirmation {
    background-color: #fff;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
    border: 2px solid #017593;
    border-radius: 10px;
    text-align: center;
}

.confirmation h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #017593;
}

.confirmation p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Styles pour l'onglet Avis et Note du Client */
#avis {
    padding: 1rem;
}

#avis h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #017593;
}

#avis .form-container {
    max-width: 600px;
    margin: 0 auto;
}

#avis .form-group {
    margin-bottom: 1rem;
}

#avis label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #017593;
}

#avis input[type="text"],
#avis input[type="email"],
#avis select,
#avis textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#avis button[type="submit"] {
    padding: 0.5rem 1rem;
    background-color: #017593;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#avis button[type="submit"]:hover {
    background-color: #015a75;
}

/* Styles pour la page de confirmation d'avis */
.confirmation {
    background-color: #fff;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
    border: 2px solid #017593;
    border-radius: 10px;
    text-align: center;
}

.confirmation h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #017593;
}

.confirmation p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Styles pour la page de confirmation de contact */
.confirmation {
    background-color: #fff;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
    border: 2px solid #017593;
    border-radius: 10px;
    text-align: center;
}

.confirmation h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #017593;
}

.confirmation p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Styles pour le footer - Version responsive */
footer {
    background-color: #017593;
    color: #fff;
    padding: 1.5rem 0;
    margin-top: 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    gap: 1rem;
}

.footer-nav li {
    margin: 0;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem;
    display: block;
}

.footer-nav a:hover {
    text-decoration: underline;
}

.copyright {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Media Queries pour mobile */
@media (max-width: 768px) {
    .footer-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .social-links {
        gap: 1.5rem;
        margin-bottom: 1rem;
    }

    .footer-content {
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .social-links a {
        font-size: 1.3rem;
    }

    .footer-nav a {
        padding: 0.3rem;
    }
}

/* Styles pour les onglets - Version responsive */
.tabs {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    gap: 0.5rem;
}

.tab-button {
    padding: 0.8rem 1rem;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    cursor: pointer;
    border-radius: 5px;
    font-size: 0.9rem;
    flex: 1 1 auto;
    text-align: center;
    transition: all 0.3s ease;
}

.tab-button:hover {
    background-color: #e0e0e0;
}

.tab-button.active {
    background-color: #017593;
    color: #fff;
    border-color: #017593;
}

.tab-content {
    padding: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    display: none;
    margin-bottom: 2rem;
}

.tab-content:first-child {
    display: block;
}

/* Media Queries pour mobile */
@media (max-width: 768px) {
    .tabs {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .tab-button {
        padding: 0.6rem;
        font-size: 0.8rem;
    }
    
    .tab-content {
        padding: 1rem;
    }
}

/* Styles pour la pop-up motard */
.motard-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
    background-color: #f8f8f8;
    border: 3px solid #e74c3c;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

.motard-popup h2 {
    color: #e74c3c;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.motard-popup .code {
    display: inline-block;
    background-color: #2c3e50;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    margin: 10px 0;
    font-size: 1.2rem;
}

.motard-popup ul {
    list-style-type: none;
    padding: 0;
    margin: 15px 0;
    text-align: left;
}

.motard-popup li {
    margin: 10px 0;
    padding-left: 30px;
    position: relative;
}

.motard-popup li:before {
    content: "✓";
    color: #27ae60;
    position: absolute;
    left: 10px;
    font-weight: bold;
}

.motard-popup .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #7f8c8d;
}

.motard-popup .motard-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin: 15px 0;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 999;
}

/* Ajoutez ceci à la fin de votre fichier styles.css */

/* Styles pour le marquee - Version intégrée */
marquee {
    background: linear-gradient(90deg, #017593, #0199b8);
    padding: 14px 0;
    font-family: 'Montserrat', sans-serif; /* Harmonisation avec votre police principale */
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    box-shadow: 0 3px 10px rgba(1, 117, 147, 0.3);
    margin: 12px 0;
    border-top: 2px solid rgba(255,255,255,0.15);
    border-bottom: 2px solid rgba(0,0,0,0.1);
    background-size: 200% 200%;
    animation: wave 8s ease infinite;
}

marquee a {
    color: white;
    text-decoration: none;
    font-size: 1.1em;
    padding: 8px 25px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-block;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

marquee a:after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.7s;
}

marquee a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(1, 117, 147, 0.3);
}

marquee a:hover:after {
    left: 100%;
}

/* Effet vague animé en fond */
@keyframes wave {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Media Query pour le marquee */
@media (max-width: 768px) {
    marquee {
        padding: 10px 0;
        font-size: 0.9em;
    }
    
    marquee a {
        padding: 6px 15px;
        font-size: 1em;
    }
}



#countdown {
  font-size: 0.9em;
  color: #666;
}
#countdown-number {
  font-weight: bold;
  color: #017593; /* Couleur de votre charte */
}