/* =====================
   HERO
===================== */
.hero-slider {
  display: none;
}
.hero {
      position: relative;
      height: 520px;
      overflow: hidden;
}

.hero-p {
  position: absolute;
  overflow: hidden;
}
.hero-p img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Positions et tailles uniques pour chaque photo */
.cp1 { width: 25%; height: 80%; bottom: 10%;  left: 37%;  transform: rotate(-4deg); animation: fromTopLeft     0.7s ease 0.1s both; }
.cp2 { width: 20%; height: 80%; top: 0%;  right: 15%; transform: rotate(3deg);  animation: fromTop         0.7s ease 0.2s both; }
.cp3 { width: 20%; height: 60%; top: 0%; left: 15%; transform: rotate(2deg); animation: fromBottom      0.7s ease 0.35s both; }
.cp4 { width: 20%; height: 60%; bottom: 0%; right: 15%; transform: rotate(-3deg); animation: fromBottomRight 0.7s ease 0.45s both; }
.cp5 { width: 20%; height: 70%; bottom: 0%;   left: 15%;  transform: translateY(-50%) rotate(5deg); animation: fromLeft 0.7s ease 0.3s both; }

.collage-center {
  position: absolute;
  overflow: visible;   /* laisse les rotations s'afficher */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;

  /* centré dans le hero */
  left: 50%;
  top: 10%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.collage-center .h2-row {
  display: flex;
  justify-content: space-between;  
  width: 500px;                    
}

.collage-center .h2-row h2{
  color: var(--yellow);
  display: inline-block;
  animation: VisibleToInvisible 6s ease both;
}

.collage-center h3 {
  color: var(--light);
}

/* =====================
   DIVIDERS SVG
===================== */
.fancy-divider-down,
.fancy-divider-down svg {
  background-color: transparent;
}
.fancy-divider-down path {
  fill: transparent;
  stroke: var(--yellow);
}

.fancy-divider-up,
.fancy-divider-up svg {
  background-color: transparent;
}
.fancy-divider-up{
  display: flex;
}

.fancy-divider-up path {
  fill: transparent;
  stroke: var(--yellow);
}

.divider_zigzag {
  background-color: transparent;
}

.divider_zigzag path {
  fill: transparent;
  stroke: var(--yellow);
}

/* =====================
   SECTION LIENS MENU (orange)
===================== */
#section-menu-links {
    background-color: transparent;
    padding: 40px 20px 60px;
    text-align: center;
}

#section-menu-links .restaurant-title {
    margin-bottom: 40px;
    color: var(--light);
}

#section-menu-links .menu-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding-bottom: 30px;
}

#section-menu-links .menu-card {
    overflow: hidden;

}

#section-menu-links .menu-card:hover {
    transform: translateY(-5px);
}

#section-menu-links .menu-image {
    background-color: var(--dark);
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: none;
}

#section-menu-links .menu-link {
  display: flex;
  font-family: "Roboto", Arial, Tahoma, sans-serif;
  font-size: 16px;
  font-weight: 700;
  justify-content: center;
  color: var(--dark);
  background: var(--yellow);
  padding: 10px 22px;
  border-radius: 4px;
  border: 2px solid var(--light);
  transition: background 0.2s, color 0.2s;
}

#section-menu-links .menu-link:hover {
    background: var(--dark);
    color: var(--light);
}

/* =====================
   SECTION HOVER BOXES (gris clair)
===================== */
#section-hover-boxes {
  background-color: transparent;
  padding: 40px 0 50px;
}

#section-hover-boxes .container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hover-box {
  flex: 1 1 300px;
  max-width: 380px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 6px;
}

.hover-box img {
  width: 100%;
  display: block;
  transition: opacity 0.3s;
}

.hover-box .hidden-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.hover-box:hover .visible-img { opacity: 0; }
.hover-box:hover .hidden-img  { opacity: 1; }

.hover-box h2{
  position: absolute;
  color: var(--dark);
  top: 35%;
  left: 23%;
  width: auto;
  text-align: center;
}

.hover-box .hidden-imga {
  width: 260px;
  height: 180px;
  position: absolute;
  top: 50%;
  left: 15%;
  opacity: 0;
  transition: opacity 0.3s;
}
.hover-box .hidden-imgb {
  width: 260px;
  height: 180px;
  position: absolute;
  top: 10%;
  left: 13%;
  opacity: 0;
  transition: opacity 0.3s;
}

.hover-box .hv_h h2{
  top: 20%;
  left: 20%;
}
.hover-box:hover .visible-imgc { opacity: 1; }
.hover-box:hover .hidden-imga  { opacity: 1; }
.hover-box:hover .hidden-imgb  { opacity: 1; }
.hover-box:hover .hv_h {opacity: 0;}

#section-commander{
  display: none;
}