@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&display=swap');

:root {
    --color-beige: #F5F0E6;
    --color-green: #8C9F78;
    --color-dark: #2C3A2D;
    --color-white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Helvetica', sans-serif;
    color: white;
}

.none {
    display: none;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-space-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.spaced {
    justify-content: space-around;
}

.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
}

.main-nav {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: background 0.3s ease;
    padding: 1.5rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-content {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.main-nav.transparent {
    background: transparent;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    font-family: 'Alex Brush', cursive;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #978667;
}

.nav-links .book-now {
    background: #978667;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    color: white;
}

.nav-links .book-now:hover {
    background: #7a6b52;
    color: white;
}

.nav-toggle {
    display: none;
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        padding: 1rem 2rem;
    }
}

.main-nav.scrolled {
    background-color: rgb(255, 255, 255);
    border-bottom: 1px solid #d9e1e6;
    width: 100%;
}

.main-nav.scrolled .nav-links a {
    color: #333;
}

.main-nav.scrolled .nav-links .book-now {
    color: white;
}

.language-selector button {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

.language-selector button.active {
    font-weight: bold;
    color: var(--color-green);
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Ajustez la valeur 0.5 pour modifier l'opacité */
    z-index: 1;
}

#background-video {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--color-white);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

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

.cta-button {
    padding: 1rem 2rem;
    background: #978667;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
    font-weight: 500;
    border-radius: 30px;
}

.cta-button:hover {
    background: var(--color-dark);
}

.trust-badges {
    padding: 2rem;
    background: var(--color-beige);
    text-align: center;
}

.platform-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.platform-logos img {
    height: 40px;
    opacity: 0.7;
}

.recommendation {
    color: var(--color-dark);
    font-size: 1.1rem;
}

.recommendation i {
    color: gold;
    margin-right: 0.5rem;
}

.subtitle{
    font-weight: 600;
}

#hero-subtitle {
    font-size: .875em;
    font-weight: bold;
    text-transform: uppercase;
    color: #ebd7b2;
    letter-spacing: 3px;
    font-weight: 600;
}

.language-selector.glossy {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(145deg, #2c2c2c, #1a1a1a);
    padding: 8px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1001;
}

.language-selector.glossy button {
    background: transparent;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-selector.glossy button.active {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.language-selector.glossy button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.main-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.main-nav.scrolled {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    border-bottom: 1px solid #d9e1e6;
}

.main-nav.scrolled a {
    color: rgb(0, 0, 0);
}

.main-nav.scrolled .language-selector button {
    color: rgb(0, 0, 0);
}



/* Ajoutez un padding-top au main pour compenser la nav fixed */
.about-content {
    padding-top: 80px;
}

.facilities {
    padding: 5rem 2rem;
    background-color: white;
}

.facilities-header {
    text-align: center;
    margin-bottom: 4rem;
}

.facilities-header .subtitle {
    color: #978667;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
}

.facilities-header h2 {
    color: #2C3A2D;
    font-size: 2.5rem;
    margin: 0;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.facilities-grid-transparent {
    gap: 0 !important;
}

.facility-item {
    text-align: center;
    padding: 1rem;
}


.facility-icon {
    margin-bottom: 1.5rem;
}

.facility-icon img {
    width: 50px;
    height: 50px;
    opacity: 0.7;
}

.facility-item h3 {
    color: #2C3A2D;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.facility-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.facility-icon i {
    font-size: 2.5rem;
    color: #978667;
}

/* Responsive design */
@media (max-width: 768px) {
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .facilities-grid {
        grid-template-columns: 1fr;
    }
}

.gallery {
    padding: 80px 20px;
    text-align: center;
    max-width: 1500px;
    margin: 0 auto;
}

.gallery-header {
    margin-bottom: 40px;
}

.gallery-header .subtitle {
    color: #978667;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
}

.gallery-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-top: 10px;
}

.gallery-slider {
    display: block;
    margin: 40px auto;
    position: relative;
    max-width: 1350px;
    overflow: hidden;
    height: 400px;
    /* Hauteur fixe */
}

.gallery-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-track {
    display: block;
    white-space: nowrap;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

.gallery-item {
    display: inline-block;
    width: 500px;
    height: 350px;
    margin-right: 15px;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.5;
    transform: scale(0.9);
    position: relative;
    vertical-align: middle;
}

.gallery-item.featured {
    width: 650px;
    height: 400px;
    opacity: 1;
    transform: scale(1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.gallery-nav.prev {
    left: 20px;
}

.gallery-nav.next {
    right: 20px;
}

.gallery-nav:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav i {
    font-size: 1.2rem;
    color: #333;
}

.gallery-cta {
    margin-top: 40px;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 1001;
}

.modal-content {
    width: 90%;
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-gallery {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 15px;
    cursor: pointer;
    color: white;
    font-size: 24px;
    border-radius: 50%;
    transition: background-color 0.3s;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-nav.prev {
    left: 20px;
}

.modal-nav.next {
    right: 20px;
}

/* Section Divider */
.section-divider {
    width: 75%;
    margin: 40px auto;
    border: none;
    border-top: 1px solid #d9e1e6;
    opacity: 1;
}

.local-activities {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.activity-item.reverse {
    flex-direction: row-reverse;
}

.activity-image {
    flex: 1;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

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

.activity-content {
    flex: 1;
    padding: 20px;
}

.activity-content .subtitle {
    color: #978667;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
}

.activity-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.activity-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Responsive design */
@media (max-width: 768px) {
    .activity-item {
        flex-direction: column;
        gap: 30px;
    }

    .activity-item.reverse {
        flex-direction: column;
    }

    .activity-image {
        height: 300px;
    }

    .activity-content {
        text-align: center;
    }
}

.about-section {
    display: flex;
    padding: 100px 20px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
}

.about-content {
    flex: 1;
    padding-right: 40px;
}

.about-content .subtitle {
    color: #978667;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
    font-weight: 600;
}

.about-content h2 {
    font-size: 2.375rem;
    line-height: 1.2;
    color: #333;
    margin-bottom: 30px;
}

.star-rating {
    text-align: center;
    margin: 20px 0 30px;
}

.star-rating p {
    color: #978667;
    font-size: 1.2rem;
    font-weight: 500;
}

.star-rating .stars {
    color: #978667;
    letter-spacing: 5px;
    font-size: 1.4rem;
}

.star-divider {
    text-align: center;
    color: #978667;
    font-size: 1.5rem;
    margin: 20px 0;
    letter-spacing: 5px;
}

.about-content .intro-text {
    font-size: 1.2rem;
    color: #666;
    margin: 25px 0;
    line-height: 1.6;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-radius: 25px;
    margin: 1.5rem 0;
    position: relative;
}

.rating-badge .stars {
    color: #FFD700;
    font-size: 1.1rem;
    display: flex;
    gap: 3px;
}

.rating-badge .rating-text {
    color: #666;
    font-size: 0.875em;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.rating-badge::before {
    content: '';
    position: absolute;
    left: -10px;
    width: 3px;
    height: 100%;
    background: #978667;
    border-radius: 2px;
}

.about-content .description {
    font-size: 0.93rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 40px;
}

.owner-signature {
    font-family: 'Caveat', cursive;
    /* ou une autre police cursive */
    font-size: 2rem;
    color: #333;
    font-style: italic;
}

.about-images {
    flex: 1;
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 40px;
}

.image-large {
    grid-column: 1 / -1;
    height: 710px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-small {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-30%);
    width: 46%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.about-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 20px;
    border: 5px solid white;
}

.hero-title-container {
    width: 700px;
}

/* Media Queries pour les tablettes (max-width: 1024px) */
@media (max-width: 1024px) {
    .about-section {
        flex-direction: column;
        padding: 60px 20px;
    }

    .about-content {
        padding-right: 0;
    }

    .about-images {
        margin-top: 40px;
        padding: 20px;
    }

    .image-small {
        width: 50%;
    }

    .hero-title-container {
        width: 600px;
    }
}

@media (max-width: 768px) {
    .about-images {
        position: relative;
        width: 100%;
        height: 200px;
        margin-bottom: 20px;
    }

    .image-large {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .image-small {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60%;
        height: 80%;
        z-index: 2;
    }

    .about-content {
        position: relative;
        z-index: 3;
        background: rgba(255, 255, 255, 0.9);
        padding: 20px;
        margin-top: 20px;
    }

    .hero-title-container {
        width: 100%;
        padding: 0 20px;
    }
}

/* Tours Section */
.available-tours {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #d9e1e6;
}

.tours-header {
    text-align: center;
    margin-bottom: 50px;
}

.tours-header .subtitle {
    color: #978667;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.tours-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-top: 10px;
}

.tour-item {
    margin-bottom: 15px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.tour-header {
    padding: 20px;
    background: #f8f8f8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.tour-header span {
    font-size: 1.1rem;
    color: #333;
}

.expand-btn {
    width: 30px;
    height: 30px;
    border: none;
    background: none;
    font-size: 1.5rem;
    color: #978667;
    cursor: pointer;
}

.tour-content {
    display: none;
    padding: 20px;
    color: #666;
    line-height: 1.6;
}

/* Footer */
.main-footer {
    background: #333;
    color: #fff;
    padding: 60px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-section h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-section p {
    margin-bottom: 10px;
    color: #ccc;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    color: #fff;
    margin-right: 15px;
    font-size: 1.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

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

/* Google Map */
.google-map {
    height: 400px;
    width: 100%;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 20px;
    margin: 0 auto;
    text-align: center;
    background: #faf8f5;
    position: relative;
    overflow: hidden;
}

.pricing-header {
    margin-bottom: 60px;
    position: relative;
}

.pricing-header .subtitle {
    color: #978667;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.pricing-header h2 {
    font-size: 2.8rem;
    color: #333;
    margin: 10px 0 20px;
    font-weight: 600;
}

.pricing-intro {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    width: 320px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    padding: 30px 0;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #978667;
    color: white;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.pricing-card.featured {
    background: linear-gradient(135deg, #978667 0%, #7a6b52 100%);
    color: white;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card.cleaning-fee {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    border: 2px solid #8c9f78;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(140, 159, 120, 0.1);
    transform: scale(1.02);
    transition: all 0.3s ease;
}

.pricing-card.cleaning-fee .pricing-badge {
    background: #8c9f78;
    color: white;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 8px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(140, 159, 120, 0.2);
}

.pricing-card.cleaning-fee .pricing-price {
    margin: 25px 0;
}

.pricing-card.cleaning-fee .pricing-price .amount {
    color: #8c9f78;
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(140, 159, 120, 0.1);
}

.pricing-card.cleaning-fee .pricing-price .period {
    color: #666;
    font-size: 1.1rem;
    margin-top: 5px;
}

.pricing-card.cleaning-fee .feature {
    background: rgba(140, 159, 120, 0.05);
    padding: 12px 20px;
    border-radius: 15px;
    margin: 10px 0;
    transition: all 0.3s ease;
}

.pricing-card.cleaning-fee .feature:hover {
    background: rgba(140, 159, 120, 0.1);
    transform: translateX(5px);
}

.pricing-card.cleaning-fee .feature i {
    color: #8c9f78;
    font-size: 1.2rem;
    margin-right: 15px;
}

.pricing-card.cleaning-fee .feature span {
    color: #444;
    font-size: 1rem;
    font-weight: 500;
}

.pricing-card.cleaning-fee:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 15px 40px rgba(140, 159, 120, 0.15);
}

.pricing-content {
    padding: 40px 30px;
}

.pricing-price {
    margin: 30px 0;
    text-align: center;
}

.currency {
    font-size: 2rem;
    font-weight: 500;
    vertical-align: top;
    margin-right: 5px;
}

.amount {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}

.pricing-price-currency2 {
    color: #978667;
}

.pricing-price-amount2 {
    color: #978667;
}

.pricing-price-currency1 {
    color: white;
}

.pricing-price-amount1 {
    color: white;
}

.period {
    font-size: 1.1rem;
    color: #666;
    display: block;
    margin-top: 5px;
}

.pricing-card.featured .period {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features {
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    margin: 15px 0;
    text-align: left;
}

.feature i {
    color: #978667;
    margin-right: 15px;
    font-size: 1.1rem;
}

.pricing-card.featured .feature i {
    color: white;
}

.feature span {
    color: #666;
    font-size: 1rem;
}

.pricing-card.featured .feature span {
    color: rgba(255, 255, 255, 0.9);
}

.cleaning-fee-note {
    text-align: center;
    margin-top: 30px;
    padding: 15px;
    background-color: #f8f8f8;
    border-radius: 8px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.cleaning-fee-note p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

.cleaning-fee-note i {
    color: #978667;
    margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .pricing-card {
        width: 100%;
        max-width: 320px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .pricing-header h2 {
        font-size: 2.2rem;
    }

    .pricing-card.cleaning-fee {
        width: 100%;
        max-width: 320px;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {

    .about-section,
    .facilities,
    .available-tours {
        flex-direction: row;
        gap: 60px;
    }

    .about-content,
    .about-images {
        flex: 1;
    }
}

/* Styles pour les tablettes */
@media (max-width: 1024px) {

    .about-section,
    .facilities,
    .available-tours {
        flex-direction: column;
        padding: 60px 20px;
    }

    .about-content {
        padding-right: 0;
    }

    .about-content h2 {
        font-size: 2.5rem;
    }

    .about-images {
        margin-top: 40px;
    }

    .image-small {
        margin-top: 0;
    }

    .main-nav {
        padding: 1rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .about-content {
        padding: 40px 20px;
    }

    .about-images {
        flex-direction: column;
        gap: 20px;
    }

    .image-large,
    .image-small {
        width: 100%;
        height: auto;
    }

    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .room-display {
        flex-direction: column;
    }

    .room-image {
        width: 100%;
        height: 300px;
    }

    .room-info-card {
        position: relative;
        width: 100%;
        margin: 20px 0;
    }

    .gallery-slider {
        height: 400px;
    }

    .about-images {
        display: none !important;
    }
}

/* Styles pour les mobiles */
@media (max-width: 768px) {

    .about-section,
    .facilities,
    .available-tours {
        padding: 40px 20px;
    }

    .about-images {
        display: none;
    }

    .main-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .nav-links a {
        padding: 10px;
        width: 100%;
        text-align: left;
    }

    .nav-toggle {
        display: block;
        cursor: pointer;
        margin-right: auto;
    }

    .nav-toggle.active+.nav-links {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

    .cta-button {
        padding: 0.8rem 1.5rem;
    }

    .room-display {
        flex-direction: column !important;
    }

    .room-display .room-info-card {
        order: 2 !important;
    }

    .room-display .room-image {
        order: 1 !important;
    }

    .room-image {
        height: 250px;
    }

    .room-info-card {
        padding: 20px;
    }

    .room-amenities {
        flex-direction: column;
        gap: 15px;
    }

    .gallery-slider {
        height: 350px;
    }


    .gallery-nav {
        width: 40px;
        height: 40px;
    }

    .activity-item {
        flex-direction: column;
    }

    .activity-image {
        width: 100%;
        height: 250px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .language-selector.glossy {
        bottom: 10px;
        right: 10px;
    }

    .room-display.reverse {
        flex-direction: column;
    }

    .room-display.reverse .room-info-card {
        order: 2;
    }

    .room-display.reverse .room-image {
        order: 1;
    }
}

/* Media Queries pour les petits téléphones (max-width: 480px) */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .about-content h2 {
        font-size: 1.5rem;
    }

    .room-info-card h3 {
        font-size: 1.3rem;
    }

    .gallery-slider {
        height: 300px;
    }


    .modal-content {
        width: 95%;
        height: 95%;
    }

    .modal-nav {
        width: 35px;
        height: 35px;
    }

    .hero-title-container {
        padding: 0 15px;
    }
}

/* Ajustement des images */
img,
video {
    max-width: 100%;
    height: auto;
}

/* Menu hamburger pour mobile */
.nav-toggle {
    font-size: 2rem;
    cursor: pointer;
    z-index: 1002;
    position: fixed;
    top: 20px;
    right: 20px;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -250px;
    /* Commence hors de l'écran */
    width: 250px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.700);
    z-index: 1001;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.sidebar a {
    color: white;
    text-decoration: none;
    margin: 10px 0;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.sidebar a:hover {
    color: #978667;
}

.close-btn {
    align-self: flex-end;
    font-size: 2rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    margin-bottom: 20px;
}

/* Sidebar ouverte */
.sidebar.open {
    right: 0;
}

/* Animations d'entrée */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Appliquer les animations aux éléments */
.hero-content {
    animation: fadeIn 1s ease-out forwards;
}

.facilities-grid,
.gallery-slider,
.local-activities,
.available-tours {
    animation: slideIn 1s ease-out forwards;
    animation-delay: 0.5s;
}

.footer-content {
    animation: scaleIn 1s ease-out forwards;
    animation-delay: 0.7s;
}

/* Assurez-vous que les éléments sont invisibles avant l'animation */
.hero-content,
.facilities-grid,
.gallery-slider,
.local-activities,
.available-tours,
.footer-content {
    opacity: 0;
}

/* Animations au défilement */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-animation {
    opacity: 0;
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.scroll-animation.visible {
    animation: fadeInUp 0.6s forwards;
}

/* Garage Section */
.garage-section {
    padding: 100px 0;
    background: #faf8f5;
    position: relative;
    overflow: hidden;
}

.garage-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.garage-content {
    display: flex;
    align-items: center;
    gap: 60px;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.garage-text {
    flex: 1;
    padding: 60px;
}

.garage-label {
    display: inline-block;
    background: rgba(151, 134, 103, 0.1);
    color: #978667;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.garage-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.garage-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.garage-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.benefit-item i {
    width: 40px;
    height: 40px;
    background: #978667;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.benefit-item span {
    color: #555;
    font-size: 1.1rem;
    font-weight: 500;
}

.garage-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #978667;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.garage-button:hover {
    background: #7a6b52;
    transform: translateX(5px);
}

.garage-button i {
    transition: transform 0.3s ease;
}

.garage-button:hover i {
    transform: translateX(5px);
}

.garage-image {
    flex: 1;
    position: relative;
    height: 500px;
    overflow: hidden;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.2), transparent);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .garage-content {
        flex-direction: column;
        gap: 0;
    }

    .garage-text {
        padding: 40px;
    }

    .garage-image {
        height: 300px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .garage-section {
        padding: 60px 0;
    }

    .garage-text {
        padding: 30px;
    }

    .garage-text h2 {
        font-size: 2rem;
    }

    .garage-benefits {
        gap: 15px;
    }

    .garage-button {
        width: 100%;
        justify-content: center;
    }
}

/* Description Section */
.description-section {
    padding: 100px 20px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.description-container {
    max-width: 1200px;
    margin: 0 auto;
}

.description-header {
    text-align: center;
    margin-bottom: 60px;
}

.description-header .subtitle {
    color: #978667;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.description-header h2 {
    font-size: 2.8rem;
    color: #333;
    margin: 10px 0 20px;
    font-weight: 600;
}

.description-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.description-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.description-intro p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.description-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-group {
    background: #faf8f5;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-group:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-group h3 {
    color: #978667;
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(151, 134, 103, 0.2);
}

.feature-group ul {
    list-style: none;
    padding: 0;
}

.feature-group li {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.feature-group li:before {
    content: "✓";
    color: #978667;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.floor-plan {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.floor {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.floor h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(151, 134, 103, 0.2);
}

.floor p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.floor ul {
    list-style: none;
    padding: 0;
}

.floor li {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.floor li:before {
    content: "•";
    color: #978667;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .description-section {
        padding: 60px 20px;
    }

    .description-header h2 {
        font-size: 2.2rem;
    }

    .description-features {
        grid-template-columns: 1fr;
    }

    .feature-group {
        padding: 25px;
    }
}

.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
}

/* Rooms Section */
.rooms-section {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.rooms-header {
    text-align: left;
    margin-bottom: 60px;
}

.rooms-header .subtitle {
    color: #666;
    font-size: 0.875rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.rooms-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin: 0;
}

.rooms-container {
    position: relative;
}

.room-display {
    position: relative;
    margin-bottom: 110px;
}

.room-display.reverse {
    flex-direction: row-reverse;
}

.room-display.reverse .room-info-card {
    right: auto;
    left: 0;
    margin-right: 0;
    margin-left: 40px;
}

.room-display.reverse .room-image {
    margin-left: auto;
}

.room-image {
    width: 70%;
    height: 550px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-dots {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: #fff;
}

.room-info-card {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 500px;
    margin-right: 40px;
    z-index: 3;
}

.room-price {
    color: #978667;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.room-info-card h3 {
    color: #333;
    font-size: 2rem;
    margin: 0 0 20px;
}

.room-info-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.room-amenities {
    display: flex;
    gap: 30px;
}

.amenity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.amenity i {
    color: #333;
    font-size: 1.2rem;
}

.amenity span {
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 1200px) {
    .room-info-card {
        position: relative;
        transform: none;
        top: -50px;
        right: auto;
        margin: 0 auto;
        width: 90%;
        max-width: 400px;
    }

    .image-dots {
        flex-direction: row;
        left: 50%;
        bottom: 20px;
        top: auto;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .rooms-header {
        text-align: center;
    }

    .room-info-card {
        padding: 30px;
        top: -30px;
    }

    .room-image {
        height: 400px;
    }
}

/* Logement Section */
.logement-section {
    padding: 100px 20px;
    background: white;
    position: relative;
}

.logement-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.logement-content .subtitle {
    color: #978667;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
}

.logement-content h2 {
    font-size: 2.8rem;
    color: #333;
    margin: 10px 0 40px;
    font-weight: 600;
}

.logement-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
}

.highlight-item {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    flex: 1;
    max-width: 300px;
}

.highlight-item:hover {
    transform: translateY(-10px);
}

.highlight-item i {
    font-size: 2.5rem;
    color: #978667;
    margin-bottom: 20px;
}

.highlight-content h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.highlight-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.logement-features {
    margin-bottom: 60px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2rem;
    color: #978667;
    margin-bottom: 15px;
}

.feature-item h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.logement-extras {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.extra-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 15px 25px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.extra-item:hover {
    transform: translateY(-5px);
}

.extra-item i {
    color: #978667;
    font-size: 1.5rem;
}

.extra-item p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .logement-highlights {
        flex-direction: column;
        align-items: center;
    }

    .highlight-item {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .logement-section {
        padding: 60px 20px;
    }

    .logement-content h2 {
        font-size: 2.2rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .logement-extras {
        flex-direction: column;
        align-items: center;
    }

    .extra-item {
        width: 100%;
        max-width: 400px;
    }

    .room-image {
        width: 100%;
        height: 275px;
    }

    .gallery-item.featured {
        height: 300px;
    }
}

.image-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-images img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.2);
    transition: opacity 1s ease-in-out, transform 8s ease-out;
}

.hero-images img.active {
    opacity: 1;
    transform: scale(1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.button-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #333;
    border-radius: 30px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.cleaning-fee-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    margin: 20px auto;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(151, 134, 103, 0.1);
    border: 1px solid rgba(151, 134, 103, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cleaning-fee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(151, 134, 103, 0.15);
}

.cleaning-fee-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(151, 134, 103, 0.2);
}

.cleaning-fee-header i {
    font-size: 1.8rem;
    color: #978667;
    background: rgba(151, 134, 103, 0.1);
    padding: 12px;
    border-radius: 12px;
}

.cleaning-fee-header h3 {
    color: #333;
    font-size: 1.4rem;
    margin: 0;
    font-weight: 600;
}

.cleaning-fee-content {
    text-align: center;
}

.cleaning-fee-price {
    margin-bottom: 25px;
}

.cleaning-fee-price .amount {
    display: block;
    font-size: 2.5rem;
    color: #978667;
    font-weight: 600;
    margin-bottom: 5px;
}

.cleaning-fee-price .note {
    color: #666;
    font-size: 0.9rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.logement-features {
    margin-bottom: 60px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2rem;
    color: #978667;
    margin-bottom: 15px;
}

.feature-item h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.logement-extras {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.extra-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 15px 25px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.extra-item:hover {
    transform: translateY(-5px);
}

.extra-item i {
    color: #978667;
    font-size: 1.5rem;
}

.extra-item p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .logement-highlights {
        flex-direction: column;
        align-items: center;
    }

    .highlight-item {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .logement-section {
        padding: 60px 20px;
    }

    .logement-content h2 {
        font-size: 2.2rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .logement-extras {
        flex-direction: column;
        align-items: center;
    }

    .extra-item {
        width: 100%;
        max-width: 400px;
    }

    .room-image {
        width: 100%;
        height: 275px;
    }

    .gallery-item.featured {
        height: 300px;
    }
}

.image-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-images img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.2);
    transition: opacity 1s ease-in-out, transform 8s ease-out;
}

.hero-images img.active {
    opacity: 1;
    transform: scale(1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.button-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #333;
    border-radius: 30px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.pricing-badge-cleaning {
    top: 15px !important;
    right: -22px !important;
}


.pricing-price-currency3 {
    color: #8c9f78;
}