/* ===================== GÉNÉRAL ===================== */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #000000 ; /*#fdfdfd;*/
    color: #ffffff;
}

a:visited {
    color : white ;
    text-decoration: none;
}

/* ===================== HEADER ===================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    transition: background-color 0.3s ease;

}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 30px;
}

.logo {
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    color: white;
    background: none;
    cursor: pointer;
    list-style: none;
}

.logo-img {
  height: 100px; /* ajuste la taille du logo */
  width: auto;
  margin-left: 50px;
  display: block;
}


nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

nav a {
    color: white;
    padding: 60px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.site-header a:hover {
    color: #CC0000;
}


.closure-banner {
    position: sticky;
    top: 140px; /* 👈 hauteur du header */
    letter-spacing: 0.03em;
    background-color: #8b0000; /* rouge profond */
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    z-index: 900;
}

.closure-section {
    background: black;
    padding: 4rem 1rem;
    text-align: center;
}

.closure-image {
    max-width: 600px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.closure-contact {
    background-color: #111;
    color: #f5f5f5;
    border: 1px solid #8b0000;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1rem;
    letter-spacing: 0.03em;
}

/* === MENU BURGER === */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 30px;
}

@media (max-width: 1360px) {
    nav a{
        padding: 30px;
    }
}

@media (max-width: 1070px) {
    nav a{
        padding: 10px;
    }
}

/* === RESPONSIVE HEADER === */
@media (max-width: 860px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 40px;
        background-color: rgba(0, 0, 0, 0.9);
        padding: 20px;
        border-radius: 8px;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links a {
        color: white;
        padding: 10px 0;
    }
}

/* ===================== ACCUEIL : HERO ===================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
    display: block;
}

.hero-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-title .subline {
    font-size: 1.5rem;
    display: block;
    margin-top: 0.5rem;
}

.hero-btn {
    position: absolute;
    bottom: 30px;
    right: 40px;
    padding: 12px 24px;
    background-color: transparent;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    border: 2px solid white;
    z-index: 2;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background-color: #CC0000;
    color: white;
}

/* Téléphones */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
        text-align: center;
        width: 90%; /* pour éviter que le texte déborde */
    }

    .hero-title .subline {
        font-size: 1.5rem;
    }
}

/* Très petits écrans */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-title .subline {
        font-size: 1rem;
    }
}

/* ===================== ACCUEIL : INTRO ===================== */
.intro-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
    background-color: #CC0000;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.intro-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.intro-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.intro-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: left;
}

.intro-text {
    flex: 1;
    text-align: center;
}

.intro-image {
    flex: 1;
    text-align: right;
}

.intro-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    display: inline-block;
    margin: 2rem auto 0;
    padding: 10px 20px;
    border: 2px solid white;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: black;
    color: white;
}

/* === INTRO RESPONSIVE === */
@media (max-width: 768px) {
    .intro-content {
        flex-direction: column;
        text-align: center;
    }

    .intro-image {
        text-align: center;
    }
}

/* ===================== GALERIE ACCUEIL ===================== */
.home-gallery {
  background-color: #111;
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}

.home-gallery h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  max-width: 1100px;
  margin: 0 auto 2rem auto;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
  border-radius: 10px;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(85%);
}

.home-gallery .btn-outline {
  display: inline-block;
  padding: 10px 28px;
  border: 2px solid white;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.home-gallery .btn-outline:hover {
  background-color: white;
  color: black;
}

/* ========== ABOUT PAGE ========== */

.about_titre {
    display: flex;
    position: relative;
    width: 100%;
    z-index: 2;
    background-color: #444444;
    color: rgb(251, 248, 249);
}

.abintro1 {
    display: flex;
    width: 100%;
    margin-top : 100px ;
    height: 100%;
    flex-direction: column;
    justify-content: center;
}
.abintro2 {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
    z-index: 2;
    align-items: center;
    flex: 0 0 auto;
    gap: clamp(1rem, 3vw, 2rem);
    text-align: center;
}

.about_titre h2{
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Section Histoire */
.history-section {
  background-color: black;
  padding: 5rem 2rem;
  text-align: center;
  color: white;
}

.history-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.history-section p {
  max-width: 800px;
  margin: 1rem auto;
  font-size: 1.1rem;
  line-height: 1.8;
}

.historia-photo {
  width: 100%;
  height: auto;
  filter: brightness(70%);
  display: block;
  margin: 0 auto;
  object-fit: contain; /* ou rien du tout */
  max-height: 500px; /* facultatif si tu veux limiter la hauteur */
}


.slideshow-container {
  width: 100%;
  max-width: 800px;   /* largeur max du carrousel */
  height: 450px;      /* hauteur fixe */
  margin: 0 auto;     /* centré */
  overflow: hidden;   /* cache ce qui dépasse */
  position: relative;
}

.slideshow-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* recadre sans déformer */
  border-radius: 10px; /* optionnel arrondi */
}

.slide {
  display: none;
}
.slide.cool img {
  object-fit: contain; /* affiche l’image en entier */
  background-color: black; /* bandes noires sur les côtés */
}

.historia-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Effet fondu */
.fade {
  animation-name: fade;
  animation-duration: 1s;
}

@keyframes fade {
  from {opacity: 0.9;}
  to {opacity: 1;}
}
/* ===================== GALERIE ===================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 15px;
  margin: 3rem auto;
  max-width: 1200px;
  padding: 0 1rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
  border-radius: 10px;
}

/* Effet au survol */
.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(85%);
}

