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

.hero__video {
    width: 100%;
    height: 100%;
    max-height: 100vh;
    object-fit: cover;
    background-color: rgba(255, 255, 255, 0.2);
    /* Couleur semi-transparente */
    backdrop-filter: blur(10px);
    /* Applique un flou */
}


.welcome-text {
    font-size: 3em;
    color: #333;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.welcome-texth3 {
    font-size: 1em;
    color: #333;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {

    .welcome-texth1 {
        font-size: 4em;
        padding: 0 1rem;
        text-align: center;
    }


    .welcome-texth2 {
        font-size: 2em;
        padding: 0 1rem;
        text-align: center;
    }

    .welcome-texth3 {
        font-size: 1.2em;
        padding: 1rem;
        text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
    }


}



/*=======================================================*/
/* Acceuil */
/*====================================================*/

.section-accueil {
    padding: 1rem 1rem 1rem;
    background: #fff;
}

.section-title {
    font-size: 2.5em;
    color: rgba(73, 175, 205, 1);
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.access-info {
    background: rgba(73, 175, 205, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
}

.access-info h3 {
    color: rgba(73, 175, 205, 1);
    margin-bottom: 1rem;
    font-size: 1.3em;
}

.access-info ul {
    list-style: none;
    padding-left: 1rem;
}

.access-info li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.access-info li::before {
    content: '•';
    color: rgba(73, 175, 205, 1);
    position: absolute;
    left: 0;
}

.image-container {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
}

.cta-button {
    display: inline-block;
    background: rgba(73, 175, 205, 0.9);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-align: center;
    font-size: 1.2em;
    transition: all 0.3s ease;
    margin: 1rem auto;
    box-shadow: 0 4px 15px rgba(73, 175, 205, 0.3);
    z-index: 1001;
    /* Supérieur au z-index de la navigation mobile */
}

.cta-button:hover {
    background: rgba(73, 175, 205, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(73, 175, 205, 0.4);
    z-index: 1001;
    /* Supérieur au z-index de la navigation mobile */
}

/* Media Queries pour les plus grands écrans */
@media (min-width: 768px) {
    .section-accueil {
        padding: 4rem 2rem;
    }

    .content-wrapper {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .text-content {
        flex: 1 1 60%;
        padding-right: 2rem;
    }

    .image-container {
        flex: 1 1 35%;
        align-self: flex-start;
        top: 2rem;
    }

    .cta-button {
        flex: 0 0 100%;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3em;
    }
}



/*=======================================================*/
/* Gallerie */
/*====================================================*/


.section-title-h2 {
    font-size: 1.5rem;
    color: rgba(73, 175, 205, 1);
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.zone-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: rgba(255, 0, 0, 0.7);
    /* Rouge semi-transparent */
    border-radius: 50%;
    cursor: pointer;
    transform: translate(-50%, -50%);
    /* Centrer sur la zone */
    transition: background 0.3s;
}

.zone-marker:hover {
    background-color: rgba(255, 0, 0, 1);
}

.zone-marker:hover {
    background-color: rgba(255, 0, 0, 1);
    transform: translate(-50%, -50%) scale(1.2);
}


/* Styles pour la section appartement */

.floor-plan {
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.floor-plan h3 {
    color: rgba(73, 175, 205, 1);
    margin-bottom: 1rem;
    font-size: 1.5em;
}

.plan-container {
    position: relative;
    width: 100%;
    margin: 1rem 0;
    z-index: 1;
}

area[coords] {
    position: relative;
    z-index: 2;
}


.plan-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    cursor: pointer;
}

.plan-description {
    color: #666;
    font-size: 1.1em;
    margin-top: 1rem;
    text-align: center;
}

/* Modal styles */
.modal.hidden {
    display: none;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    max-width: 90%;
    max-height: 90vh;
    z-index: 2001;
}

.modal-content img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}

.close-modal {
    position: absolute;
    right: 25px;
    top: 10px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2002;
}

#modalCaption {
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 1.2em;
}

/* Responsive design */
@media (min-width: 768px) {
    .floor-plan {
        flex: 1 1 calc(50% - 2rem);
    }

    .modal-content {
        max-width: 80%;
    }
}

@media (max-width: 767px) {
    .floor-plan {
        margin-bottom: 1.5rem;
    }
}



/* Section Station - Mobile First */


iframe {
    width: 100%;
    /* Largeur adaptable à son conteneur */
    height: 500px;
    /* Hauteur fixe */
    border: none;
    /* Supprime la bordure par défaut */
}


.station-plan {
    border-radius: 15px;
    overflow: hidden;
    margin: 0 auto;
    max-width: 100%;
}



.station-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}





/* Overlay avec texte de zoom */
.zoom-hint {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zoom-hint span {
    color: white;
    background: rgba(73, 175, 205, 0.9);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}


/* Tablette (768px et plus) */
@media (min-width: 768px) {


    .zoom-hint span {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
}

/* Desktop (1024px et plus) */
@media (min-width: 1024px) {
    .station-plan {
        max-width: 80%;
        transition: transform 0.3s ease;
    }

    .station-plan:hover {
        transform: translateY(-5px);
    }

    .station-info {
        padding: 2.5rem;
    }
}

/* Grand écran (1200px et plus) */
@media (min-width: 1200px) {
    .station-plan {
        max-width: 70%;
    }
}


/*=======================================================*/
/* Reservation */
/*====================================================*/

.main-section#reservations {
    position: relative;
    z-index: 1000;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
}



.price-info {
    text-align: right;
}

.price-info p {
    font-size: 1.4em;
    color: #333;
}

.price-info strong {
    color: rgba(73, 175, 205, 1);
    font-size: 1.2em;
}

.price-info small {
    display: block;
    color: #666;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {

    .main-section#reservations {
        padding: 1rem;
    }

    .reservation-info {
        flex-direction: column;
    }

    .price-info {
        text-align: center;
    }
}

/*=======================================================*/
/* Activités */
/*====================================================*/

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1em;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.activities-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.activity-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-decoration: none;
}


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

