/* SECTION HERO */
.hero-simple {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* BACKGROUND IMAGE */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
}

/* OVERLAY légèrement plus doux */
.hero-simple::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.65));
    z-index: 1;
}

/* TEXT BLOCK */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    color: #fff;
    z-index: 2;
}

/* TITLE (desktop) */
.hero-title {
	 color: #fff !important; 
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 1px;
}

/* DESCRIPTION */
.hero-desc {
    font-size: 22px;
    margin-top: 20px;
    background-color: rgba(0,0,0,0.45);
    padding: 10px 18px;
    border-radius: 10px;
    display: inline-block;
    line-height: 1.4;
}

/* BUTTONS container */
.hero-buttons {
    margin-top: 35px;
}

/* BUTTONS */
.hero-btn,
.hero-btn-outline {
    padding: 14px 30px;
    margin: 8px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    transition: 0.3s;
}

/* Primary button */
.hero-btn {
    background: #fff;
    color: #000;
}

/* Hover effect */
.hero-btn:hover {
    background: #e5e5e5;
}

/* Outline button */
.hero-btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

/* Hover effect */
.hero-btn-outline:hover {
    background: #e9c88a;
}

/* --------------------------------------------- */
/* MOBILE RESPONSIVE */
/* --------------------------------------------- */
@media (max-width: 480px) {
    .hero-simple {
        height: 85vh;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-desc {
        font-size: 16px;
        width: 95%;
    }

    .hero-buttons {
        margin-top: 25px;
        display: flex;           /* active le flex */
        flex-direction: column;  /* empile les boutons verticalement */
        align-items: center;     /* centre les boutons */
        gap: 15px;               /* espace vertical entre les boutons */
    }

    .hero-btn,
    .hero-btn-outline {
        width: max-content; /* prend la largeur du texte */
        padding: 12px 22px; /* padding horizontal adapté */
        display: block;
        font-size: 16px;
    }

    /* plus besoin de margin-bottom car gap gère l'espacement */
}




.services-premium {
    background: #e9c88a; /* même couleur que l'image */
    padding: 60px 0;
}

.services-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
}

/* Ligne + voiture au centre */
.separator-center {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 45px;
}

.separator-center .line {
    width: 120px;
    height: 1px;
    background: #333;
    margin: 0 10px;
}

.separator-center .icon {
    font-size: 22px;
    color: #333;
}

/* Icons Style */
.services-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
}

.service-item {
    text-align: center;
    width: 120px;
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px auto;
}

.icon-circle i {
    font-size: 28px;
    color: #333;
}

.service-item p {
    font-size: 15px;
    color: #333;
    font-weight: 600;
}




/* --- SECTION STYLE PREMIUM --- */
.section-style {
    background: #f9f9f9;
    padding: 70px 0;
}

/* TITRE PRINCIPAL */
.section-style h2 {
    font-size: 34px;
    font-weight: 800;
    color: #000;
    margin-bottom: 18px;
    line-height: 1.3;

}

/* LIGNE DE SÉPARATION (comme le modèle) */
.section-style .separator {
    width: 90px;
    height: 4px;
    background: #c9a13b;
    margin: 15px 0 35px 0;
    border-radius: 10px;
}

/* PARAGRAPHES */
.section-style p {
    font-size: 17px;
    color: #222;
    line-height: 1.85;
    margin-bottom: 25px;
}

/* IMAGE GAUCHE */
.img-style {
    width: 100%;
    max-width: 520px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.13);
    transition: 0.3s;
    object-fit: cover;
}
.img-style:hover {
    transform: scale(1.02);
}

/* BOUTONS */
.btn-call,
.btn-reservation {
    display: inline-block;
    background: transparent;
    color: #000;
    padding: 12px 26px;
    border-radius: 50px;
    border: 2px solid #000;
    margin: 8px 0;
    font-weight: 700;
    font-size: 16px;
    transition: 0.3s;
    letter-spacing: 0.3px;
    text-decoration: none;
}

.btn-call:hover,
.btn-reservation:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}

/* ACCORDÉONS */
.accordion-item {
    background: transparent;
    border-bottom: 1px solid #c9a13b;
    padding: 18px 0;
}

.accordion-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.accordion-title i {
    font-size: 22px;
    transition: 0.3s;
}

/* Rotation de la flèche */
.rotate {
    transform: rotate(180deg);
}