/* Optionnel : légère ombre */
.gallery-item {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.gallery-item video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
/* Section Équipe */
.team-section {
  background-color: #ffffff;
  padding: 5rem 2rem;
  text-align: center;
}

.team-container h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  margin-bottom: 3rem;
  color: #3b2e2a;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.team-member {
  max-width: 300px;
  background-color: #fdf9f7;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.team-member img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.team-member h3 {
  margin: 0.5rem 0;
  font-size: 1.3rem;
  color: #3b2e2a;
}

.team-member p {
  font-size: 1rem;
  color: #5a4a46;
}


/* ===================== PAGES SECONDAIRES ===================== */
main.page-secondaire {
}

/* ========== MENU PREVIEW ========== */
.menu-preview {
    background-color: #444444;
    padding: 4rem 2rem;
    text-align: center;
}

.menu-preview h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.menu-item h3 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 0.5rem;
}

.menu-item p {
    font-size: 1rem;
    color: white;
    margin: 0;
}

/* ========== MENU PAGE ========== */

/* === Barre sticky du menu === */


.menu-intro {
    display: flex;
    position: relative;
    width: 100%;
    z-index: 2;
    background-color: black;
    color: rgb(251, 248, 249);
}

.intro1 {
    display: flex;
    width: 100%;
    margin-top : 100px ;
    height: 100%;
    flex-direction: column;
    justify-content: center;
}
.intro2 {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
    z-index: 2;
    align-items: left;
    flex: 0 0 auto;
    gap: clamp(1rem, 3vw, 2rem);
    text-align: left;
    align-items: flex-start;
}

