/* RESET & BASICS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #c5a059;
    --dark: #121212;
    --light-dark: #1e1e1e;
    --white: #ffffff;
    --gray: #a0a0a0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark);
    color: var(--white);
    line-height: 1.6;
}

/* HEADER & NAV */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    padding: 20px 50px;
    z-index: 1000;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gold);
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--white);
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: 0.3s;
}

nav ul li a:hover {
    color: var(--gold);
}

.btn-reserver {
    background: var(--gold);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 2px;
}

/* HERO SECTION */
/* HERO SECTION */
/* HERO SECTION */
.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    
    /* On réduit le voile noir de 0.7 à 0.3 pour laisser l'image plus claire */
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('img/back.jpg') no-repeat center center;
    
    /* 'cover' assure que l'image remplit l'écran, 'fixed' crée un effet parallaxe pro */
    background-size: cover;
    background-attachment: fixed; 
    
    padding-top: 80px;
}

/* On s'assure que le menu commence juste après l'image */
#menu {
    padding: 100px 20px;
    background-color: var(--dark);
}

/* Style du texte Hero */
.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.8rem; /* Taille équilibrée */
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Bouton Réserver moderne */
.btn-hero {
    display: inline-block;
    padding: 15px 35px;
    background-color: #ffffff; /* Fond blanc */
    color: #1a1a1a; /* Texte sombre pour le contraste */
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px; /* Bord arrondi esthétique */
    transition: all 0.4s ease; /* Transition fluide pour le hover */
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}

/* Effet Hover Moderne */
.btn-hero:hover {
    background-color: #c5a059; /* Change vers ton doré au survol */
    color: #ffffff; /* Texte devient blanc */
    transform: translateY(-5px); /* Petit saut vers le haut */
    box-shadow: 0px 12px 20px rgba(197, 160, 89, 0.4); /* Ombre dorée */
}

/* SECTION MENU */
#menu {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 50px;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.menu-item {
    background: var(--light-dark);
    padding: 20px;
    border-left: 3px solid var(--gold);
    transition: transform 0.3s;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.item-header h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
}

.price {
    color: var(--gold);
    font-weight: bold;
}

.menu-item p {
    font-size: 0.85rem;
    color: var(--gray);
}

/* BOUTONS MENU */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.tab-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px 20px;
    cursor: pointer;
    transition: 0.3s;
}

.tab-btn.active, .tab-btn:hover {
    background: var(--gold);
    color: white;
}
.category-title {
    color: var(--gold);
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer {
    background-color: #0c0c0c;
    color: #ffffff;
    padding: 60px 20px 20px;
    border-top: 1px solid var(--gold);
    font-family: 'Montserrat', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed #333;
    padding-bottom: 5px;
}

.footer-col p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #a0a0a0;
}

/* Style des avis Google */
.google-reviews {
    margin-top: 25px;
    padding: 15px;
    background: #1a1a1a;
    border-radius: 5px;
    text-align: center;
}

.google-reviews .stars {
    color: #f1c40f; /* Couleur jaune or pour les étoiles */
    font-size: 1.2rem;
    margin: 5px 0;
}

.google-reviews .rating {
    color: white;
}

.footer-col .phone {
    font-weight: bold;
    color: white;
    font-size: 1.1rem;
    margin-top: 15px;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #222;
    font-size: 0.8rem;
    color: #555;
}



/* Page Réservation */
.reservation-page {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../img/back.jpg') center/cover no-repeat fixed;
}

.reservation-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 100px 20px;
}

.reservation-card {
    background: rgba(26, 26, 26, 0.95);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--gold);
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.reservation-card h1 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    margin-bottom: 10px;
}

.form-group {
    text-align: left;
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    font-size: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 5px;
}

input {
    width: 100%;
    padding: 12px;
    background: #222;
    border: 1px solid #444;
    color: white;
    border-radius: 4px;
}

input:focus {
    border-color: var(--gold);
    outline: none;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--gold);
    color: white;
    border: none;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #ae8a4b;
}

/* Messages Succès / Erreur */
.message-box {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    display: none;
}

.success { display: block; background: rgba(46, 204, 113, 0.2); color: #2ecc71; border: 1px solid #2ecc71; }
.error { display: block; background: rgba(231, 76, 60, 0.2); color: #e74c3c; border: 1px solid #e74c3c; }