:root {
    --primary-color: #4361ee;
    --secondary-color: #3f37c9;
    --accent-color: #4895ef;
    --dark-color: #2b2d42;
    --light-color: #f8f9fa;
    --transition: all 0.3s ease;
    --orange: #fa9f01;
    --green: #01644C;
    --light-green: #70b4a3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f5f5f5;
    color: var(--dark-color);
    line-height: 1.6;
}

/* Navigation modernisée */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    position: relative;
}

.nav-buttons {
    display: flex;
    flex: 1;
    justify-content: space-between; /* Répartit les éléments */
align-items: center;
}

.logo {
flex: 1;
display: flex;
justify-content: center; /* Centre le logo */
align-items: center;
}

.logo img {
width: 80px;
transition: transform 0.3s ease;
}

.nav-button {
    font-family: "Chau Philomene One", sans-serif;
    text-transform: uppercase;
    color: var(--orange);
    padding: 0.7rem 1.8rem;
    background: none;
    border: none;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.nav-button#book {
    border-radius: 10px;
    font-weight: 600;
    background-color: var(--orange);
    color: white;
    border: 2px solid #fa9f01;
}
.nav-button#book:hover {
    border: 2px solid #fa9f01;
    background-color: white;
    color: #fa9f01;
    box-shadow: 0 4px 8px rgba(1, 100, 76, 0.2);
}
.nav-button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--green);
    transition: var(--transition);
}
.nav-button#book::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--orange);
    transition: var(--transition);
}

.nav-button:hover {
    color: var(--orange);
}

.nav-button:hover::after {
    width: 70%;
}

/* Menu hamburger amélioré */
.hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1002;
    transition: var(--transition);
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--green);
    transition: var(--transition);
    transform-origin: left center;
}

/* Version mobile améliorée */
@media (max-width: 992px) {
    .navbar {
        padding: 1rem;
    }
    
    .nav-buttons {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        padding: 2rem;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 1000;
    }
    
    .nav-buttons.active {
        left: 0;
    }
    
    .logo {
        position: static;
        transform: none;
        margin: 0 auto;
        order: 2;
    }
    
    .logo img {
        width: 80px;
    }
    
    .nav-button {
        width: 100%;
        text-align: center;
        padding: 1rem;
        font-size: 1.1rem;
        border-radius: 8px;
    }
    
    .nav-button::after {
        display: none;
    }
    
    .nav-button:hover {
        background-color: rgba(250, 159, 1, 0.1);
    }
    
    .hamburger {
        display: flex;
        order: 1;
    }
    
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Animation hamburger améliorée */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(2px, -1px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(2px, 1px);
    }
}

/* Hero section modernisée */
.hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

