:root {
    --texte-blanc: #ffffff;
    --texte-noir: #09090b;
    --texte-gris: rgba(255, 255, 255, 0.5);
    --texte-gris-fonce: #666666;
    --bordure-claire: rgba(255, 255, 255, 0.15);
    --bordure-sombre: rgba(0, 0, 0, 0.1);
    --police-titre: 'Playfair Display', serif;
    --police-texte: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--police-texte);
    background-color: var(--texte-noir);
    color: var(--texte-blanc);
    line-height: 1.6;
    overflow-x: hidden;
}

.conteneur-central {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.barre-superieure {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    transition: all 0.4s ease;
}

.barre-superieure.active {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #eeeeee;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.conteneur-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.lien-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: opacity 0.3s;
}

.lien-logo:hover {
    opacity: 0.8;
}

.logo-titre {
    font-family: var(--police-titre);
    font-size: clamp(1.5rem, 2.5vw, 1.875rem);
    font-weight: 700;
    color: var(--texte-blanc);
    letter-spacing: -0.025em;
    line-height: 1.1;
    transition: color 0.3s;
}

.logo-soustitre {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--texte-gris);
}

.barre-superieure.active .logo-titre { color: var(--texte-noir); }
.barre-superieure.active .logo-soustitre { color: var(--texte-gris-fonce); }

.liens-menu {
    display: none;
    align-items: center;
    gap: 40px;
}

@media (min-width: 768px) {
    .liens-menu { display: flex; }
}

.liens-menu a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 4px;
}

.liens-menu a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--texte-blanc);
    transition: width 0.3s;
}

.liens-menu a:hover { color: var(--texte-blanc); }
.liens-menu a:hover::after { width: 100%; }

.barre-superieure.active .liens-menu a { color: var(--texte-gris-fonce); }
.barre-superieure.active .liens-menu a::after { background: var(--texte-noir); }
.barre-superieure.active .liens-menu a:hover { color: var(--texte-noir); }

.bouton-telephone {
    background: var(--texte-blanc);
    color: var(--texte-noir) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}

.bouton-telephone:hover { background: rgba(255, 255, 255, 0.9); }

.barre-superieure.active .bouton-telephone {
    background: var(--texte-noir);
    color: var(--texte-blanc) !important;
}

.barre-superieure.active .bouton-telephone:hover { background: rgba(0, 0, 0, 0.9); }

.bouton-mobile {
    background: none;
    border: none;
    color: var(--texte-blanc);
    cursor: pointer;
    display: block;
}

@media (min-width: 768px) { .bouton-mobile { display: none; } }

.barre-superieure.active .bouton-mobile { 
    color: var(--texte-noir); 
}

.menu-deroulant {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 10px 24px 32px 24px;
    text-align: left;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.menu-deroulant.ouvert {
    display: block;
}

.barre-superieure.active .menu-deroulant {
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid #eeeeee;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.lien-mobile {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 500;
}

.barre-superieure.active .lien-mobile {
    color: var(--texte-gris-fonce);
    border-bottom: 1px solid #eeeeee;
}

.lien-mobile:hover {
    color: var(--texte-blanc);
}

.barre-superieure.active .lien-mobile:hover {
    color: var(--texte-noir);
}

.bouton-telephone-mobile {
    background: #111111;
    color: var(--texte-blanc) !important;
    padding: 14px;
    border-radius: 50px;
    margin-top: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.6875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    width: 100%;
}

.banniere-accueil {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.fond-banniere-image {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1513104890138-7c749659a591?auto=format&fit=crop&w=1920&q=100');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.voile-sombre-banniere {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.5), rgba(0,0,0,0.8));
    z-index: 1;
}

.contenu-banniere {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
}

.sur-titre {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
    display: block;
}

.titre-principal {
    font-family: var(--police-titre);
    font-size: clamp(3.75rem, 8vw, 8rem);
    line-height: 0.9;
    margin-bottom: 24px;
    color: var(--texte-blanc);
}

.italique {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.separateur-banniere {
    width: 80px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 24px auto;
}

.texte-banniere {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto 40px;
}

.groupe-boutons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.bouton-plein, .bouton-contour {
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: all 0.3s;
}

.bouton-plein {
    background: var(--texte-blanc);
    color: var(--texte-noir);
}

.bouton-plein:hover { background: rgba(255, 255, 255, 0.9); }

.bouton-contour {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--texte-blanc);
}

.bouton-contour:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.icone-defilement {
    position: relative;
    display: flex;
    justify-content: center;
}

.souris {
    width: 20px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    position: relative;
    margin: 0 auto;
}

.souris::before {
    content: '';
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    animation: defilement 1.5s infinite ease-in-out;
}

@keyframes defilement {
    0% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 8px); }
    100% { transform: translate(-50%, 0); }
}

.section-menu {
    padding: 144px 0;
    position: relative;
    background-color: #000000;
}

