/* --- Forcer le fond noir et le texte blanc sur la page Menu --- */
body {
    background-color: #ffffff !important; /* Force le fond en noir */
    color: #000000 !important;            /* Force le texte en blanc */
}

header {
    position: relative;
    height: 800px; /* Hauteur augmentée pour descendre plus bas */
    background-image: url('images/vue-nuit.jpg'); /* Votre image unique */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

header::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.4); z-index: 1; }
.hc { position: relative; z-index: 2; }

/* --- Corps du site en deux colonnes strictes --- */
main { 
    flex: 1; 
    max-width: 1100px; 
    margin: 30px auto; 
    padding: 0 20px; 
    display: flex; 
    gap: 40px; /* Espace entre les deux colonnes */
    width: 100%; 
    box-sizing: border-box; 
}

/* --- Amélioration de la police pour tout le site --- */
body { 
    margin: 0; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Police moderne et propre */
    font-size: 16px;
    line-height: 1.6; /* Améliore le confort de lecture */
    background: #fff; 
    color: #000; 
    display: flex; 
    flex-direction: column; 
    min-height: 100vh; 
}

/* --- Justification du texte dans les colonnes --- */
.g p, .d p {
    text-align: justify; /* Justifie le texte (bords bien alignés à gauche et à droite) */
    text-justify: inter-word;
}

/* --- Effet Lettrine : Agrandir la première lettre du premier paragraphe --- */
.g > p:first-of-type::first-letter {
    font-size: 4rem;   /* Taille de la lettre (très grande) */
    font-weight: bold;   /* En gras */
    float: left;         /* Place la lettre sur le côté */
    line-height: 1;      /* Ajuste la hauteur de ligne */
    margin-right: 10px;  /* Espace entre la lettre et le reste du texte */
    color: #2c3e50;      /* Couleur optionnelle (ex: gris foncé/bleuté) */
}

/* Colonne de droite : prend aussi exactement 50% */
.d { 
    width: 200%; 
    box-sizing: border-box;
}

/* --- Sécurité absolue pour les images : elles ne dépassent jamais de leur colonne --- */
.g img, .content-img {
    max-width: 100%;  /* L'image ne peut pas être plus large que sa colonne */
    height: auto;     /* Garde les proportions */
    display: block;   /* Évite les bugs d'affichage en bas d'image */
    border-radius: 2px;
    margin: 15px 0;
}

/* --- Paragraphe spécifique centré et en italique --- */
p.centre-italique {
    text-align: center !important; /* Force le centrage en ignorant les autres règles */
    font-style: italic;
}

