/* === GLOBAL === */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #fff;
    color: #333;
    line-height: 1.6;
}
h1, h2 {
    color: #222;
}
h2 {
    text-align: center;
    font-size: 26px;
    margin: 40px 0 10px;
}
h2 span { color: #D4AF37; }

/* === HEADER === */
/* === HEADER === */
header {
    background: #fff;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
header img {
    height: 90px;
}

/* === NAVIGATION === */
nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}
nav ul li {
    position: relative;
}
nav ul li a {
    color: #333;
    font-weight: bold;
    text-decoration: none;
    padding: 8px 5px;
    display: inline-block;
    transition: color 0.3s;
}
nav ul li a:hover { color: #D4AF37; }

/* === BOUTON RÉSERVATION === */
.btn-reservation {
    background: #D4AF37;
    color: white;
    padding: 10px 18px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}
.btn-reservation:hover { background: #b6912e; }

/* === FLÈCHE DORÉE === */
.arrow {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s;
    color: #D4AF37;
}
.dropdown:hover .arrow { transform: rotate(180deg); }

/* === SOUS-MENU === */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 5px;
    padding: 10px 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.submenu li { width: 100%; }
.submenu li a {
    display: block;
    padding: 10px 15px;
    font-weight: normal;
    color: #333;
    white-space: nowrap;
}
.submenu li a:hover { background: #f9f9f9; color: #D4AF37; }

/* Animation fade-in */
.dropdown:hover .submenu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* === BURGER === */
.burger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* === RESPONSIVE === */
@media(max-width:768px){
    .burger { display: block; }
    
    nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        display: none;
        flex-direction: column;
    }
    nav.active { display: flex; }
    nav ul {
        flex-direction: column;
        gap: 10px;
        padding: 10px 0;
    }
    nav ul li { text-align: center; }
    .submenu {
        position: static;
        box-shadow: none;
        opacity: 1;
        transform: none;
        display: none;
    }
    .dropdown.open .submenu { display: block; }
}

/* === HERO MODERNE (Version Premium 2) === */
.hero-modern {
    display: flex;
    align-items: center;
    justify-content: center;   /* ✅ Centre horizontalement */
    gap: 40px;                 /* ✅ Espace entre texte et image */
    padding: 60px 10%;         /* ✅ Réduit les marges latérales */
}
.hero-text {
    flex: 0 0 45%;             /* ✅ Largeur contrôlée */
    max-width: 500px;
}
.hero-text h1 {
    font-size: 40px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #D4AF37;
}
.hero-text p {
    font-size: 18px;
    color: #444;
    margin-bottom: 25px;
}
.hero-img-container {
    flex: 0 0 45%;             /* ✅ Image occupe aussi 45% */
}
.hero-img-container img {
    max-width: 600px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
}
.hero-img-container img:hover {
    transform: scale(1.03);
}

/* === BOUTONS === */
.btn-gold {
    display: inline-block;
    background: #D4AF37;
    color: white;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.btn-gold:hover {
    background: #b6912e;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

/* === AVANTAGES === */
.advantages {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}
.adv {
    width: 220px;
    background: #f9f9f9;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
}
.adv h4 { margin: 10px 0; }

/* === ETAPES === */
.steps {
    margin: 40px 10%;
}
.steps-list {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    padding: 20px;
}
.step {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.step h4 {
    color: #D4AF37;
    margin-bottom: 5px;
}

/* === CTA === */
.cta {
    background: linear-gradient(90deg,#D4AF37,#e2c86e);
    color: white;
    text-align: center;
    border-radius: 10px;
    padding: 40px 20px;
    margin: 40px auto;
}
.cta h3 { font-size: 24px; margin-bottom: 10px; }
.cta p { margin-bottom: 20px; }
.cta a {
    background: white;
    color: #D4AF37;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 5px;
    display: inline-block;
    font-weight: bold;
    text-decoration: none;
}
.cta a:hover { background: #f0f0f0; }

/* === AVIS CLIENTS === */
.avis-clients {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.avis {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    padding: 20px;
    width: 300px;
    position: relative;
}
.avis .stars { color: #F4B400; }
.avis .logo-google {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
}

/* === FAQ === */
.faq {
    max-width: 800px;
    margin: 30px auto;
}
.faq-item {
    background: #f9f9f9;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 8px;
}
.faq-item h4 { margin-bottom: 5px; }

/* === RESPONSIVE === */
@media(max-width:768px){
    .hero-modern {
        flex-direction: column;
        text-align: center;
        padding: 40px 5%;
    }
    .hero-img-container img {
        max-width: 400px;
    }
    .steps { margin: 20px 5%; }
    .steps-list { grid-template-columns: 1fr; }
}

/* === EFFET BRILLANCE OR === */
.hero-text h1, 
h2 span {
    position: relative;
    background: linear-gradient(90deg, #b4912c, #D4AF37, #b4912c);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineGold 4s linear infinite;
}

@keyframes shineGold {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

footer {
    background: #f9f9f9;
    border-top: 1px solid #e0e0e0;
    padding: 30px 5% 15px;
    text-align: center;
    color: #555;
    font-size: 14px;
}

/* ✅ Container centré */
.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 1200px;
    margin: auto;
}

/* ✅ Logo centré */
.footer-logo img {
    height: 60px;
}

/* ✅ Liens centrés */
.footer-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    justify-content: center;
}
.footer-links li a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}
.footer-links li a:hover {
    color: #D4AF37;
}

/* ✅ Texte copyright */
.footer-copy {
    margin-top: 10px;
    font-size: 13px;
    color: #777;
}

/* ✅ Responsive (espacement plus large sur mobile) */
@media(max-width:768px){
    .footer-links {
        flex-wrap: wrap;
        gap: 12px;
    }
}

/* === FORMULAIRE DEVIS === */
.devis-section {
    text-align: center;
    padding: 40px 5%;
}
.devis-section h2 { margin-bottom: 10px; }
.form-info { color: #666; font-size: 14px; margin-bottom: 20px; }

.form-devis {
    max-width: 600px;
    margin: auto;
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.form-devis label {
    text-align: left;
    font-weight: bold;
    color: #333;
}
.form-devis input,
.form-devis select,
.form-devis textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    width: 100%;
}
.form-devis textarea { resize: vertical; }

.form-devis button {
    background: #D4AF37;
    color: white;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}
.form-devis button:hover { background: #b6912e; }


@media(max-width:768px){
    .btn-reservation {
        display: none;
    }
}
