/*-----------------------------------------------------1ere section barre de menu----------------------------------------------------------------*/

/* RÃ©initialisation des marges et du padding */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
}

/* Style par dÃ©faut (transparent) */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent; /* Transparent au dÃ©but */
    padding: 0 17px;
    color: white;
    position: fixed;   /* header fixe */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    transition: background-color 0.5s, box-shadow 0.5s; /* transition douce */
    box-sizing: border-box;
}

/* Style quand on scroll */
.header.scrolled {
    background-color: #000000c7; /* noir translucide */
    box-shadow: 0 2px 5px rgb(0, 0, 0); /* ligne/bordure en bas */
}

/* Logo */
.header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header .logo img {
    height: 85px;
}

.header .logo span {
    font-size: 22px;
    font-weight: bold;
}

/* Menu */
.header .menu {
    display: flex;
    gap: 20px;
    margin-left: auto;
    align-items: center;
}

.header .menu a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    margin: 0 10px;
}

.header .menu a:hover {
    color: #1e90ff;
}

/* Bouton Appeler */
.header .call-button {
    background: linear-gradient(135deg, rgb(45, 168, 255), rgb(15, 95, 168));
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    margin-left: 32px;
    margin-right: 37px;
}

.header .call-button:hover {
    background: #4682b4;
}

/* Style du bouton menu mobile (icÃ´ne hachÃ©e) */
.menu-button {
    display: none; /* Masquer le bouton par dÃ©faut sur PC */
}

/* Responsive Mobile pour le Header */
@media (max-width: 768px) {
    /* Masquer le bouton Appeler */
    .header .call-button {
        display: none;
    }

    /* Afficher le bouton menu (icÃ´ne) */
    .menu-button {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        color: white;
        
    }

    .hero h1 {
        font-size: 38px !important;
        margin-bottom: 25px;
    }

    .hero {
        height: 100vh;
    }

    .badge {
        padding: 10px 14px;
        font-size: 12px;
        margin-bottom: 0px;
    }

    .cta {
        padding: 16px 19px;
        font-size: 14px;
    }

    /* Cacher le menu par dÃ©faut */
    .header .menu {
        display: none;
        position: absolute;
        top: 60px; /* juste sous le header */
        right: 15px;
        flex-direction: column;
        background-color: #0a0a0a;
        padding: 10px;
        border-radius: 5px;
        gap: 15px;
        z-index: 1000;
    }

    /* Header : logo Ã  gauche, bouton menu Ã  droite */
    .header {
        justify-content: space-between; /* garde le logo Ã  gauche et le menu-button Ã  droite */
        padding: 0 15px;
    }

    .header .logo {
        flex-shrink: 0; /* pour Ã©viter que le logo se rÃ©trÃ©cisse */
    }

    .header .logo img {
        height: 67px;
    }
}


/*-----------------------------------------------------2 section (Hero) ----------------------------------------------------------------*/

/* --- Styles de base et section Hero --- */
.hero {
    position: relative;
    height: 96vh;
    background: url("https://www.zupimages.net/up/26/09/hplg.png") center/cover no-repeat;
    background-attachment: fixed; /* Effet parallaxe */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    font-family: 'Arial', sans-serif;
    overflow: hidden;
    min-height: 0;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgb(0 0 0 / 45%), rgb(0 0 0));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

/* --- Badge supÃ©rieur --- */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 13px 30px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

