* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0a0a0a; /* Noir très profond */
    color: #ffffff;
    scroll-behavior: smooth;
}

/* Barre de navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 10%;
    position: fixed;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px); /* Effet de flou moderne */
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    letter-spacing: 4px;
    color: #d4af37; /* Couleur Or */
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 40px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 2px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #d4af37;
}

/* Section Hero (Image plein écran) */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('fond-premium.jpg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-content p {
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 40px;
    font-weight: 200;
}

.btn-premium {
    padding: 15px 40px;
    border: 1px solid #d4af37;
    color: #d4af37;
    text-decoration: none;
    letter-spacing: 2px;
    transition: all 0.4s ease;
}

.btn-premium:hover {
    background: #d4af37;
    color: #000;
}
.menu-section {
    padding: 100px 10%;
    background-color: #0a0a0a;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.line {
    width: 60px;
    height: 2px;
    background: #d4af37;
    margin: 20px auto;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}
.menu-category {
    text-align: left; /* Aligne le titre de la catégorie à gauche */
    width: 100%;
    margin-bottom: 50px;
}

.menu-grid {
    display: flex;
    flex-direction: column; /* Aligne les plats les uns sous les autres */
    align-items: flex-start; /* Force l'alignement à gauche */
    max-width: 800px; /* Optionnel : pour ne pas que le menu soit trop large sur grand écran */
}

.menu-item {
    width: 100%; /* Pour que la ligne de pointillés prenne toute la largeur disponible à gauche */
    text-align: left;
    margin-bottom: 25px;
}

.menu-item {
    padding: 20px;
    border-bottom: 1px solid #333;
    transition: 0.4s;
}

.menu-item:hover {
    border-bottom: 1px solid #d4af37;
    background: rgba(212, 175, 55, 0.05);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

.item-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #fff;
}

.price {
    color: #d4af37;
    font-weight: bold;
}

.menu-item p {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}
/* --- SECTION MENU PETIT DÉJEUNER --- */

.item-header {
    display: flex;
    justify-content: space-between; /* Aligne le nom à gauche et le prix à droite */
    align-items: baseline;
    margin-bottom: 5px;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.3); /* Crée la ligne de pointillés dorée */
    padding-bottom: 5px;
}

.item-header h4 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.2rem;
    margin: 0;
    text-transform: uppercase;.menu-category.menu-categor.menu-category
    letter-spacing: 1px;
}

.price {
    color: #d4af37; /* Couleur dorée pour le prix */
    font-weight: bold;
    font-size: 1.1rem;
    white-space: nowrap;
    margin-left: 10px;
}

.menu-item p {
    font-size: 0.9rem;
    color: #aaa; /* Gris clair pour la description */
    font-style: italic;
    line-height: 1.6;
    margin-top: 5px;
}
/* --- SECTION RÉSERVATION --- */
.reservation-container {
    max-width: 600px;
    margin: 40px auto; /* Centre le bloc avec de l'espace en haut/bas */
    padding: 20px;
    text-align: center;
}

.quick-contact {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: center;
}

.res-btn {
    flex: 1;
    padding: 15px 20px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9rem;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Couleurs spécifiques pour WhatsApp et Appel */
.whatsapp { 
    background-color: #25D366; 
    color: white !important; 
}

.phone { 
    background-color: #d4af37; /* L'or du Rafia */
    color: #000 !important; 
}

.res-btn:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

/* --- Formulaire de Réservation Amélioré --- */
.res-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #111;
    padding: 30px; /* Un peu plus d'espace pour respirer */
    border-radius: 12px; /* Coins plus arrondis pour le confort visuel */
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Effet de profondeur quand on survole le formulaire */
.res-form:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.res-form input, .res-form textarea {
    padding: 14px;
    background: #1a1a1a;
    border: 1px solid #444;
    color: white;
    border-radius: 6px;
    font-family: inherit;
    transition: all 0.3s ease; /* Animation fluide pour tous les changements */
}

/* Effet quand le client clique pour écrire */
.res-form input:focus, .res-form textarea:focus {
    border-color: #d4af37;
    background: #222;
    outline: none;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.3); /* Petite lueur dorée */
}

.form-row {
    display: flex;
    gap: 10px;
}

.form-row input {
    flex: 1;
}

/* --- Bouton Envoyer Dynamique --- */
.submit-btn {
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.4s ease;
    margin-top: 10px;
}

/* Effet "Wahou" au survol du bouton */
.submit-btn:hover {
    background: #d4af37; /* Le bouton se remplit de doré */
    color: #111; /* Le texte devient noir pour rester lisible */
    letter-spacing: 2px; /* Le texte s'écarte légèrement */
    transform: translateY(-3px); /* Le bouton se soulève un peu */
}
.contact-info-text {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #ccc;
    font-size: 0.95rem;
    text-align: left;
}

.contact-info-text strong {
    color: #d4af37; /* Rappel du doré du Rafia */
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
    color: #ccc;
    font-style: italic;
}


.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05); /* Petit zoom au survol */
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 20px 0;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
    border: 1px solid #333;
}

.gallery-item img:hover {
    transform: scale(1.03);
    border-color: #d4af37; /* Rappel du doré au survol */
}