.hero-carousel {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.carousel-inner {
    display: flex;
    height: 100%;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Slogan modernisé */
.hero-slogan {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 30px;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    max-width: 900px;
    
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-slogan h2 {
    font-family: "Delius", cursive;
    font-weight: 300;
    color: white;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
    letter-spacing: 1.5px;
    line-height: 1.2;
}

/* Overlay amélioré */
.carousel-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
}
.location-container {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
padding: 10px 20px;
transition: 0.3s ease;
}

.location-container h4 {
font-family: "Delius", cursive;
color: white;
font-size: 20px;
margin: 0;
}

.gps-link {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background: var(--orange);
border-radius: 50%;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
transition: 0.3s ease;
}

.gps-link i {
color: white;
font-size: 20px;
}

.gps-link:hover {
background: darkorange;
}


/* Sections modernisées */
.section {
display: none; /* Par défaut, caché */
width: 100%;
max-width: 1400px;
margin: 0 auto;
padding: 1.5rem;
opacity: 0;
transform: translateY(30px);
transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.section.active {
display: block;
opacity: 1;
transform: translateY(0);
}


.section-title {
    font-family: "Chau Philomene One", sans-serif;
    color: var(--green);
    margin-bottom: 3rem;
    font-size: 2.5rem;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--orange);
    border-radius: 2px;
}

/* Section Le Gîte modernisée */
.gite-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gite-card {
    background: white;
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gite-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.gite-card:first-child {
    transform: translateX(-50px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), 
                opacity 0.8s ease;
}

.gite-card:first-child(2) {
    background-color: white;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transform: translateX(50px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), 
                opacity 0.4s ease;
    transition-delay: 0.2s;
}

.section.active .gite-card:first-child,
.section.active .gite-card:last-child {
    transform: translateX(0);
    opacity: 1;
}
.gite-list {
    display: flex;
    justify-content: space-between;
    gap: 1rem; /* Espacement entre les colonnes */
}

.gite-list ul {
    list-style-type: none;
    padding: 0;
    width: 48%; /* Assurer que chaque colonne prenne 50% moins l'espacement */
}

/* Section À proximité */
.proximite-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.transport-banner {
    background-color: #f3bc5c;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.transport-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.transport-item i {
    font-size: 1.5rem;
}

.map-container {
display: flex;
gap: 2rem;
flex-wrap: wrap;
align-items: stretch; /* Assure un alignement harmonieux */
justify-content: center; /* Centre l'ensemble */
}

#map {
height: 500px;
flex: 2; /* Permet à la carte de prendre plus d’espace */
min-width: 400px;
min-height: 400px;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-info-panel {
display: flex;
flex-direction: column;
gap: 1.5rem;
flex: 1; /* Donne plus d'espace aux infos sans trop rétrécir */
min-width: 350px;
max-width: 400px; /* Évite que les boîtes deviennent trop larges */
}

.info-card {
background: white;
border-radius: 15px;
padding: 1.5rem;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
transition: transform 0.3s ease, box-shadow 0.3s ease;
flex: 1; /* Remplit l’espace de manière équilibrée */
}

.info-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.info-card h3 {
font-family: "Chau Philomene One", sans-serif;
color: var(--orange);
margin-bottom: 1rem;
font-size: 1.5rem;
}

.info-card p {
color: var(--dark-color);
margin-bottom: 0.5rem;
}

.info-image {
width: 100%;
object-fit: cover;
border-radius: 10px;
height: 250px; /* Hauteur uniforme pour l’image */
margin-top: 1rem;
}

#location-image {
display: flex;
flex-direction: column;
justify-content: space-between; /* Assure une bonne répartition des éléments */
height: auto;
}


.categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.category-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    background-color: #f0f0f0;
    border: none;
    font-family: "Chau Philomene One", sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    color: var(--dark-color);
}

.category-btn.active {
    background-color: var(--orange);
    color: white;
    box-shadow: 0 5px 15px rgba(250, 159, 1, 0.3);
}

.gite-card h3 {
    font-family: "Chau Philomene One", sans-serif;
    color: #fa9f01;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.gite-card ul {
    list-style-type: none;
}

.gite-card li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 2rem;
    color: #01644C;
    font-size: 1rem;
}

.gite-card li:before {
    content: "•";
    color: var(--green);
    position: absolute;
    left: 0;
    font-size: 1.8rem;
    line-height: 1;
}

