/* --- CONFIGURATION GÉNÉRALE --- */

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: 'Belleza', sans-serif;
  background-color: #ffffff;
}

/* Fond fixe pour le contenu principal */
.fixed-background-content {
  background-image: url('../Image/olivier_arc.JPEG');
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0;
}

/* Sur mobile, éviter background-attachment: fixed qui bug souvent */
@media (max-width: 767.98px) {
  .fixed-background-content {
    background-attachment: scroll;
  }
}

/* Menus opaques */
nav, .banner-container {
  background-color: #ffffff;
  position: relative;
  z-index: 10;
}

/* --- BANDEAU DÉROULANT --- */

.banner-container {
  background-color: #000;
  color: white;
  overflow: hidden;
  position: relative;
  height: 35px;
  display: flex;
  align-items: center;
}

.scrolling-text {
  white-space: nowrap;
  position: absolute;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scroll-left 30s linear infinite;
}

@keyframes scroll-left {
  0% { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

/* --- NAVIGATION PRINCIPALE --- */

nav {
  background-color: #ffffff;
  border-bottom: 2px solid #000000;
  height: 85px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 20px;
  position: relative; 
  z-index: 100;
}

.nav-group {
  display: flex;
  align-items: center;
  flex: 1;
}

.nav-group.left { 
  justify-content: flex-end;
}

.nav-group.right { 
  justify-content: flex-start;
}

.nav-logo {
  flex: 0 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: center;
}

.nav-logo img {
  height: 80px;
  display: block;
}

nav a {
  text-decoration: none;
  color: #333;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1.5px;
  padding: 10px 20px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #dfdd71;
}

/* --- MENUS DÉROULANTS --- */

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 180px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  display: block;
  padding: 12px;
  font-size: 12px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

/* --- TITRES / ARTICLES / IMAGES --- */

.history-title {
  text-align: center;
  margin-top: 30px;
}

.history-title h1 {
  font-size: 2.5rem;
}

.history-title h2 {
  font-size: 1.5rem;
}

.history-title h3 {
  text-align: center;
}

article {
  background-color: rgb(250, 250, 250);
  border-color: #000;
  border-width: 2px;
  border-style: solid;
  padding: 10px;
  border-radius: 15px;
  margin-bottom: 10px;
  font-size: 18px;
}

.image {
  border-radius: 10px;
  border-color: #000;
  border-width: 2px;
  border-style: solid;
  overflow: hidden;
  display: block;
}

.image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Listes d'ingrédients en colonnes sur écran large */
.liste-ingredients {
  padding-left: 20px;
}

@media (min-width: 768px) {
  .liste-ingredients {
    column-count: 2;
    column-gap: 30px;
  }
}

/* --- NAV BAS DE PAGE (LOGOS) --- */

.main-nav2 {
  background-color: #c8cbe4;
  border-top: 2px solid #000000;
  height: auto;
  min-height: 85px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 10px;
  gap: 20px;
}

.main-nav2 img {
  width: 80px;
  height: auto;
  border-radius: 10px;
}

/* --- NAV HAUT DE PAGE --- */

.main-nav1 {
  background-color: #ffffff;
  border-bottom: 2px solid #000000;
  height: auto;
  min-height: 70px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  gap: 10px;
}

.main-nav1 img {
  width: 80px;
  height: auto;
  border-radius: 10px;
}

/* Petits ajustements responsive */

@media (max-width: 767.98px) {
  nav {
    flex-wrap: wrap;
    height: auto;
    padding: 10px;
  }

  .nav-logo {
    padding: 10px 0;
  }

  nav a {
    padding: 5px 10px;
    font-size: 12px;
  }
}


@media (min-width: 768px) {
  .offset-md-2-3 {
    margin-left: 23%;
  }}

  @media (min-width: 768px) {
  .offset-md-3-4 {
    margin-left: 30%;
  }}






 