/* FONT FACE */
@font-face {
  font-family: "Sarabun";
  src: url("../fonts/sarabun/sarabun-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Sarabun";
  src: url("../fonts/sarabun/sarabun-latin-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Sarabun";
  src: url("../fonts/sarabun/sarabun-latin-900-normal.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Sarabun";
  src: url("../fonts/sarabun/sarabun-latin-500-normal.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Sarabun";
  src: url("../fonts/sarabun/sarabun-latin-300-normal.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Sarabun";
  src: url("../fonts/sarabun/sarabun-latin-400-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Memories Note";
  src: url("../fonts/Memories Note.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "SpiderBrush";
  src: url("../fonts/SpiderBrush.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
/* VARIABLES */
.bandeau {
  background-color: #472C18;
  padding: 0.875rem 0;
  overflow: hidden;
  border-top: 3px solid #EA7E3E;
  border-bottom: 3px solid #EA7E3E;
}
.bandeau__track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: -moz-max-content;
  width: max-content;
  animation: bandeau-scroll 28s linear infinite;
}
.bandeau__track:hover {
  animation-play-state: paused;
}
.bandeau__mot {
  color: #FFFDF7;
  white-space: nowrap;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
}
@media (min-width: 1188px) {
  .bandeau__mot {
    font-size: 1.1rem;
  }
}
.bandeau__separateur {
  color: #FECC4F;
  flex-shrink: 0;
  font-size: 0.75rem;
}

@keyframes bandeau-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.rubrique {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.rubrique-1 {
  background: radial-gradient(ellipse at 15% 100%, rgba(234, 126, 62, 0.25) 0%, transparent 55%), radial-gradient(ellipse at 85% 100%, rgba(254, 204, 79, 0.2) 0%, transparent 55%), #FFFDF7;
}
.rubrique-3 {
  background: radial-gradient(ellipse at 85% 0%, rgba(234, 126, 62, 0.25) 0%, transparent 55%), radial-gradient(ellipse at 15% 0%, rgba(254, 204, 79, 0.2) 0%, transparent 55%), #FFFDF7;
}
@media (min-width: 1188px) {
  .rubrique {
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
  }
}
@media (min-width: 1188px) {
  .rubrique__intro {
    width: 30%;
    flex-shrink: 0;
  }
}
.rubrique__numero {
  display: block;
  font-family: "SpiderBrush", sans-serif;
  font-size: 5rem;
  color: rgba(234, 126, 62, 0.5);
  line-height: 1;
  margin-bottom: -0.75rem;
}
@media (min-width: 1188px) {
  .rubrique__numero {
    font-size: 7rem;
  }
}
.rubrique .sur-titre {
  margin-bottom: 0.5rem;
}
.rubrique__texte {
  color: rgba(71, 44, 24, 0.75);
}
.rubrique__plats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  flex: 1;
  justify-content: center;
}

.plat {
  background-color: #FFFDF7;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(71, 44, 24, 0.1);
  flex: 1 1 160px;
  max-width: 300px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.plat:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(71, 44, 24, 0.12);
}
@media (min-width: 1188px) {
  .plat {
    max-width: 240px;
  }
}
.plat__photo {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 0;
}
.plat__contenu {
  padding: 0.75rem;
}
.plat__titre {
  font-family: "Memories Note", sans-serif;
  color: #EA7E3E;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}
.plat__texte {
  color: rgba(71, 44, 24, 0.7);
}

.citation-carte {
  background-color: #FECC4F;
  text-align: center;
}
.citation-carte__texte {
  font-family: "Memories Note", sans-serif;
  font-size: 1.35rem;
  color: #472C18;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}
@media (min-width: 1188px) {
  .citation-carte__texte {
    font-size: 1.75rem;
  }
}
.citation-carte__texte p {
  margin: 0;
}