/* --- Titre et dÃ©gradÃ© --- */
.hero h1 {
    font-size: 55px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero h1 span {
    background: linear-gradient(90deg, #00aaff, #69cafa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

/* --- Bouton principal (Appeler) --- */
.cta {
    display: inline-block;
    background: linear-gradient(135deg, rgb(45, 168, 255), rgb(15, 95, 168));
    color: white;
    padding: 19px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 10px;
}

.cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(29, 161, 255, 0.4);
}

/* --- Section Statistiques --- */
.stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.icon {
    width: 50px;
    height: 50px;
    background: rgba(29, 161, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon svg {
    width: 24px;
    height: 24px;
}

.stat strong {
    font-size: 28px;
    color: #1da1ff;
    display: block;
}

.stat p {
    font-size: 14px;
    opacity: 0.8;
    margin: 0 !important;
}

/* --- Nouveau Bouton de RÃ©servation (Secondaire) --- */
.cta-secondary {
    display: inline-block;
    background: linear-gradient(135deg, rgb(45, 168, 255), rgb(15, 95, 168));
    color: white;
    padding: 19px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 10px;
}

.cta-secondary:hover {
    background: rgba(0, 153, 253, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 153, 253, 0.2);
}

/* --- AdaptabilitÃ© Mobile Hero --- */
@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 80px 0;
        background-attachment: scroll; /* DÃ©sactivÃ© sur mobile pour la performance */
        min-height: 0;
    }

    .hero h1 {
        font-size: 31px !important;
        margin-bottom: 25px;
    } /* ACCOLADE AJOUTÃ‰E ICI */

    .badge {
        margin-bottom: 0 !important;  
        font-size: 11px;
        padding: 10px 24px;
    }
    
    .cta {
        font-size: 13px;
    }
    
    .stat {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .icone {
        width: 40px;
        height: 40px;
    }

    .cta-secondary {
        font-size: 13px;
        width: 42%;
    }
}


/*-----------------------------------------------------3 section (About) ----------------------------------------------------------------*/
@media (max-width: 768px) {
    .hero {
        height: auto; /* adapte la hauteur au contenu ou Ã  l'image */
        min-height: 100vh; /* si tu veux qu'elle prenne au moins toute la hauteur */
        background: url("https://www.zupimages.net/up/26/09/tlmh.png") center top / 100% auto no-repeat;
        background-attachment: scroll; /* Ã©vite les problÃ¨mes sur mobile */
    }
}

.about-section {
    width: 100%;
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 107px 20px;
    box-sizing: border-box;
    background-color: black;
}

section {
    display: block;
    unicode-bidi: isolate;
}

.about-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    color: #fff;
}

.about-label {
    color: #1da1ff !important;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.about-container h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-container h2 span {
    background: linear-gradient(90deg, #00aaff, #69cafa); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}

.about-desc {
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 16px;
    color: #b5b5b5;
    line-height: 1.6;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.card {
    background: linear-gradient(145deg, #1a1a1a, #0e0e0e);
    border-radius: 14px;
    padding: 56px 25px;
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
    will-change: transform, box-shadow; 
}

.card:hover {
    transform: translateY(-12px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 25px 50px rgba(0, 170, 255, 0.25);
    background: linear-gradient(145deg, #222, #111); 
}

.card:hover .icon {
    background: rgba(0, 170, 255, 0.3); 
    transform: scale(1.2); 
    transition: transform 0.4s ease, background 0.4s ease;
}

.icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 170, 255, 0.15);
    color: #00aaff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 20px;
}

.card h3 {
    font-size: 27px;
    margin-bottom: 10px;
}

.card p {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.5;
}


/*-----------------------------------------------------4 section (Hero IntermÃ©diaire) ----------------------------------------------------------------*/

.hero-section {
    position: relative;
    height: 70vh;
    background-image: url("https://i.postimg.cc/9fQJxd00/b47f705c-9aea-49d4-8b72-1f836bfdb6f1.png"); 
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-top-left-radius: 70px;
    border-top-right-radius: 70px;
}

/* Overlay sombre */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(255, 255, 255, 0), rgb(0, 0, 0));
    z-index: 1;
}

/* Contenu texte */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    font-family: "Arial", sans-serif;
}

.hero-subtitle {
    display: block;
    font-size: 22px;
    font-weight: 600;
    color: #2da8ff;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.hero-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin: 0;
}

.hero-content h1 {
    font-size: 42px;
    margin-top: 10px;
    background: linear-gradient(90deg, #00aaff, #69cafa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section responsive pour mobile */
@media (max-width: 768px) {
    .hero-section {
        height: auto; 
        min-height: auto; 
        background-size: cover; 
        background-position: center;
        overflow: hidden;
        border-top-left-radius: 50px;
        border-top-right-radius: 50px;
        padding: 50px 0;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content h2 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 18px;
    }
}


/*-----------------------------------------------------5 section (TÃ©moignages) ----------------------------------------------------------------*/

.testimonials5 {
    position: relative;
    padding: 120px 0;
    background: #000000;
    overflow: hidden;
    text-align: center;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.testimonials5::before,
.testimonials5::after {
    content: "";
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

@media (max-width: 768px) {
    .testimonials5::before,
    .testimonials5::after {
        display: none;
    }
}

/* --- Titres --- */
.container5 {
    margin-bottom: -50px;
    position: relative;
    z-index: 3;
}

.subtitle5 {
    color: #2ea3ff;
    font-weight: 600;
    font-size: 18px;
    display: block;
    margin-bottom: 10px;
}

.title5 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #fff;
}

.highlight5 {
    color: #2ea3ff;
}

.description5 {
    color: #aaa;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Slider --- */
.slider5 {
    overflow: hidden;
    width: 100%;
    position: relative;
    z-index: 1;
}

.slide-track5 {
    display: flex;
    width: max-content;
    will-change: transform;
    gap: 20px;
}

/* --- Cartes --- */
.card5 {
    min-width: 320px;
    background: #1c1c1c;
    padding: 25px 30px;
    border-radius: 20px;
    text-align: left;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 20px rgba(46, 163, 255, 0.1);
    white-space: pre-line; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card5:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* --- Citation --- */
.quote5 {
    font-size: 38px;
    color: #2ea3ff;
    margin-bottom: 12px;
}

.text5 {
    font-size: 15px;
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 15px;
}

.stars5 {
    color: #2ea3ff;
    font-size: 18px;
    margin-bottom: 10px;
}

.author5 {
    font-weight: 600;
    font-size: 14px;
    color: #fff;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .card5 {
        min-width: 260px;
        padding: 20px;
    }

    .title5 {
        font-size: 32px;
    }
}


/*-----------------------------------------------------6 section (Footer) ----------------------------------------------------------------*/

.footer {
    background-color: #111;
    color: #fff;
    padding: 50px 20px;
    font-family: Arial, sans-serif;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
}

.footer-col {
    flex: 1 1 200px;
}

.footer-logo img {
    width: 180px;
    margin-bottom: 20px;
}

/* Social */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons img {
    width: 40px;
    transition: transform 0.3s;
}

.social-icons a:hover img {
    transform: scale(1.1);
}

/* Links */
.footer-col h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    line-height: 2;
}

.footer-col a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #00bcd4;
}

/* Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
}

/* ðŸ“± MOBILE */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-col {
        width: 100%;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-logo img {
        margin: 0 auto 20px;
    }
}