.menu-intro h2{
    margin-left: 10%;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.menu-intro p{
    margin-left: 10%;
    margin-right: 10%;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 2rem;
}

.menu-navigation, .menu-navigation_vin {
    background-color : #444444;
    position: sticky;
    display: flex;
    width: 100%;
    z-index: 10;
    align-items: center;
    top: 185px;
    transform: translateZ(0px);
    will-change: transform;
}

.manu-navi {
    display: flex;
    justify-content: center; /* 👈 centre le contenu horizontalement */
    align-items: center;     /* 👈 centre verticalement si hauteur précisée */
    height: 60px;
    position: relative;
    width: 100%;
    z-index: 2;
    color: #CC0000;
}

.menu-nav {
    display: flex;
    justify-content: center;  /* centre les liens horizontalement */
    flex-wrap: nowrap;        /* par défaut, tout sur une seule ligne */
    gap: 20px;                /* espace entre les liens */
}

.menu-nav_vin {
    display: flex;
    justify-content: center;  /* centre les liens horizontalement */
    flex-wrap: nowrap;        /* par défaut, tout sur une seule ligne */
    gap: 5px;                /* espace entre les liens */
}

.menu-nav a {
    color: #CC0000;
    font-weight: normal;
    text-decoration: none;
    font-size: 1.2rem;
    position: relative;
}

.menu-nav_vin a {
    color: #CC0000;
    font-weight: normal;
    text-decoration: none;
    font-size: 1rem;
    position: relative;
}

.menu-nav a::after, .menu-nav_vin a::after{
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    background-color: #CC0000;
    transition: width 0.3s ease;
    margin-top: 5px;
}

.menu-nav a:hover::after,.menu-nav_vin a:hover::after {
    width: 100%;
}

/* === Section principale du menu === */
.menu-section {
    scroll-margin-top: 180px; /* ajustable à la hauteur de ton header */
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.menu-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 40px;
    border-bottom: 2px solid #CC0000;
    display: inline-block;
}

.menu-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 60px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-itemo {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #ddd;
    padding-bottom: 16px;
}

.item-text h4 {
    margin: 0 0 6px;
    font-size: 1.1rem;
    font-weight: 600;
}

.item-text p {
    margin: 0;
    color: #777;
    font-size: 0.95rem;
    font-style: italic;
}

.price {
    font-weight: bold;
    white-space: nowrap;
    margin-left: 20px;
    font-size: 1rem;
    color: white;
}
@media (max-width: 1410px) and (min-width: 1360px) {
    .menu-nav_vin a {
        font-size: 0.9rem;
    }
}
@media (max-width: 820px) {
     .menu-navigation_vin {
        height : 150px;

    }
    .menu-nav_vin  {
        flex-wrap: wrap; /* autorise plusieurs lignes */
    }
    .menu-nav_vin a {
        font-size: 0.8rem;
        flex: 0 0 23%; /* chaque lien prend exactement un tiers de la ligne */
        text-align: center;
    }
        .menu-navigation, .menu-navigation_vin {
        top: 189px;
    }
}
/* Responsive : 1 colonne sur petit écran */
@media (max-width: 768px) {
    .menu-list {
        grid-template-columns: 1fr;
    }
    .menu-section {
        scroll-margin-top: 280px;
    }

    .menu-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .price {
        margin-top: 8px;
        align-self: flex-end;
    }
    .menu-nav {
        flex-wrap: wrap; /* autorise plusieurs lignes */
    }
    .menu-navigation {
        height : 150px;

    }
    .menu-nav a{
        font-size: 0.8rem;
        flex: 0 0 23%; /* chaque lien prend exactement un tiers de la ligne */
        text-align: center;
    }
}

@media (max-width: 667px) {
    .menu-navigation, .menu-navigation_vin {
        top: 195px;
    }
}


@media (max-width: 400px) {
    .menu-nav a {
        font-size: 0.7rem;
        flex: 0 0 15%; /* chaque lien prend exactement un tiers de la ligne */
        text-align: center;
    }
}

/* Position du dropdown */
.dropdown {
    position: relative;
}

.dropdown > a {
    cursor: pointer;
}

/* Sous-menu caché */
.dropdown-menu {
    display: none;
    position: absolute;
    background: white;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    min-width: 180px;
    z-index: 10;
}

/* Chaque lien du sous-menu */
.dropdown-menu li a {
    color: #b30000;
    display: block;
    padding: 10px 20px;
    white-space: nowrap;
}
.dropdown-menu li a:hover {
    background: #b30000; /* rouge */
    color: white;
}

/* Apparition au survol sur ordinateur */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Mobile : on ouvre quand le menu principal est ouvert */
.nav-links.open .dropdown-menu {
    position: static;
    box-shadow: none;
}


/* ===================== CONTACT CTA ===================== */
.contact-cta {
    background-color: black;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.contact-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-cta h3 {
    text-align: center;
}

.contact-cta p,
.contact-cta a {
    font-size: 1.1rem;
    width: fit-content;
    margin: 0 auto 2rem auto;
    text-align: left;
}

.contact-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.reserve,
.contactation {
    width: 50%;
    padding: 2rem;
    text-align: left;
    box-sizing: border-box;
}

.reserve {
    text-align: center;
}

.reserve p {
    text-align: left;
    width: fit-content;
}

.reserve a {
    text-decoration: none;
    color : white ;
}

.btn-primary {
    display: inline-block;
    padding: 12px 28px;
    background-color: black;
    color: white;
    font-weight: bold;
    border: 2px solid white;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #444444;
    color: white;
}

@media (max-width: 768px) {
    .reserve,
    .contactation {
        width: 100%;
        padding: 1rem 0;
        text-align: center;
        border: none;
    }
}

.map-container {
    position: relative;
    width: 100%;
    max-width: 600px; /* 👈 ajuste la largeur max comme tu veux */
    margin: 0 auto; /* centre la map */
    padding-top: 56.25%; /* 👈 ratio 16:9 pour la hauteur */
    overflow: hidden;
    border-radius: 10px; /* optionnel pour un look plus doux */
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.social-icons {
    display: flex;
    justify-content: center; /* centre les icônes */
    gap: 1.5rem; /* espace entre elles */
    margin-top: 1rem;
}

.social-icons a img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1); /* rend l’icône blanche si elle est noire */
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icons a:hover img {
    transform: scale(1.1);
    opacity: 0.8;
}



/* ===================== RESERVATIONS PAGE ===================== */
/* ===== Section Réservation simplifiée ===== */
.reservation-info {
    margin-top : 100px ;
    display: flex;
    justify-content: center;
    padding: 50px 20px;
    margin-bottom : 150 px ;
}

.reservation-box {
    background-color: #777;
    border: 2px solid #CC0000;
    border-radius: 15px;
    padding: 2rem 2.5rem;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.reservation-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: black;
  margin-bottom: 15px;
}

.reservation-box a {
    color: white;
    font-size: 1rem;
    text-decoration: none;
}

.reservation-box a:hover {
    text-decoration: underline;
}


/* ===================== CONTACT PAGE ===================== */

.contact_titre {
    display: flex;
    position: relative;
    width: 100%;
    z-index: 2;
    background-color: #444444;
    color: rgb(251, 248, 249);
}

.contact_titre h2{
    margin-left: 10%;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: left;
    margin-bottom: 1.5rem;
}

/* CONTACT-FORMULAIRE*/
.contact-section {
  background-color: black;
  padding: 4rem 2rem;
  text-align: center;
}

.contact-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #999;
}

.contact-section p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-row {
  display: flex;
  flex-direction: column; /* mobile par défaut */
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .form-row {
    flex-direction: row;
  }

  .form-row .form-group {
    flex: 1;
  }
}

.form-group input,
.form-group textarea {
  all: unset;
  width: 100%;
  border-bottom: 1px solid #aaa;
  padding: 0.2rem 0;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  position: relative;
  background-color: transparent;
}

.form-group {
  position: relative;
}

.form-group input:hover,
.form-group textarea:hover {
  background-color: rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border: 1px solid white;
  box-shadow: 0 0 0 2px #aaa;
}


.form_btn-primary {
  align-self: center;
  background-color: white;
  color: rgba(0, 0, 0, 0.5);
  padding: 12px 24px;
  border: 2px solid #aaa;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form_btn-primary:hover {
    background-color: black;
    color: white;
}

/* CONTACT-INFO*/
.contact-infos-section {
  padding: 4rem 2rem;
  background-color: #777;
}

.contact-infos-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.contact-details,
.contact-map {
  flex: 1 1 45%;
  min-width: 300px;
}

.contact-details h3{
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-details p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #CCC;
}

.contact-details a {
  font-size: 1.1rem;
  text-decoration :none ;
  color: #CCC;
}

.opening_hours {
  background-color: black;
  padding: 4rem 2rem;
  color: white;
  font-family: 'Roboto', sans-serif;
}

.ope1 {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.ope2 {
  border: 1px solid #ddd;
  background-color: #CC0000;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}

.ope_week {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  margin-top: 0.5rem;
}

.ope_day {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 1rem;
}

.ope_day:last-child {
  border-bottom: none;
}

.ope_weekname {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: left;
}

.ope_stretch_text {
  text-align: right;
  font-size: 1.25rem;
  color: white;
}

/* Responsive : côte à côte sur écran large */
@media (min-width: 910px) {
  .ope_week {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2rem;
    text-align: center;
  }

  .ope_day {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    border: none;
    padding: 0;
  }

  .ope_weekname {
    margin-bottom: 0.5rem;
    text-align: center;
  }

  .ope_stretch_text {
    text-align: center;
    font-size: 1.15rem;
  }
}

/* ===================== FOOTER ===================== */
footer {
    background-color: #555;
    color: #f5f5f5;
    padding: 1rem 3rem 1rem;
    font-size: 0.95rem;
}

footer h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main > div {
    flex: 1 1 30%;
}

.foot_princ {
margin-top: 3.2rem;
    list-style: none;
    padding: 0;
}

.foot_princ li {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.foot_princ a {
    color: #f5f5f5;
    text-decoration: none;
}

.foot_princ a:hover {
    text-decoration: underline;
}

/* Réseaux sociaux */

.info_resto_lettres {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info_resto_lettres li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
      margin-top: 2rem;
    margin-bottom: 1rem;
}

.info_resto_lettres a{
    text-decoration: none;
    color: white ;
}

.social-icons {
    margin-top: 2rem;
}

.social-icons img {
    width: 24px;
    margin-right: 1rem;
    vertical-align: middle;
}

/* FOOTER - Horaires en mobile */
.Heures_foot {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: 'Roboto', sans-serif;
}

.Heures_foot li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  text-align: center;
}

.Heures_foot li:last-child {
  border-bottom: none;
}

.Heures_foot_day {
  font-weight: bold;
  font-size: 1.1rem;
  font-family: 'Playfair Display', serif;
  flex: 1;
  text-align: left;
}

.Heures_foot_hours {
  font-size: 1rem;
  color: #f5f5f5;
  flex: 1;
  text-align: right;
}

/* Partie inférieure du footer */
.reste_basdepage {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ddd;
    margin-top: 2rem;
    padding-top: 1rem;
    font-size: 0.85rem;
}

.reste_basdepage .cgv {
    color: #f5f5f5;
    text-decoration: none;
}

.reste_basdepage .cgv:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav_basdepage {
        display: none;
    }

    .footer-main {
        justify-content: center;
        text-align: center;
    }

    .footer-main > div {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .social-icons {
        justify-content: center;
        display: flex;
    }
}