.conteneur-fond-menu {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.image-fond-menu {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.voile-sombre-menu {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.entete-section {
    text-align: center;
    margin-bottom: 32px;
}

.sur-titre-encadre {
    display: inline-block;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--texte-gris);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.titre-section {
    font-family: var(--police-titre);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    line-height: 1.1;
    color: var(--texte-blanc);
    font-weight: 700;
}

.italique-gris {
    display: block;
    font-style: italic;
    color: #737373;
    font-weight: 400;
}

.sous-titre-section {
    color: var(--texte-gris);
    font-size: 0.875rem;
    margin-top: 16px;
    letter-spacing: 0.025em;
}

.separateur-blanc {
    width: 64px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 24px auto;
}

.mb-20 { margin-bottom: 80px; }

.badge-horaires {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 24px;
    max-width: 672px;
    margin: 0 auto 96px;
    backdrop-filter: blur(4px);
}

.horaire-item { 
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
}

.icone-horloge {
    color: rgba(255, 255, 255, 0.4);
}

.horaire-label {
    display: block;
    font-size: 0.625rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.horaire-temps {
    font-size: 0.75rem;
    font-weight: 600;
}

.categorie-menu { margin-bottom: 96px; }

.titre-categorie {
    font-family: var(--police-titre);
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 16px;
    margin-bottom: 40px;
    color: var(--texte-blanc);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.titre-categorie span { font-size: 1.5rem; }

.grille-deux-colonnes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px 64px;
}
@media (min-width: 768px) { .grille-deux-colonnes { grid-template-columns: 1fr 1fr; } }

.grille-une-colonne { display: grid; gap: 20px; }

.grille-trois-colonnes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
}
@media (min-width: 1024px) { .grille-trois-colonnes { grid-template-columns: repeat(3, 1fr); } }

.article-menu { padding: 8px 0; }

.ligne-haut {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.nom-plat {
    font-family: var(--police-titre);
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s;
}

.article-menu:hover .nom-plat { color: rgba(255, 255, 255, 0.6); }

.ligne-pointilles {
    flex-grow: 1;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
    margin: 0 10px;
    position: relative;
    top: -4px;
}

.prix-plat {
    font-family: var(--police-titre);
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.ingredients {
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    color: var(--texte-gris);
    margin-top: 4px;
}

.espace-bas { margin-bottom: 32px; }

.texte-commande {
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    color: var(--texte-gris);
    margin-top: 32px;
    text-align: center;
    font-style: italic;
}

.bloc-certifie { text-align: center; margin-top: 80px; }

.badge-halal {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
}

.section-claire {
    background: #f4f4f5;
    color: #000000;
    padding: 144px 0;
}

.sur-titre-encadre.gris {
    color: #666666;
    border-color: #dddddd;
}

.titre-section.sombre {
    color: #000000;
    margin-bottom: 32px;
}

.texte-gras {
    font-weight: 600;
    color: #000000;
}

.grille-histoire {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
}
@media (min-width: 1024px) { .grille-histoire { grid-template-columns: 1fr 1fr; } }

.carrousel-conteneur {
    background: #ffffff;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    position: relative;
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.1);
}

.carrousel-images {
    width: 100%;
    height: 500px;
    background: #f4f4f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.carrousel-images img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 12px;
    object-fit: contain;
    transition: opacity 0.4s ease;
}

.controles-carrousel {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border-top: 1px solid rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
}

.bouton-navigation-carrousel {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.1);
    color: #000000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.bouton-navigation-carrousel:hover {
    background: #f4f4f5;
}

.points-carrousel {
    display: flex;
    gap: 8px;
}

.point {
    width: 10px;
    height: 10px;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.point:hover { background: rgba(0,0,0,0.5); }
.point.actif {
    background: #000000;
    transform: scale(1.25);
}

.texte-propos {
    color: #666666;
    font-size: 0.9375rem;
    margin-bottom: 40px;
    line-height: 1.8;
}
.texte-propos p { margin-bottom: 16px; }

.grille-avantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    text-align: center;
}

.carte-avantage {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.1);
    padding: 20px;
    border-radius: 12px;
}

.titre-avantage {
    display: block;
    font-family: var(--police-titre);
    font-weight: 700;
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: #000000;
}

.sous-titre-avantage {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #666666;
    margin-top: 6px;
    display: block;
}

.section-contact {
    padding: 144px 0;
    background: var(--texte-noir);
}

.texte-centre { text-align: center; }
.text-demi { color: rgba(255, 255, 255, 0.5); }
.mb-6 { margin-bottom: 24px; }
.text-blanc { color: var(--texte-blanc); }

.grille-contact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1024px;
    margin: 0 auto 64px;
}
@media (min-width: 768px) { .grille-contact { grid-template-columns: repeat(3, 1fr); } }

.carte-contact {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 20px;
    transition: all 0.5s ease;
}

.carte-contact.hover-scale:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.icone-cercle {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--texte-blanc);
    transition: background 0.5s;
}

.carte-contact:hover .icone-cercle {
    background: rgba(255, 255, 255, 0.15);
}

.carte-contact h3 {
    font-family: var(--police-titre);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.carte-contact p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    line-height: 1.6;
}

.badges-services {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 64px;
}

.badge-service {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.liens-reseaux {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.liens-reseaux a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.liens-reseaux a:hover { color: var(--texte-blanc); }

.pied-de-page {
    background: var(--texte-noir);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 56px 0;
    text-align: center;
}

.logo-footer .titre {
    display: block;
    font-family: var(--police-titre);
    font-size: 1.875rem;
    font-weight: 700;
}

.logo-footer .soustitre {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.3);
}

.separateur-blanc.petit {
    width: 40px;
    background: rgba(255, 255, 255, 0.15);
    margin: 20px auto;
}

.pied-de-page p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

.ligne-separation {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin: 32px 0;
}

.footer-zero {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: 0.05em;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.footer-zero a {
    color: rgba(255, 255, 255, 0.15);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-zero a:hover { color: rgba(255, 255, 255, 0.5); }

.animation-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animation-visible {
    opacity: 1;
    transform: translateY(0);
}