/* Texte caché/visible */
.accordion-content {
    color: #444;
    font-size: 16px;
    line-height: 1.75;
    margin-top: 12px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 10px; /* padding top/bottom à 0 pour le max-height */
}
.accordion-item.active .accordion-content {
  display: block;
}
 

/* ESPACEMENT MOBILE */
@media(max-width: 992px) {
    .section-style h2 {
        text-align: center;
    }
    .section-style .separator {
        margin-left: auto;
        margin-right: auto;
    }
    .btn-call, .btn-reservation {
        display: block;
        width: fit-content;
        margin: 10px auto;
    }
    .accordion-title {
        font-size: 18px;
    }
}

.section-full {
    position: relative;
    background-attachment: fixed !important;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

/* Overlay sombre uniforme */
.overlay-black-middle::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.46);
    z-index: 1;
}

/* Contenu au-dessus */
.section-full .container {
    position: relative;
    z-index: 2;
}

.hero-top {
    display: block;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    opacity: 0.9;
}

.hero-title {
    font-size: 46px;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.3;
}

.hero-description {
    max-width: 900px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.85;
    color: #f1f1f1;
}

.hero-description p {
    margin-bottom: 18px;
    color: #eaeaea;
}



/* IMPORTANT : empêcher les bugs de scroll */
.bg-img-fix,
.content-inner {
    background-attachment: fixed !important;
    transform: none !important;
}

/* ---------- VARIABLES ---------- */
:root{
    --yellow:#f9ca00;
    --text:#1c1f28;
    --bg:#ffffff;
    --dark:#000;
}

/* ---------- HEADER DESKTOP ---------- */
/* ---------- HEADER DESKTOP UNIQUEMENT ---------- */
/* ================= DESKTOP HEADER STYLE (PC ONLY) ================= */
@media (min-width: 992px) {

    .main-bar{
        position:sticky;
        top:0;
        z-index:9999;

         display:flex;
        align-items:center;
        justify-content:space-between;

        max-width:1200px;     /* 🔥 clé du problème */
        margin:0 auto;        /* centre le header */
   
    }

    /* LOGO */
    .logo-header img{
        max-height:70px;
        width:auto;
    }

    /* MENU CENTRÉ */
    .nav-links{
        display:flex;
        justify-content:center;
        gap:42px;
    }

    .nav-links a{
        font-size:15px;
        font-weight:600;
        letter-spacing:0.4px;
        text-transform:uppercase;
        color:#222;
        text-decoration:none;
        padding:6px 0;
        position:relative;
    }

    .nav-links a:hover{
        color:#b59b63;
    }

    /* BOUTON TÉLÉPHONE DORÉ */
    .cta-call{
        background:#b59b63;
        color:#fff !important;
        padding:14px 26px;
        border-radius:30px;
        font-weight:700;
        font-size:16px;
        min-width:auto;
        box-shadow:none;
        transition:background .2s ease;
    }

    .cta-call:hover{
        background:#a58a52;
        transform:none;
    }

    .cta-call strong{
        font-weight:700;
    }
}


/* ---------- MOBILE ---------- */
.mobile-row{
    display:none;
    align-items:center;
    justify-content:space-between;
    padding:12px 18px;
    background:var(--bg);
    border-bottom:1px solid rgba(0,0,0,0.06);
}

.mobile-row img{
    height:40px;
}

.mobile-call{
    background:var(--dark);
    color:#fff !important;
    padding:8px 12px;
    border-radius:10px;
    font-weight:700;
    font-size:14px;
    text-decoration:none;
}

.mobile-reserve{
    padding:8px 12px;
    border-radius:10px;
    border:1px solid var(--text);
    color:var(--text) !important;
    font-weight:700;
    text-decoration:none;
}

/* MENU MOBILE */
#mobileMenu{
    display:none;
    background:#fff;
    border-top:1px solid rgba(0,0,0,0.05);
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
}
#mobileMenu a{
    display:block;
    padding:14px 18px;
    font-size:16px;
    font-weight:700;
    color:var(--text);
    border-bottom:1px solid rgba(0,0,0,0.05);
    text-decoration:none;
    transition:background 0.2s ease;
}
#mobileMenu a:hover{
    background:rgba(249,202,0,0.16);
}

/* BURGER */
#mobileToggleBtn span{
    background:var(--text);
    display:block;
    height:2px;
    border-radius:2px;
    margin:4px 0;
}

/* BREAKPOINT */
@media(max-width:991px){
    .main-bar{ display:none; }
    .mobile-row{ display:flex; }
}