footer { background: #000; color: #fff; text-align: center; padding: 20px; }

@media(max-width:768px){ 
    header { height: 350px; } /* Ajustement pour mobile */
    main { flex-direction: column; } 
}

/* --- Style général des boutons --- */
.button-container {
    display: flex;
    justify-content: center; /* Centre les boutons horizontalement au milieu de la colonne */
    gap: 15px; /* Espace entre les deux boutons */
    margin: 20px 0; /* Marge autour des boutons */
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 2px;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Bouton Appeler (style sobre / couleur neutre ou foncée) */
.btn-call {
    background-color: #333333;
    color: #ffffff;
}

.btn-call:hover {
    background-color: #2471a3;
    transform: translateY(-2px); /* Petit effet de relief au survol */
}

/* Bouton Réserver (style mis en valeur, par exemple en bleu ou vert) */
.btn-book {
    background-color: #333333;
    color: #ffffff;
}

.btn-book:hover {
    background-color: #2471a3;
    transform: translateY(-2px);
}

/* --- Style pour un paragraphe centré et en italique --- */
.centre-italique {
    text-align: center; /* Centre le texte */
    font-style: italic; /* Met le texte en italique */
}

/* --- Style pour les messages d'alerte (gras et rouge) --- */
.alerte {
    font-weight: bold;   /* Met le texte en gras */
    color: #e74c3c;      /* Met le texte en rouge (vous pouvez ajuster la nuance) */
}


# ---------------------------------------
# ---------------------------------------
#Gestion de la navigation entre les pages 
# ---------------------------------------
# ---------------------------------------
/* --- Barre de navigation --- */
.site-nav {
    background-color: #ffffff; /* Fond blanc (ou #000000 si vous préférez le fond noir) */
    width: 100%;
    padding: 15px 0;
    text-align: center;        /* Centre tout ce qui se trouve à l'intérieur */
    box-sizing: border-box;
    border-bottom: 1px solid #ddd; /* Optionnel : une fine ligne de séparation propre */
}

/* --- Liens du menu --- */
.site-nav a {
    display: inline-block;     /* Permet de les aligner proprement au centre */
    color: #000000;            /* Texte en noir */
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 15px;            /* Espace horizontal entre chaque lien */
    padding: 5px 0;
    transition: color 0.3s ease;
}

.site-nav a:hover, 
.site-nav a.active {
    color: #555555;            /* Gris au survol */
    border-bottom: 2px solid #000000; /* Ligne active */
}

# ---------------------------------------
# ---------------------------------------
# Page Menu
# ---------------------------------------
# ---------------------------------------
/* --- Style de la page Menu (fond normal, empilé verticalement) --- */
.menu-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Chaque grande section s'empile les unes sous les autres */
.menu-section {
    margin-bottom: 50px;
}

/* Titres des sections (Entrées, Plats, Desserts) */
.menu-section h2 {
    text-align: center;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    border-bottom: 2px solid #000000; /* Ligne de séparation noire */
    padding-bottom: 10px;
    color: #000000;
}

/* Ligne d'un plat (Nom à gauche, Prix à droite) */
.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 20px;
}

.dish-name {
    font-weight: bold;
    font-size: 1.1rem;
    color: #000000;
}

.dish-price {
    font-weight: bold;
    font-size: 1.1rem;
    color: #000000;
    white-space: nowrap;
    margin-left: 20px;
}

.menu-item-group {
    margin-top: 20px;
}

/* Description des plats en dessous */
.dish-desc {
    font-size: 0.95rem;
    font-style: italic;
    color: #555555; /* Gris élégant pour la description */
    margin: 4px 0 0 0;
}


# ---------------------------------------
# ---------------------------------------
# Page balade
# ---------------------------------------
# ---------------------------------------

/* --- Style de la page Balades --- */
.balades-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    box-sizing: border-box;
    line-height: 1.7;
}

.balades-intro {
    margin-bottom: 50px;
}

.balades-intro p {
    margin-bottom: 20px;
    text-align: justify;
}

.highlight-text {
    font-weight: bold;
    margin-top: 30px !important;
}

.balades-list {
    margin: 20px 0 40px 20px;
}

.balades-list li {
    margin-bottom: 10px;
    font-style: italic;
}

/* Bloc d'annonce saisonnière */
.balades-season {
    border-left: 3px solid #000000;
    padding-left: 20px;
    margin-bottom: 50px;
    background-color: #f9f9f9;
    padding-top: 15px;
    padding-bottom: 15px;
}

.balades-season h3 {
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

/* Style des étapes de balade */
.balade-step {
    margin-top: 60px;
    border-top: 1px solid #ddd;
    padding-top: 40px;
}

.balade-step h2 {
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.balade-step h3 {
    font-size: 1.1rem;
    font-weight: normal;
    font-style: italic;
    color: #555555;
    margin-bottom: 15px;
}

.balade-info {
    font-size: 0.95rem;
    background-color: #f0f0f0;
    padding: 10px 15px;
    margin-bottom: 25px;
    border-left: 3px solid #000000;
}

.balade-step p {
    margin-bottom: 20px;
    text-align: justify;
}

# ---------------------------------------
# ---------------------------------------
# Page Histoire
# ---------------------------------------
# ---------------------------------------
/* --- Style de la page Histoire --- */
.histoire-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    box-sizing: border-box;
    line-height: 1.7;
}

.histoire-content h2 {
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    border-bottom: 2px solid #000000;
    padding-bottom: 10px;
    text-align: center;
}

.histoire-content p {
    margin-bottom: 20px;
    text-align: justify;
    font-size: 1.05rem;
}
/* --- Style des images de la page Histoire --- */
.image-container {
    margin: 40px auto;
    text-align: center;
}

.image-container img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border: 1px solid #ddd; /* Fine bordure discrète */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); /* Légère ombre élégante */
}

.image-caption {
    font-size: 0.9rem;
    font-style: italic;
    color: #666666;
    margin-top: 10px;
}