html, body{
    height: 100%;
    overflow-x: hidden;
}
body {
    padding-top: 60px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
/* bar du haut */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    box-shadow: 0 2px 10px rgba(22, 14, 14, 0.1);
    z-index: 1000;
}
.room-images-wrapper {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
}

.room-images-wrapper::-webkit-scrollbar {
    height: 6px;
}

.room-images-wrapper::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.3);
    border-radius: 3px;
}

.room-images-wrapper::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.1);
    border-radius: 3px;
}

.room-images-wrapper img {
    flex-shrink: 0;
    width: 100%;
    max-width: 310px;
    border-radius: 8px;
    object-fit: cover;
}
/* avantage de reservation */
h2 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 20px;
    color: #222;
    text-align: center;
}
.benefice {
    list-style: none;
    margin: 10px 0 12px;
    padding: 0;
    width: fit-content;
}
.benefice li {
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
    margin: 5px 0;
    font-size: 14px;
    color: #444;
}
.descri {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-align: center;
}
.btn-back {
    background: #004aad;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
}

.hamburger {
    width: 30px;
    cursor: pointer;
    position: fixed;
    top: 15px;
    right: 20px;
    z-index: 1000;
}
.hamburger span {
    display: block;
    height: 3px;
    margin: 5px 0;
    background: #004aad;
    transition: 0.3s;
}
.menu {
    display: none;
    position: fixed;
    top: 60px;
    right: 0;
    background: #ffffff;
    width: 220px;
    border-left: 1px solid #eee;
    box-shadow: -2px 0 10px rgba(0,0,0,0.05);
    z-index: 999;
}
.menu a {
    display: block;
    padding: 14px;
    text-decoration: none;
    color: #004aad;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
}
.menu a:hover {
    background: #F7f9fC;
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.btn-secondary {
    background: #ffc700;
    color: #ffffff;
    padding: 14px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.3s;
}
.btn-secondary:hover {
    background: #e6b800;
}
.menu.show {
    display: block;
}
html {
    scroll-behavior: smooth;
}
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    background: #F7f9fC;
}

.hero-image {
    width: 100%;
    max-width: 900px;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    margin: 0 auto 25px auto;
    display: block;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
.hero-content {
    padding: 20px 15px;
}
.hero-content p {
    margin-bottom: 15px;
}
.hero-content h1 {
    font-size: 3rem;
    color: #004aad;
    margin-bottom: 10px;
}
.market-instruction {
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.slogan {
    font-size: 1.3rem;
    color: #ffc700;
    font-weight: bold;
    margin-bottom: 15px;
}
.intro {
    font-size: 1.051rem;
    color: #333;
    max-width: 600px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}
.btn-primary {
    background: #004aad;
    color: #ffffff;
    padding: 14px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.3s;
}
.btn-primary:hover {
    background: #003580;
}
/* section a propos */
.info-about-section {
    background: linear-gradient(to bottom, #ffc700 0%, #004aad 100%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}
.info-about-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.info-about-container h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 2px 2px 0 #ffcc00,-2px -2px 0 #004aad,1px 1px 2px #000;
}
.info-about-container p {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.6;
    
}
/* section contact + footer pleine page */
.contact-footer-section {
    background: linear-gradient(to bottom,#ffc700 0%,#004aad 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;   
}
.contact-footer-container {
    text-align: center;
    max-width: 800px;
    width: 100%;
}
/* contact */
.contact-info h3 { 
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
}
.contact-info p {
    font-size: 1.1rem;
    color: #004aad;
    margin-bottom: 10px;
    line-height: 1.6;
}
.contact-info a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}
.contact-info a:hover {
    text-decoration: underline;
}
/* Footer  */
.contact-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    color: #fff;
}
.footer-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}
.footer-socials a {
    color: #ffc700;
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
}
.footer-socials img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s;
}
.footer-socials img:hover {
    transform: scale(1.1);
}
.footer-socials a:hover {
    text-decoration: underline;
}
/* section liste des hôtels */
.hotels-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 20px 40px;
    gap: 30px;
    background: #f5f7fa;
}
/* carte hôtel */
.hotel-card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 900px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
/* image de l'hôtel */
.hotel-image {
    width: 300px;
    height: 200px;
    object-fit: cover;
    flex-shrink: 0;
}
/* info de l'hôtel */
.hotel-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.hotel-info h3{
    font-size: 1.5rem;
    color: #004aad;
    margin-bottom: 10px;
}
.hotel-info p {
    font-size: 18px;
    color: #222;
    margin-bottom: 8px;
}
.note {
    color: #f5a623;
    font-weight: bold;
    margin: 5px 0;
}
/* bouton voir reservation */
.btn-primari {
    display: inline-block;
    background: #004aad;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.3s;
    text-align: center;
}
.btn-primari:hover {
    background: #003580;
}
/* section réservation */
.reserve-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(to bottom,#ffc700 0%,#004aad 100%);
    color: #fff;
    text-align: center;
    padding: 20px;
}
.reserve-container {
    max-width: 500px;
    width: 100%;
}
.reserve-container h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    line-height: 1.2;
}
.reserve-container p {
    font-size: 15px;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 25px;
    line-height: 1.6;
}
.btn-whatsapp {
    display: inline-block;
    background: #25d366;
    color: #fff;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
    border: none;
    outline: none;
    font-size: 18px;
}