/* Carrousel manuel amélioré */
.manual-carousel {
    width: 100%;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.manual-carousel-container {
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.manual-carousel-inner {
    display: flex;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.manual-slide {
    min-width: 100%;
}

.manual-slide img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center;
}

/* Miniatures modernisées */
.thumbnails-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.thumbnail {
    width: 100px;
    height: 75px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    filter: brightness(0.9);
}

.thumbnail:hover {
    transform: scale(1.08);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    filter: brightness(1);
}

.thumbnail.active {
    border-color: var(--green);
    transform: scale(1.08);
    filter: brightness(1);
    box-shadow: 0 5px 15px rgba(1, 100, 76, 0.3);
}

/* Section Les Petits + modernisée */
.petits-plus-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 3rem;
    transition: transform 0.4s ease;
}

.petits-plus-card h2 {
    font-family: "Chau Philomene One", sans-serif;
    color: var(--orange);
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
}

.petits-plus-card h3 {
    font-family: "Chau Philomene One", sans-serif;
    color: var(--green);
    margin: 3rem 0 1.5rem;
    font-size: 1.8rem;
    text-align: center;
    letter-spacing: 0.5px;
}

.petits-plus-card h6 {
    font-family: "Chau Philomene One", sans-serif;
    color: var(--green);
    margin: 1rem 0 2rem;
    font-size: 1.1rem;
    text-align: center;
    font-weight: normal;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.amenity-item {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.amenity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.amenity-item i {
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: 1rem;
}

.amenity-item p {
    font-weight: 500;
    color: var(--dark-color);
}

.services-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 2rem 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.services-table#basic-amenities {
    background-color: white;
}

.services-table#included-services {
    background-color: var(--light-green);
}

.services-table th, .services-table td {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.services-table th {
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    background-color: var(--green);
}

.services-table#basic-amenities th {
    background-color: var(--orange);
}

.services-table tr:last-child td {
    border-bottom: none;
}

.services-table td {
    font-weight: 500;
    color: var(--dark-color);
}

.services-table#included-services td {
    color: white;
}

.option-title {
    text-align: center;
    margin-top: 3rem;
}

/* Section Tarifs modernisée */
.season-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 1rem;
}

