/* Style général */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Style général */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    color: #333;
}

/* Style pour centrer les titres de section */
.section h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Pacifico', cursive;
    color: #333;
}

h2 {
    font-family: 'Pacifico', cursive;
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
    color: #333;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
}

.navbar-links {
    display: flex;
    gap: 1rem;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    transition: background 0.3s ease;
}

.navbar a:hover {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 360px;
    object-fit: cover;
    filter: blur(10px) brightness(0.5);
    transform: scale(1.1);
    transition: none;
}

.hero-content {
    position: relative;
    color: white;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    z-index: 2;
    max-width: 80%;
    font-family: 'Pacifico', cursive;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.hero p {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* Sections générales */
.section {
    scroll-margin-top: 70px;
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    display: block;
}

.section.alt {
    font-family: 'Georgia', serif;

    background-color: #f9f9f9;
}

.content {
    flex: 1;
    min-width: 280px;
}

.image {
    flex: 1;
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    transition: transform 0.5s ease;
}

.image:hover {
    transform: scale(1.05);
}

/* Section des offres */
.section.offers {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 0;
    background-color: #f8f9fa;
}

/* Conteneur des offres */
.offers {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Carte d'une excursion */
.offer-card {
    flex: 1 1 22%;
    max-width: 250px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    margin: 10px 0;
}

.offer-card .button {
    display: inline-block;
    background-color: #d7cba3;
    color: #fff;
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    margin-top: 10px;
}

.offer-card .button:hover {
    background-color: #cbbe8f;
    transform: scale(1.05);
}

.image-container {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.offer-content {
    padding: 20px;
    text-align: center;

}

.features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    color: #666;
    font-size: 1rem;
}

.features li {
    display: flex;
    align-items: center;
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.features li i {
    margin-right: 0.5rem;
    color: #33a0ff;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

h3 {
    font-size: 1.5rem;
    color: #33a0ff;
    margin: 0.5rem 0;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0.5rem 0;
    color: #333;
}

button.button {
    background-color: transparent;
    border: 2px solid #333;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

button.button:hover {
    background-color: #333;
    color: #fff;
}

.more-info-btn {
    background-color: #008cba;
    color: #fff;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 1rem;
}

.more-info-btn:hover {
    background-color: #006994;
}

small {
    display: block;
    font-size: 0.8rem;
    color: #999;
    margin-top: 1rem;
}

/* Style pour centrer le contenu de la section "pickup" */
#pickup {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pickup-description {
    max-width: 700px;
    /* Limite la largeur du texte pour un meilleur centrage */
    text-align: center;
    margin-top: 1rem;
}

.pickup-description p {
    margin: 10px 0;
    /* Espace entre chaque paragraphe */
    line-height: 1.8;
    /* Améliore la lisibilité */
}

.pickup-description strong {
    font-weight: bold;
    color: #333;
    font-size: 1.15rem;
}

.pickup-description em {
    color: #ff6200;
    font-style: normal;
}

.pickup-description .emoji {
    font-size: 1.2rem;
    vertical-align: middle;
    margin-right: 5px;
}

/* Style pour centrer le contenu de la section "inclusions" */
#inclusions {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.inclusions-description {
    max-width: 700px;
    /* Limite la largeur du texte pour un meilleur centrage */
    text-align: center;
}

.inclusions-description p {
    margin: 10px 0;
    /* Espace entre chaque paragraphe */
    line-height: 1.8;
    /* Améliore la lisibilité */
}

.inclusions-image {
    max-width: 100%;
    height: auto;
    margin: 2rem auto;
    display: block;
}

/* Style pour centrer les images */
.centered {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0;
    margin: 0 auto;
    max-width: 1000px;
}

.centered img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Section des avis */
.testimonials {
    padding: 4rem 2rem;
    background: #f9f9f9;
    text-align: center;
    position: relative;
}

/* Temporarily reset slider styling */
/* Style du conteneur de slider pour l'animation */
.slider {
    display: flex;
    overflow: hidden;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.reviews-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

/* Chaque avis s'affiche en pleine largeur pour l'effet de défilement */
.review {
    flex: 0 0 100%;
    padding: 1rem;
    box-sizing: border-box;
    opacity: 1;
    text-align: center;
    /* Centrer le texte des avis */
}

.stars {
    font-size: 1.5rem;
    color: #FFD700;
    /* Couleur or pour les étoiles */
    font-family: "Arial", sans-serif;
    letter-spacing: 0.1rem;
    margin-bottom: 0.5rem;
}

.name {
    font-family: "Pacifico", cursive;
    font-size: 1.3rem;
    color: #333;
    margin-top: 0.5rem;
}

.date {
    font-family: Verdana, sans-serif;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 0.5rem;
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
    margin-top: 0.5rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    font-size: 16px;
    border-top: 3px solid #888;
    width: 100%;
    /* Assure que le footer prend toute la largeur de l'écran */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centre le contenu horizontalement */
    justify-content: center;
    /* Centre le contenu verticalement */
    gap: 20px;
}

.footer h3 {
    font-family: 'Pacifico', cursive;
    font-size: 24px;
    color: #d09977;
    margin-bottom: 10px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centre chaque élément à l'intérieur du footer */
    text-align: center;
    gap: 10px;
    font-size: 1.1rem;
}

.contact-info .address {
    font-family: 'Pacifico', cursive;
    font-size: 1.2rem;
    color: #fff;
}

.phone-button {
    display: inline-block;
    background-color: #008cba;
    color: #fff;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.phone-button:hover {
    background-color: #006994;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    font-size: 1.8rem;
    color: #fff;
    transition: color 0.3s ease;
}

.social-icon.facebook:hover {
    color: #3b5998;
}

.social-icon.instagram:hover {
    color: #e1306c;
}

.social-icon.youtube:hover {
    color: #ff0000;
}

.social-icon.whatsapp:hover {
    color: #25d366;
}

.footer a {
    color: #ccc;
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
}

#overview {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#overview h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

#overview p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

ul {
    list-style: none;
    /* Supprime les puces par défaut */
    padding: 0;
    margin: 0;
}

.section:last-child {
    padding-bottom: 50px;
    /* Ajustez cette valeur selon vos besoins */
}

/* Style pour la section repas */
#repas {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

#repas .pickup-description {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

#repas .inclusions-image {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .navbar-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
    }

    .navbar.active .navbar-links {
        display: flex;
    }

    .navbar-links a {
        padding: 1rem;
        text-align: center;
    }

    .hero {
        height: 400px;
    }

    .hero-content {
        padding-top: 80px;
        font-size: 1.2rem;
    }

    .section {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }

    .offer-card {
        flex: 1 1 90%;
        /* Garde toujours 2 cartes par ligne, même sur des écrans plus petits */
        max-width: 90%;
    }
}

.image-container {
    width: 100%;
    text-align: center;
    /* Centre le contenu dans le conteneur */
    margin: 0 auto;
    /* Centrage du conteneur pour les petits écrans */
}

.expectations-image {
    max-width: 100%;
    max-height: 500px;
    /* Hauteur maximale */
    height: auto;
    width: auto;
    object-fit: cover;
    border-radius: 8px;
    /* Ajout de coins arrondis si souhaité */
}

@media (max-width: 768px) {
    /* Media query pour les écrans plus petits */
    .expectations-image {
        max-height: 450px;
        /* Réduit la hauteur sur mobile */
    }
}

@media (max-width: 480px) {
    .expectations-image {
        max-height: 300px;
        /* Réduit la hauteur sur mobile */
    }

    .offer-card {
        flex: 1 1 100%;
        max-width: 95%;
        /* Augmenter la largeur de chaque carte */
        margin: 5px auto;
        /* Réduire l'espacement autour de chaque carte */
    }

    .popup-content img {
        width: 100%;
        max-width: 100%;
        /* Limite la largeur de l'image */
        height: auto;
        /* Conserve le ratio d'aspect */
        border-radius: 8px;
        /* Optionnel pour un design harmonieux */
        display: block;
    }

    /* Cache le bouton burger sur grand écran et montre le menu complet */
    .menu-toggle {
        display: block;
    }

    .navbar-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
    }

    .navbar.active .navbar-links {
        display: flex;
    }

    .navbar-links a {
        padding: 1rem;
        text-align: center;
    }

    @media (max-width: 480px) {
        .hero-content h1 {
            font-size: 1.8rem;
            /* Réduire la taille du texte */
            margin-bottom: 0.3rem;
            padding-top: 20px;
            /* Ajuster l'espacement en haut */
        }

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

/* Styles pour le popup */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup.show {
    display: flex;
}

.popup-content {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    margin: auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.popup-photos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.popup-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.popup-photo:hover {
    transform: scale(1.05);
}

.close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.close-btn:hover {
    color: #000;
}