.btn-call {
    margin-top: 8px;
    background: #0056b3;
    color: white;
    font-size: 14px;
    padding: 3px;
    border-radius: 6px;
    text-decoration: none;
}

.btn-call:hover {
    background: #1ebe5d;
}
.btn-whatsapp:hover {
    background: #1ebe5d;
}
/* hotel page */
.hotel-page {
    padding: 40px 20px;
    background: #f5f7fa;
}
.hotel-header {
    text-align: center;
}
.hotel-header h1 {
    font-size: 2rem;
    color: #004aad;
    margin-bottom: 10px;
}
.hotel-location {
    font-size: 1.1rem;
    color: #333;
}
.hotel-gallery {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.hotel-rooms {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.room-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    width: 260px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.room-card h3 {
    color: #004aad;
    margin-bottom: 10px;
}
.room-card p {
    margin-bottom: 15px;
    color: #333;
}
/* bouton reservation */
.reservation-section {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(180deg,#ffc700 0%,#004aad 100%);
}
.reservation-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #fff;
}
.reservation-section p {
    font-size: 1.05rem;
    margin-bottom: 25px;
    color: #ffffff;
}
.reservation-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.btn-form {
    background: #ffc700;
    color: #004aad;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}
.btn-form:hover {
    background: #e6b800;
}

/* liste d'hotel */
.hotel-pag {
    padding: 40px 20px;
    background: #f5f7fa;
}
.hotel-heade {
    text-align: center;
    margin-bottom: 40px;
}
.hotel-heade {
    font-size: 1.5rem;
    color: #004aad;
    margin-bottom: 10px;
}
.hotel-heade h1 {
    font-size: 32px;
    text-align: center;
}
.hotel-locatio {
    font-size: 1.1rem;
    color: #333;
}
.hotel-imag {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s;
}
.hotel-imag:hover {
    transform: scale(1.03);
    cursor: pointer;
}
.hotel-roo {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}
.room-car {
    background: #ffffff;
    border-radius: 16px;
    width: 100%;
    max-width: 320px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 15px;
    color: #333;
    font-weight: bold;
}
.room-car h3 {
    color: #004aad;
    margin: 15px 0 10px;
}
.room-car p {
    margin-bottom: 15px;
    color: #333;
    font-weight: bold;
}
/* galerie horizontale avec indice */
.hotel-gallery-wrapper {
    position: relative;
}
.scroll-hint {
    font-size: 14px;
    color: #004aad;
    text-align: right;
    margin: 5px 0;
}
.hotel-galler {
    width: 100%;
    overflow-x: auto;
    padding: 10px 0;
}
.gallery-scroll {
    display: flex;
    gap: 15px;
    scroll-behavior: smooth;
}
.gallery-scroll img {
    height: 200px;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}
.gallery-scroll img:hover {
    transform: scale(1.05);
    cursor: pointer;
}
/* badge certifié */
.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}
.verifie {
    background-color: #28a745;
}
.scroll-indicator {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(-50%);
    font-size: 30px;
    color: #e6b800;
    pointer-events: none;
}
/* service / equipement */
.hotel-services {
    background: #ffffff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    margin-bottom: 25px;
}
.hotel-services h3 {
    color: #004aad;
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 15px;
    text-align: center;
    font-weight: bold;
}
.service-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.service-badges span {
    background: #ffc700;
    color: #004aad;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.95rem;
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
    transition: transform 0.3s;
    cursor: default;
}
.service-badges span:hover {
    transform: translate(-3px);
    background: #ffdb33;
}
/* hotel description */
.hotel-description {
    background: #ffffff;
    padding: 15px 15px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.8);
    font-size: 1rem;
    line-height: 1.5;
    max-width: 900px;
    margin: 10px auto;
    text-align: center;
    color: #333333;
    word-spacing: normal;
    letter-spacing: 0.5px;
}
.hotel-gallery-title,
.hotel-description-title {
    color: #004aad;
    font-size: 1.4rem;
    text-align: center;
    font-weight: bold;
    margin: 15px 0 10px 0;
}
/* message liste hôtel proffessionnel */
.hotel-list-header-pro {
    text-align: center;
    margin: 30px auto;
    padding: 25px 15px;
    max-width: 900px;
    background: #f5f7fa;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    border-left: 5px solid #004aad;
    margin-top: 10px;
}
.hotel-list-header-pro h2 {
    color: #004aad;
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.hotel-list-header-pro p {
    color: #555555;
    font-size: 1rem;
    margin-top: 0;
    line-height: 1.5;
}
/* espace avis client */
.hotel-reviews {
    max-width: 900px;
    margin: 30px auto;
    padding: 0 20px;
}
.section-title {
    text-align: center;
    font-size: 1.6rem;
    color: #004aad;
    margin-bottom: 40px;
}
.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.review-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}
.review-text {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 10px;
    line-height: 1.6;
}
.review-author {
    font-weight: 600;
    font-size: 0.85rem;
    color: #004aad;
}
.review-action {
    text-align: center;
    margin-top: 40px;
}
.btn-avis {
    display: inline-block;
    padding: 12px 20px;
    background: #ffc700;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s ease;
}
.contact-info {
    margin-top: 20px;
    font-size: 14px;
    color: #000000;
    line-height: 1.6;
    width: 100%;
    text-align: center;
}
/* info pratique */
.hotel-pratical-info {
    max-width: 1000px;
    margin: 30px auto 40px auto;
    padding: 20px;
    text-align: center;
}
.hotel-pratical-info .section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #004aad;
    margin-bottom: 30px;
}
.info-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.info-box {
    background: #f5f7fa;
    padding: 20px;
    border-radius: 12px;
    width: 250px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.5);
    transition: transform 0.2s ease;
}
.info-box:hover {
    transform: translate(-3px);
}
.info-box strong {
    display: block;
    color: #004aad;
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.info-box p {
    font-size: 1rem;
    color: #555;
    margin: 0;
}
.room-payment > p:first-child {
    font-size: 1rem;
    font-weight: 600;
    color: #e53935;
    margin-bottom: 5px;
    text-align: center;
    line-height: 1.5;
}
.room-payment > .payment-note{
    font-style: italic;
    color: #004aad;
    font-size: 0.95rem;
    margin-top: 3px;
    text-align: center;
}
.room-payment {
    border-radius: 10px;
    padding: 4px 12px;
    max-width: 350px;
    margin: 10px auto;
}
@media (max-width: 768px) {
    .info-container {
        flex-direction: column;
        align-items: center;
    }
    .info-box {
        width: 90%;
    }
}
.btn-avis:hover {
    background: #e6b200;
}
@media (max-width: 768px) {
    .service-badges span {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    .hotel-services h3 {
        font-size: 1.2rem;
    }
}
@media (max-width: 768px) {
    .gallery-scroll img {
        height: 140px;
    }
}
.hotel-galler::-webkit-scrollbar {
    display: none;
}
@media (max-width: 768px) {
    .hotel-roo {
        flex-direction: column;
        align-items: center;
    }
    .room-car {
        width: 95%;
    }
    .reservation-buttons {
        flex-direction: column;
    }
    .btn-whatsapp,
    .btn-form {
        width: 90%;
    }
}
@media (max-width: 768px) {
    .hotel-gallery, .hotel-rooms, .reservation-buttons {
        flex-direction: column;
        text-align: center;
    }
    .hotel-image, .room-card, .btn-whatsapp, .btn-form {
        width: 90%;
    }
}
@media (max-width: 768px) {
    .hotel-card {
        flex-direction: column;
    }
    .hotel-image {
        width: 100%;
        height: auto;
    }
    .hotel-info {
        padding: 15px;
        text-align: center;
    }
    .hotel-info h3 {
        font-size: 1.3rem;
    }
    .hotel-info p {
        font-size: 0.95rem;
    }
    .btn-primari {
        width: 80%;
        margin: 0 auto;
        text-align: center;
    }
}
/* bouton whatsapp */
@media (max-width: 600px)
{
    .reserve-container h1 {
        font-size: 1.5rem;
    }
    .reserve-container p {
        font-size: 1.5rem;
    }
    .btn-whatsapp {
        padding: 12px 20px;
    }
}
/* footer contact */
@media (max-width : 600px) {
    .contact-info h3 {
        font-size: 1.5rem;
    }
    .contact-info p {
        font-size: 1rem;
    }
    .footer-socials a {
        display: inline-block;
        margin: 5px 10px;
    }
}
/* section a propos */
@media(max-width: 600px) {
    .info-about-section {
        padding: 0 15px;
    }
    .info-about-container h3 {
        font-size: 1.5rem;
    }
    .info-about-container p {
        font-size: 1rem;
    }
}
/* page d'accueil */
@media (max-width: 600px) {
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .hero-image {
        height: 200px;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .slogan {
        font-size: 1.1rem;
    }
    .intro {
        font-size: 0.95rem;
    }
}