/* --- BASE & TYPO --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; color: #333; background-color: #ffffff; line-height: 1.6; }
h1, h2, h3, .logo { font-family: 'Playfair Display', serif; }
html { overflow-y: scroll; }

/* --- ACCUEIL --- */
.banner { 
    width: 100%; height: 450px; 
    /* Le ../ permet de sortir du dossier css pour aller dans le dossier img */
    background: url('../img/banniere.png') center/cover;
}
.main-title { padding: 40px 20px 10px; text-align: center; background: white; }
.logo { font-size: 2.5rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px; }
.logo span { color: #d35400; }
.separator { width: 20px; height: 3px; background: #d35400; margin: 25px auto; }



/* --- BOUTONS --- */
.action-buttons { display: flex; justify-content: center; gap: 20px; padding: 0 20px; }
.btn-main-action { display: inline-block; background: #d35400; color: white; padding: 18px 45px; text-decoration: none; border-radius: 50px; font-weight: bold; font-size: 1.1rem; transition: 0.3s; border: 2px solid transparent; }
.btn-main-action:hover { background: transparent; color: #d35400; border-color: #d35400; }
.btn-main-action.btn-outline { background: transparent; color: #d35400; border-color: #d35400; }
.btn-main-action.btn-outline:hover { background: #d35400; color: white; }

/* --- GALERIE & AVIS --- */
.gallery { padding: 20px 10%; background: white; text-align: center; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; margin-top: 10px; }
.gallery-item { height: 350px; border-radius: 4px; background-size: cover; background-position: center; filter: grayscale(30%); transition: 0.5s ease; cursor: pointer; box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.gallery-item:hover { filter: grayscale(0%); transform: translateY(-10px); }

.reviews { padding: 80px 10%; text-align: center; }
.reviews-container { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
.review-card { background: white; padding: 30px; border-radius: 15px; max-width: 400px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-bottom: 4px solid #d35400; }
.review-card p::before { content: "★★★★★"; display: block; color: #f1c40f; margin-bottom: 10px; font-size: 1.1rem; letter-spacing: 2px; }

footer { padding: 40px; text-align: center; font-size: 0.8rem; color: #999; }

@media (max-width: 768px) {
    .action-buttons { flex-direction: column; align-items: center; gap: 15px; }
    .action-buttons .btn-main-action { width: 100%; max-width: 320px; font-size: 1rem; padding: 15px 20px; }
}

/* --- MENU FLOTTANT ARRONDI --- */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid #d35400; /* Le fameux liseré orange ! */
    padding: 10px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.nav-logo span { color: #d35400; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links a:hover { color: #d35400; }

/* Menu Burger (GSM) */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: #d35400;
    transition: 0.3s;
}

/* --- FOOTER 4 COLONNES --- */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 20px 20px;
    margin-top: 50px;
}

.footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-col h3, .footer-col h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

.footer-col h3 span { color: #d35400; }

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: #aaa; text-decoration: none; transition: 0.3s; }
.footer-col a:hover { color: #d35400; }

/* On centre le titre "Suivez-nous" et le logo Facebook */
.footer-col:last-child {
    text-align: center;
}

.social-links { 
    display: flex; 
    justify-content: center; /* Magie : cette ligne centre les logos ! */
    gap: 15px; 
    margin-top: 15px; 
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 0.8rem;
    color: #666;
}

/* --- RESPONSIVE GSM --- */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Caché par défaut sur mobile */
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        border-radius: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .nav-links.active { display: flex; }
    .burger-menu { display: flex; }

    /* Animation Burger */
    .burger-menu.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .burger-menu.active span:nth-child(2) { opacity: 0; }
    .burger-menu.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* Style pour le logo Facebook du Footer */
.social-icon {
    color: #aaa; /* Gris clair par défaut */
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.social-icon:hover {
    color: #d35400; /* Devient orange au survol */
    transform: scale(1.1); /* Grossit légèrement pour l'effet clic */
}