
/* NAV FLOTTANT (PC + MOBILE) */
.nav-float {
    position: fixed;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(8px);
    padding: 12px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    z-index: 9999;
}

/* Bouton hamburger caché par défaut */
.nav-mobile-btn {
    display: none;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

/* ===========================
   MOBILE
   =========================== */
@media (max-width: 768px) {

    /* Bouton hamburger visible */
    .nav-mobile-btn {
        display: block;
    }

    /* Menu mobile plein écran */
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%; /* caché */
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.95);
        padding: 80px 30px;
        display: flex;
        flex-direction: column;
        gap: 25px;
        transition: left 0.3s ease;
        z-index: 9998;
    }

    .nav-links.show {
        left: 0; /* slide depuis la gauche */
    }

    .nav-links a {
        color: #fff;
        font-size: 1.4rem;
    }
}

/* ===========================
   DESKTOP
   =========================== */
@media (min-width: 769px) {

    /* Menu PC dans le carré noir */
    .nav-links {
        display: flex;
        gap: 20px;
        position: fixed;
        top: 5px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0,0,0,0.75);
        backdrop-filter: blur(8px);
        padding: 12px 25px;
        border-radius: 12px;
        z-index: 9998;
    }

    /* Bouton hamburger caché sur PC */
    .nav-mobile-btn {
        display: none;
    }

    .nav-links a {
        color: #fff;
        text-decoration: none;
        font-size: 1rem;
    }
}

/* ------------------------------
   RESET + BASE
--------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #fafafa;
    color: #333;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ------------------------------
   LAYOUT GLOBAL
--------------------------------*/
main {
    max-width: 1300px;
    margin: auto;
    padding: 40px 20px;
}

/* ------------------------------
   HEADER
--------------------------------*/
header {
    background: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #eee;
}

nav a {
    margin-right: 20px;
    font-weight: bold;
    font-size: 16px;
}

nav a:hover {
    opacity: 0.7;
}

.flags a {
    margin-left: 10px;
    font-size: 22px;
}

.flags a:hover {
    opacity: 0.7;
}

/* ------------------------------
   FOOTER
--------------------------------*/
footer {
    background: #111;
    color: #fff;
    padding: 25px;
    text-align: center;
    margin-top: 40px;
}

/* ------------------------------
   HERO SECTION
--------------------------------*/
.hero {
    position: relative;
    margin-bottom: 60px;
}

.hero-bg {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn {
    background: #ffcc00;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    color: #000;
}

.btn:hover {
    background: #e6b800;
}

/* ------------------------------
   CONCEPT GRID
--------------------------------*/
.concept-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.concept-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.concept-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.concept-item p {
    font-size: 16px;
    color: #555;
}

/* ------------------------------
   MENU SURPRISE
--------------------------------*/
.menu-surprise {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.ms-left img {
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.ms-right h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.ms-intro {
    font-size: 18px;
    margin-bottom: 20px;
}

.ms-list {
    margin-left: 20px;
    margin-bottom: 20px;
}

.ms-list li {
    margin-bottom: 8px;
    font-size: 17px;
}

.ms-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-top: 20px;
}

.ms-box h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

/* ------------------------------
   REVIEWS
--------------------------------*/
.reviews-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.google-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.google-btn {
    background: #4285F4;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.review-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.avatar {
    width: 45px;
    height: 45px;
    background: #ddd;
    border-radius: 50%;
}

.stars {
    color: gold;
    margin-bottom: 10px;
}

.review-text {
    font-size: 15px;
    color: #444;
    margin-bottom: 10px;
}

.read-more {
    color: #4285F4;
    font-size: 14px;
}

/* ------------------------------
   RESPONSIVE
--------------------------------*/
@media (max-width: 900px) {

    .concept-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-surprise {
        flex-direction: column;
        text-align: center;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    nav a {
        margin-right: 10px;
        font-size: 14px;
    }

    .concept-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .google-box {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}


