/* ===================== */
/* RESET & BASE */
/* ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fff8f5;
    color: #2b2b2b;
    overflow-x: hidden;
    padding-top: 90px; /* FIX HEADER FIXED */
}

/* ===================== */
/* VARIABLES */
/* ===================== */
:root {
    --bordeaux: #7b1e3a;
    --rose: #f7c6c7;
    --beige: #f5e6d3;
    --dark: #2b2b2b;
    --white: #ffffff;
}

/* ===================== */
/* HEADER */
/* ===================== */
.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header.sticky {
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--bordeaux);
}

/* NAV DESKTOP */
.nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: 0.3s;
}

.nav ul li a:hover {
    color: var(--bordeaux);
}

/* BUTTON */
.btn-commande a {
    background: var(--bordeaux);
    color: white;
    padding: 10px 18px;
    border-radius: 30px;
    text-decoration: none;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--bordeaux);
    z-index: 3000;
}

/* ===================== */
/* HERO */
/* ===================== */
.hero {
    min-height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url('image/1278956-cake-1253849_1920.webp') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 120px 20px 60px;
}

.hero-content h1 {
    font-size: 48px;
}

.hero-content p {
    font-size: 18px;
    margin-top: 15px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    border-radius: 30px;
    background: var(--bordeaux);
    color: white;
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
}

/* ===================== */
/* SECTIONS */
/* ===================== */
section {
    padding: 80px 60px;
    text-align: center;
}

h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--bordeaux);
}

/* ===================== */
/* GRIDS */
/* ===================== */
.produits-container,
.services-container,
.avis-container,
.avantages-container {
    display: grid;
    gap: 20px;
}

/* PRODUITS */
.produits-container {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.produit-card {
    background: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.produit-card:hover {
    transform: translateY(-5px);
}

.produit-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}

.produit-card button {
    padding: 10px 18px;
    border: none;
    background: var(--bordeaux);
    color: white;
    border-radius: 20px;
}

/* SERVICES */
.service {
    background: var(--beige);
    padding: 20px;
    border-radius: 12px;
}

/* AVANTAGES */
.avantages-container div {
    background: var(--rose);
    padding: 20px;
    border-radius: 12px;
}

/* AVIS */
.avis-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
}

/* GALERIE */
.galerie-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.galerie-container img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

/* FOOTER */
.footer {
    background: var(--bordeaux);
    color: white;
    padding: 40px;
    text-align: center;
}

/* WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    z-index: 999;
}

/* ===================== */
/* ANIMATION */
/* ===================== */
.produit-card,
.service,
.avis-card,
.avantages-container div {
    opacity: 1;
    transform: translateY(40px);
    transition: 0.6s ease;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* ===================== */
/* RESPONSIVE MOBILE */
/* ===================== */
@media (max-width: 768px) {

    .header {
        padding: 15px 20px;
    }

    .menu-toggle {
        display: block;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        display: none;
        text-align: center;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        z-index: 2000;
    }

    .nav.active {
        display: block;
    }

    .nav ul {
        flex-direction: column;
        gap: 15px;
        padding: 20px 0;
    }

    .hero {
        min-height: auto;
        padding: 120px 20px;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-content p {
        font-size: 14px;
    }

    section {
        padding: 40px 15px;
    }

    .produits-container,
    .services-container,
    .avis-container,
    .avantages-container {
        grid-template-columns: 1fr;
    }

    .galerie-container {
        grid-template-columns: 1fr 1fr;
    }
}