.season-tab {
    padding: 0.8rem 2rem;
    border-radius: 30px;
    background-color: #f0f0f0;
    border: none;
    font-family: "Chau Philomene One", sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.season-tab.active {
    background-color: var(--orange);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(250, 159, 1, 0.3);
}

.tarif-content {
    display: none;
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tarif-content.active {
    display: block;
}

.capacity-info {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.tarifs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.tarif-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 2px solid transparent;
}

.tarif-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}



.tarif-duration {
    font-weight: bold;
    color: var(--green);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.tarif-price {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--orange);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.tarif-discount {
    font-weight: bold;
    font-size: 1rem;
    color: var(--orange);
    margin-bottom: 1.5rem;
}

.tarif-caution {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.caution-info {
    padding: 1.5rem ;
    background-color: var(--orange);
    border-radius: 12px;
    text-align: center;
    color: white;
    box-shadow: 0 5px 15px rgba(250, 159, 1, 0.2);
    transition: transform 0.3s ease;
    flex: 1;
    
}

.caution-info:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(250, 159, 1, 0.3);
}

.caution-info strong {
    color: white;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* Footer modernisé */
.footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    background-color: var(--dark-color);
    color: var(--light-color);
}

.footer-section {
    padding: 1rem;
}

.footer-section h3 {
    margin-bottom: 1.8rem;
    color: white;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 0.8rem;
    font-family: "Chau Philomene One", sans-serif;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
}

.footer-section p, .footer-section a {
    color: #d3d3d3;
    line-height: 1.7;
}

.contact-info {
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-info i {
    color: var(--orange);
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 1.2rem;
    margin-top: 2rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    color: white;
    font-size: 1.2rem;
}

.social-link:hover {
    background-color: var(--orange);
    transform: translateY(-3px);
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-links i {
    color: var(--orange);
    transition: var(--transition);
    width: 20px;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.copyright {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9rem;
}

/* Responsive amélioré */
@media (max-width: 1200px) {
    .gite-container {
        grid-template-columns: 1fr;
    }
    
    .gite-card:first-child,
    .gite-card:last-child {
        transform: none !important;
    }
    
    .manual-slide img {
        height: 400px;
    }
}

@media (max-width: 992px) {
    .map-container {
        flex-direction: column;
    }
    
    .map-info-panel {
        width: 100%;
        flex-direction: row;
    }
    
    .info-card {
        flex: 1;
    }

    .transport-banner {
        gap: 1rem;
        padding: 0.8rem;
    }
}

@media (max-width: 768px) {
    .hero-carousel {
        height: 500px;
        border-radius: 10px;
    }
    
    .hero-slogan {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .hero-slogan h2 {
        font-size: 2.5rem;
    }
    
    .section {
        padding: 3rem 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .petits-plus-card {
        padding: 2rem 1.5rem;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .services-table th, 
    .services-table td {
        padding: 1rem;
    }
    
    .season-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .season-tab {
        width: 100%;
        max-width: 300px;
    }
    
    .tarifs-grid {
        grid-template-columns: 1fr;
    }
    
    
    
    .footer {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
    }
    
    .footer-section h3 {
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .contact-info p, .footer-section p, .footer-section ul li {
        justify-content: center;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .map-info-panel {
        flex-direction: column;
    }

    .transport-banner {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-carousel {
        height: 400px;
    }
    
    .hero-slogan {
        padding: 1rem;
    }
    
    .hero-slogan h2 {
        font-size: 2rem;
    }
    
    .manual-slide img {
        height: 300px;
    }
    
    .thumbnail {
        width: 80px;
        height: 60px;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .services-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .tarif-caution {
        flex-direction: column;
        align-items: center;
    }
    
    .caution-info {
        width: 100%;
    }
}
.service-icon {
display: flex;
justify-content: center;
align-items: center;
width: 50px;
height: 50px;
border-radius: 50%;
background-color: #f0f0f0; /* Couleur de fond */
margin: 0 auto 8px;
}

.service-icon i {
font-size: 24px;
color: #ff6600; /* Couleur de l'icône */
}
#reservation-section {
text-align: center;
padding: 40px 20px;
background: #f9f9f9;
}



.reservation-button {
font-family: "Chau Philomene One", sans-serif;
display: inline-block;
padding: 15px 30px;
background: #fa9f01;
color: #fff;
font-size: 18px;
text-transform: uppercase;
border-radius: 8px;
border: 2px solid #fa9f01;
margin-top: 30px;
text-decoration: none;
transition: background 0.3s;
}

.reservation-button:hover {
background: white;
color: var(--orange);
}
@media (max-width: 992px) {
.gite-container {
grid-template-columns: 1fr;
gap: 1rem;
}

.top-row {
flex-direction: column;
align-items: center;
gap: 20px;
}

.gite-card {
width: 100% !important;
padding: 1.5rem;
}

.manual-carousel-container {
width: 100%;
overflow: hidden;
}

.manual-slide img {
width: 100%;
height: auto;
border-radius: 10px;
}

.thumbnails-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 5px;
}

.thumbnail {
width: 60px;
height: 45px;
cursor: pointer;
}

.gite-list {
flex-direction: column;
align-items: center;
text-align: center;
}

.gite-list ul {
width: 100%;
}
}

@media (max-width: 768px) {
.gite-card {
padding: 1.2rem;
}

.manual-slide img {
height: 250px;
}

.thumbnail {
width: 50px;
height: 40px;
}

.gite-list {
gap: 0.5rem;
}
}

@media (max-width: 480px) {
.manual-slide img {
height: 200px;
}

.thumbnail {
width: 45px;
height: 35px;
}

.gite-card h3 {
font-size: 1.2rem;
}

.gite-card ul li {
font-size: 0.9rem;
}
}
/* Section Réservation améliorée */
.reservation-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1.5rem;
}

.reservation-container p {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Conteneur du widget responsive */
.widget-container {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin: 2rem auto;
    max-width: 100%;
    overflow: hidden;
}

/* Ajustements pour le widget de réservation */
#widget-produit-OSMB-133631-1 {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
}

/* Correction responsive pour la section Le Gîte */
@media (max-width: 992px) {
    .top-row {
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .gite-card {
        width: 100% !important;
    }
    
    .manual-slide img {
        height: 350px !important;
    }
    
    .thumbnails-container {
        gap: 8px !important;
    }
    
    .thumbnail {
        width: 80px !important;
        height: 60px !important;
    }
}

/* Correction pour la section À proximité sur mobile */
@media (max-width: 768px) {
    .map-container {
        flex-direction: column;
    }
    
    #map {
        min-width: 100% !important;
        height: 400px !important;
        order: 1;
    }
    
    .map-info-panel {
        min-width: 100% !important;
        max-width: 100% !important;
        flex-direction: column;
        order: 2;
    }
    
    .info-card {
        min-width: 100% !important;
    }
    
    .transport-banner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .transport-item {
        justify-content: center;
    }
}

/* Correction pour la section Tarifs sur mobile */
@media (max-width: 768px) {
    .tarifs-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    .tarif-card {
        padding: 1.5rem;
    }
    
    .tarif-caution {
        flex-direction: column;
        align-items: center;
    }
    
    .caution-info {
        width: 100%;
        max-width: 300px;
    }
}

/* Correction pour la section Les petits + sur mobile */
@media (max-width: 768px) {
    .services-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .services-table thead {
        display: table;
        width: 100%;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .amenity-item {
        padding: 1rem;
    }
    
    .amenity-item i {
        font-size: 1.5rem;
    }
}

/* Correction pour les très petits écrans */
@media (max-width: 480px) {
    .hero-carousel {
        height: 400px;
    }
    
    .hero-slogan h2 {
        font-size: 1.8rem;
    }
    
    .location-container h4 {
        font-size: 1rem;
    }
    
    .manual-slide img {
        height: 250px !important;
    }
    
    .thumbnail {
        width: 60px !important;
        height: 45px !important;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .widget-container {
        padding: 1rem;
        margin: 1rem auto;
    }
    
    .reservation-container p {
        font-size: 1rem;
    }
}

/* Ajustements pour le widget de réservation */
#widget-produit-OSMB-133631-1 iframe,
#widget-produit-OSMB-133631-1 div {
    max-width: 100% !important;
    width: 100% !important;
}

/* Amélioration de la navigation mobile */
@media (max-width: 992px) {
    .nav-buttons {
        padding-top: 4rem;
    }
    
    .nav-button {
        font-size: 1.1rem;
        padding: 1.2rem;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    
    .nav-button:last-child {
        border-bottom: none;
    }
}

/* Correction du footer sur mobile */
@media (max-width: 768px) {
    .footer {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 3rem 1.5rem;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-info p,
    .footer-links li a {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}
/* Styles pour les liens légaux dans le footer */
.legal-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legal-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.legal-link:hover {
    color: #fa9f01;
}

/* Styles pour les modales légales */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    display: none;
}

.legal-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 9999;
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -48%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
    background: #f9f9f9;
    border-radius: 12px 12px 0 0;
    position: sticky;
    top: 0;
    z-index: 1;
}

.modal-header h2 {
    margin: 0;
    color: #333;
    font-size: 1.5rem;
}

.close-modal {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #777;
    transition: color 0.3s;
    line-height: 1;
}

.close-modal:hover {
    color: #333;
}

.modal-content {
    padding: 25px;
}

.legal-section {
    margin-bottom: 25px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h3 {
    color: #fa9f01;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.legal-section p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
}

.legal-section ul {
    padding-left: 20px;
    margin-bottom: 10px;
}

.legal-section li {
    margin-bottom: 5px;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-modal {
        width: 95%;
        max-height: 85vh;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .modal-content {
        padding: 20px;
    }
}
/* Styles pour la carte de présentation hero */


.presentation-highlight {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(250, 159, 1, 0.9);
    padding: 10px 20px;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

.presentation-highlight i {
    font-size: 1.2rem;
}

/* Animation pulse pour le highlight */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(250, 159, 1, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(250, 159, 1, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(250, 159, 1, 0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Styles pour la section description en dehors du carousel */


.description {
    max-width: 1050px;
    margin: 5px auto;
    padding: 30px 40px;
    
    text-align: center;
    animation: fadeIn 1s ease-out;
}

.description p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark-color);
    font-weight: 400;
    letter-spacing: 0.3px;
    font-family: "Delius", cursive;
}

.description p::first-letter {
    font-size: 1.2rem;
    color: var(--orange);
    font-weight: bold;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