.activity-content {
    padding: 1.5rem;
}

.activity-content h3 {
    color: rgba(73, 175, 205, 1);
    font-size: 1.4em;
    margin-bottom: 0.5rem;
}

.activity-content p {
    color: #666;
    line-height: 1.5;
}

.cta-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    z-index: 1001;
}

.cta-button {
    display: inline-block;
    background: rgba(73, 175, 205, 0.9);
    color: white;
    text-decoration: none;
    padding: 1rem 3rem;
    border-radius: 25px;
    font-size: 1.2em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(73, 175, 205, 0.2);
    position: relative;
    z-index: 1;
}

.cta-button:hover {
    background: rgba(73, 175, 205, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(73, 175, 205, 0.4);
    z-index: 1011;
}

@media (max-width: 768px) {
    .cta-button {
        width: 80%;
        max-width: 300px;
        text-align: center;
    }
}



/* Media Queries pour tablettes et desktop */
@media (min-width: 768px) {
    .section-title {
        font-size: 2.5em;
    }

    .activities-cards {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }

    .activity-card {
        flex: 0 1 calc(50% - 1rem);
    }
}

@media (min-width: 1024px) {
    .activity-card {
        flex: 0 1 calc(33.333% - 1.5rem);
    }
}

/*=======================================================*/
/* Reviews */
/*====================================================*/


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

.overall-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding-top: 15px;
}

.score-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(73, 175, 205, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.score {
    font-size: 1.8em;
    color: rgba(73, 175, 205, 1);
    font-weight: bold;
}

.total {
    font-size: 1em;
    color: #666;
}

.total-reviews {
    color: #666;
    font-size: 0.9em;
}


.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.reviewer-info h3 {
    color: #333;
    font-size: 1.2em;
    margin-bottom: 0.2rem;
}

.review-meta {
    color: #666;
    font-size: 0.9em;
}

.review-score {
    background: rgba(73, 175, 205, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: rgba(73, 175, 205, 1);
    font-weight: bold;
}

.review-date {
    color: #999;
    font-size: 0.9em;
    margin-bottom: 1rem;
}

.review-text {
    color: #333;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.review-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.detail-item {
    background: #f5f5f5;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9em;
    color: #666;
}

.load-more {
    display: block;
    margin: 2rem auto 0;
    padding: 1rem 2rem;
    background: rgba(73, 175, 205, 0.9);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more:hover {
    background: rgba(73, 175, 205, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(73, 175, 205, 0.3);
}

/* Media Queries */
@media (min-width: 768px) {

    .score-circle {
        width: 100px;
        height: 100px;
    }

    .score {
        font-size: 2.2em;
    }
}



/*=======================================================*/
/* Footer */
/*====================================================*/


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

.footer__menu {
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer__menu h3 {
    color: #333;
    font-size: 1.2em;
    margin-bottom: 1rem;
}

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

.footer__menu ul li {
    margin-bottom: 0.5rem;
}

.footer__menu ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__menu ul li a:hover {
    color: rgba(73, 175, 205, 1);
}

.footer__logo {
    text-align: center;
}

.footer__logo .logo-img {
    max-width: 200px;
    height: auto;
    margin-bottom: 1rem;
}

.footer__tagline {
    color: #666;
    font-style: italic;
    max-width: 400px;
    margin: 0 auto;
    font-size: 0.9em;
}


.footer__copyright {
    background-color: rgba(73, 175, 205, 0.9);
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
    font-size: 0.9em;
    position: relative;
    z-index: 1001;
}

.footer__copyright a {
    color: white;
    text-decoration: underline;
    position: relative;
    z-index: 1001;
    display: inline-block;
    padding: 0.5rem 0;
}

.footer__copyright a:hover {
    color: white;
    text-decoration: underline;
    cursor: pointer;
}

/* Media Queries */
@media (min-width: 768px) {
    .footer__content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        padding: 2rem;
    }

    .footer__menu {
        width: auto;
    }

    .footer__logo {
        order: -1;
        /* Place le logo à gauche sur desktop */
    }

    .footer__tagline {
        text-align: right;
    }
}