@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Anton&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Arvo:ital,wght@0,400;0,700;1,400;1,700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
  font-family: "Anton", sans-serif;
}

p {
  font-family: "Arvo", serif;
}

ul[role=list],
ol[role=list] {
  list-style: none;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.65;
  color: #2e3a31;
  letter-spacing: 0.8px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
picture {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: #2e3a31;
  transition: all 0.2s ease-out;
}

a:hover {
  color: #776256;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: 1350px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 1600px) {
  .container {
    max-width: 1500px;
  }
  .panel-medieval-origins .origins-content {
    max-width: 1500px;
  }
}
.hidden {
  display: none !important;
}

@media (min-width: 2200px) {
  .container {
    max-width: 1800px;
  }
}
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffbc47;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease-out 0.5s, visibility 0.8s ease-out 0.5s;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  width: 60px;
  height: 60px;
  border: 5px solid rgba(74, 59, 49, 0.2);
  border-top-color: #2e3a31;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 24px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.loading-screen p {
  font-style: italic;
  color: #2e3a31;
}

body.no-scroll {
  overflow: hidden;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 75px;
  background-color: transparent;
  box-shadow: none;
  border-bottom: none;
  z-index: 1100;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.site-header > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.page-accueil .site-header .header-logo a,
.page-accueil .site-header .nav-menu a.nav-link {
  color: #2e3a31;
}

.page-accueil .site-header .hamburger-line {
  color: #2e3a31;
}

.page-accueil .site-header .nav-menu a.nav-link::after {
  color: #2e3a31;
}

.site-header.scrolled {
  box-shadow: 0 2px 10px rgba(58, 45, 37, 0.1);
}

.site-header.scrolled .header-logo a,
.site-header.scrolled .nav-menu a.nav-link {
  color: #ffbc47;
}

.site-header.scrolled .hamburger-line {
  background-color: #ffbc47;
}

.site-header.scrolled .nav-menu a.nav-link::after {
  background-color: #ffbc47;
}

.header-logo a {
  font-size: 1.9rem;
  font-weight: 700;
  color: #2e3a31;
  transition: color 0.3s ease;
}

.header-logo a span {
  color: #776256;
  font-style: normal;
}

.nav-menu {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu li {
  margin-left: 40px;
}

.nav-menu a.nav-link {
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #2e3a31;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.nav-menu a.nav-link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #2e3a31;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-menu a.nav-link:hover,
.nav-menu a.nav-link.active {
  color: #2e3a31;
}

.nav-menu a.nav-link:hover::after,
.nav-menu a.nav-link.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 30px;
  height: 24px;
  background: transparent;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1001;
  width: 30px;
  height: 24px;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #2e3a31;
  border-radius: 3px;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hamburger-line:nth-child(2) {
  width: 70%;
}

.nav-toggle {
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.nav-toggle.open .hamburger-line:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

.nav-toggle.open .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.open .hamburger-line:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

@media (max-width: 991px) {
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 1001;
    width: 30px;
    height: 24px;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.05);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1000;
  }
  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    background-color: #ffbc47;
  }
  .nav-menu li {
    margin: 20px 0;
    width: auto;
  }
  .nav-menu a.nav-link {
    font-size: 1.5rem;
    color: #2e3a31;
    padding: 10px;
  }
  .nav-menu a.nav-link:hover,
  .nav-menu a.nav-link.active {
    color: #2e3a31;
  }
  .nav-menu a.nav-link::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .site-header {
    height: 65px;
  }
}
.btn-cta {
  display: inline-block;
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 16px 40px;
  border-radius: 50px;
  background-color: #2e3a31;
  color: #FFFFFF;
  box-shadow: 0 5px 15px rgba(58, 45, 37, 0.07);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 2px solid transparent;
}

.btn-cta:hover {
  background-color: #776256;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(58, 45, 37, 0.1);
  color: #FFFFFF;
  text-decoration: none;
}

.btn-portal {
  display: inline-block;
  font-family: "Anton", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 14px 38px;
  border-radius: 50px;
  background-color: #2e3a31;
  color: #FFFFFF;
  box-shadow: 0 5px 15px rgba(58, 45, 37, 0.07);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 2px solid #2e3a31;
  cursor: pointer;
}

.btn-portal:hover {
  background-color: transparent;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(58, 45, 37, 0.1);
  color: #2e3a31;
  text-decoration: none;
}

#teaser-histoire.bg-offset-alt .btn-portal {
  background-color: #2e3a31;
  color: #ffffff;
  border: 2px solid #2e3a31;
}

#teaser-histoire.bg-offset-alt .btn-portal:hover {
  background-color: transparent;
  color: #2e3a31;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  z-index: 1;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffbc47;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffbc47;
  opacity: 0.5;
  z-index: -1;
}

.hero-section > .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 24px 0;
}

.hero-title {
  color: #2e3a31;
  font-family: "Anton", sans-serif;
  font-size: clamp(3rem, 7vw, 4.8rem);
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 700;
}

.hero-title .hero-title-line {
  display: block;
}

.hero-title .hero-title-highlight {
  font-style: normal;
  color: #2e3a31;
}

.hero-subtitle {
  color: #2e3a31;
  font-family: "Arvo", serif;
  font-size: clamp(1.1rem, 2.8vw, 1.4rem);
  max-width: 680px;
  margin: 0 auto 40px auto;
  opacity: 0.95;
  font-weight: 300;
  line-height: 1.7;
}

.scroll-prompt {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #2e3a31;
  transition: color 0.3s ease;
  text-decoration: none;
}

.scroll-prompt:hover {
  color: #2e3a31;
}

.scroll-prompt span {
  font-family: "Arvo", serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.scroll-prompt span:not(.mouse-wheel) {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.scroll-prompt .arrow {
  width: 14px;
  height: 14px;
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  animation: bounce-vertical 1.8s ease-in-out infinite;
}

@keyframes bounce-vertical {
  0%, 100% {
    transform: translateY(-5px) rotate(45deg);
  }
  50% {
    transform: translateY(5px) rotate(45deg);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) rotate(45deg);
    opacity: 0;
  }
  40% {
    transform: translateY(8px) rotate(45deg);
    opacity: 1;
  }
  60% {
    transform: translateY(12px) rotate(45deg);
    opacity: 1;
  }
}
@keyframes scrollWheel {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }
}
.teaser-section {
  position: relative;
  overflow: hidden;
}

.teaser-section.bg-offset-alt {
  background-color: #FFBC47;
}

.teaser-section.bg-texture-light {
  background-color: #FFBC47;
}

.teaser-section.bg-offset {
  background-color: #FFBC47;
}

#teaser-histoire.bg-offset-alt .teaser-kicker,
#teaser-histoire.bg-offset-alt .teaser-title,
#teaser-histoire.bg-offset-alt .teaser-desc {
  color: #2e3a31;
}

.teaser-content-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.teaser-text {
  text-align: center;
}

.teaser-text2 {
  text-align: center;
}

@media (max-width: 768px) {
  .teaser-text {
    text-align: center;
  }
  .teaser-text2 {
    text-align: center;
    padding-top: 40px;
  }
}
.teaser-kicker {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  color: #776256;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.teaser-kicker2 {
  display: block;
  font-weight: 500;
  font-size: 1.1rem;
  color: #776256;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.teaser-title {
  font-size: clamp(2.2rem, 5vw, 3rem);
  color: #2e3a31;
  line-height: 1.2;
  margin-bottom: 24px;
  font-weight: 600;
}

.teaser-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #2e3a31;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.teaser-image-container {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  max-height: 450px;
}

.shadow {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.teaser-image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.teaser-image-container2 {
  box-shadow: 0 12px 35px rgba(58, 45, 37, 0.15);
}

.image-split-container {
  display: flex;
  gap: 16px;
  max-height: 400px;
}

.image-split-container .image-split-item {
  flex: 1;
  width: 50%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  box-shadow: none;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.teaser-section.layout-reverse .teaser-content-wrapper .teaser-text {
  order: 1;
}

.teaser-section.layout-reverse .teaser-content-wrapper .teaser-image-container {
  order: 0;
}

.teaser-content-wrapper .teaser-text.full-width-text {
  grid-column: 1/-1;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.teaser-content-wrapper .teaser-text.full-width-text + .teaser-image-container:empty {
  display: none;
}

.teaser-image-container.bord-biais {
  clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%);
}

.teaser-section.fond-incline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f6e3cb 50%, #EAE0D5 50%);
  z-index: -1;
  transform: skewY(-4deg);
  transform-origin: top left;
}

@media (max-width: 767px) {
  body.page-accueil {
    padding-top: 0;
    min-height: 100vh;
  }
  .hero-section {
    min-height: 100vh;
  }
  .hero-title {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
  }
  .hero-subtitle {
    font-size: clamp(1rem, 4vw, 1.15rem);
  }
  .scroll-prompt {
    bottom: 70px;
  }
}
@media (min-width: 991px) {
  .teaser-content-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .teaser-text {
    text-align: left;
  }
  .teaser-desc {
    margin-left: 0;
    margin-right: 0;
  }
  .teaser-section.layout-reverse .teaser-text {
    grid-column: 2/3;
  }
  .teaser-section.layout-reverse .teaser-image-container {
    grid-column: 1/2;
  }
}
@media (max-width: 991px) {
  .teaser-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .teaser-section.layout-reverse .teaser-image-container,
  .teaser-image-container {
    order: -1;
  }
  .teaser-section.layout-reverse .teaser-text {
    order: 0;
  }
  .image-split-container {
    flex-direction: column;
    max-height: none;
  }
  .image-split-container .image-split-item {
    width: 100%;
    height: 180px;
  }
  img,
  a {
    cursor: default;
  }
}
.animate-on-scroll {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-up-custom {
  transform: translateY(40px);
}

.fade-right-custom {
  transform: translateX(-50px);
}

.fade-left-custom {
  transform: translateX(50px);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
  transition-delay: var(--animation-delay, 0s);
}

body.body-quiz .site-header:not(.scrolled) .hamburger-line {
  background-color: #2e3a31;
}

.page-gaufres .nav-toggle.open .hamburger-line,
body.body-quiz .nav-toggle.open .hamburger-line {
  background-color: #FFFFFF;
}

.page-gaufres .main-content {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #FFBC47;
}

.gaufres-title-container {
  padding-top: 40px;
  padding-bottom: 20px;
}

.gaufres-page-title {
  font-family: "Anton", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  color: #2e3a31;
  text-align: center;
}

.image-focused-waffle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.waffle-item-focus {
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(58, 45, 37, 0.1);
  display: flex;
  flex-direction: column;
  text-align: left;
  position: relative;
}

.waffle-item-focus:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(58, 45, 37, 0.15);
}

.waffle-item-focus-image-container {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.waffle-item-focus-image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.waffle-item-focus:hover .waffle-item-focus-image-container img {
  transform: scale(1.07);
}

.waffle-item-focus-image-container.focus-right img {
  -o-object-position: right center;
     object-position: right center;
}

.waffle-item-focus-content {
  position: relative;
  z-index: 2;
}

.lien-etendu {
  text-decoration: none;
  color: inherit;
}

.lien-etendu::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.waffle-item-focus-name {
  font-family: "Anton", sans-serif;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  color: #2e3a31;
  margin: 0 0 10px 0;
  line-height: 1.2;
}

.waffle-item-focus-desc {
  font-family: "Arvo", serif;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: #2E3A31;
  line-height: 1.65;
  margin-bottom: 25px;
  flex-grow: 1;
}

.waffle-item-focus .btn-portal {
  align-self: flex-start;
  font-size: 0.85rem;
  padding: 10px 28px;
}

@media (max-width: 991px) {
  .image-focused-waffle-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .waffle-item-focus-image-container {
    height: 300px;
    margin-bottom: 15px;
  }
  .waffle-item-focus-name {
    font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  }
  .waffle-item-focus-desc {
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    margin-bottom: 20px;
  }
  .waffle-item-focus {
    text-align: center;
  }
  .waffle-item-focus .btn-portal {
    align-self: center;
  }
}
@media (max-width: 767px) {
  .page-gaufres .main-content {
    padding-top: 65px;
    padding-bottom: 40px;
  }
  .gaufres-title-container {
    padding-top: 30px;
  }
  .gaufres-page-title {
    font-size: clamp(2.2rem, 6vw, 3rem);
    margin-bottom: 30px;
  }
  .image-focused-waffle-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }
  .waffle-item-focus {
    text-align: center;
  }
  .waffle-item-focus-image-container {
    aspect-ratio: 4/3;
  }
  .waffle-item-focus-name {
    font-size: clamp(1.7rem, 5vw, 2.2rem);
  }
  .waffle-item-focus-desc {
    font-size: 0.95rem;
  }
  .waffle-item-focus .btn-portal {
    align-self: center;
  }
}
.gaufre-detail-page-main {
  padding-top: 75px;
  background-color: #ffbc47;
}

@media (max-width: 991px) {
  .gaufres-page-title {
    line-height: 1.1;
  }
}
.detail-section.main-feature-section {
  padding: 30px 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-feature-section .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.specifics-layout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
  width: 100%;
}

.specifics-image-column {
  display: flex;
  align-items: center;
  justify-content: center;
}

.specifics-image-column .specifics-image-visual-wrapper {
  width: 100%;
  aspect-ratio: 4/4.5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(58, 45, 37, 0.12);
}

.specifics-image-column .specifics-image-visual-wrapper2 img {
  width: 100%;
  padding-top: 20%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.specifics-image-column .specifics-image-visual-wrapper2 img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.specifics-perks-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
}

.page-primary-title {
  font-family: "Anton", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #2e3a31;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 15px;
}

.caracteristiques-cles.perks-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  width: 100%;
}

.caracteristique-item {
  background-color: transparent;
  padding: 8px 10px;
  border-radius: 8px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.caracteristique-item h4 {
  font-family: "Anton", sans-serif;
  color: #2e3a31;
  margin-bottom: 4px;
  line-height: 1.2;
  text-align: left;
}

.specifics-image-column .specifics-image-visual-wrapper {
  width: 100%;
  aspect-ratio: 4/3;
  max-width: 450px;
  margin: 0 auto 30px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(58, 45, 37, 0.12);
  padding-top: 20%;
}

@media (min-width: 768px) {
  .specifics-image-column .specifics-image-visual-wrapper {
    aspect-ratio: 4/4;
    max-width: none;
  }
}
@media (min-width: 992px) {
  .specifics-image-column .specifics-image-visual-wrapper {
    aspect-ratio: 4/3.8;
  }
}
.caracteristique-item p {
  font-family: "Arvo", serif;
  color: #2E3A31;
  line-height: 1.4;
  text-align: left;
}

@media (min-width: 992px) {
  .specifics-layout-grid.layout-reverse {
    grid-template-columns: 1.3fr 0.7fr;
  }
  .specifics-layout-grid.layout-reverse .specifics-perks-column {
    order: 1;
  }
  .specifics-layout-grid.layout-reverse .specifics-image-column {
    order: 2;
  }
  .culture-pop-layout.layout-reverse {
    flex-direction: row-reverse;
  }
}
.experience-bruxelloise-focus-content.degustation-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
}

.experience-bruxelloise-focus-content .focus-text-wrapper {
  text-align: center;
  width: 100%;
  padding: 20px 0;
}

.focus-text-wrapper2 {
  text-align: left;
}

.experience-bruxelloise-focus-content .focus-text-statement {
  font-family: "Arvo", serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  line-height: 1.75;
  color: #2e3a31;
  margin: 0 auto;
  max-width: 60ch;
}

.focus-text-statement2 {
  font-family: "Arvo", serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  line-height: 1.75;
  color: #2e3a31;
  max-width: 60ch;
}

.degustation-section {
  background-color: #ffbc47;
}

.experience-bruxelloise-focus-content .focus-text-statement strong {
  color: #776256;
  font-weight: 700;
}

@media (min-width: 992px) {
  .specifics-layout-grid.layout-reverse {
    grid-template-columns: 1.2fr 0.8fr;
  }
}
@media (min-width: 992px) {
  .detail-section.main-feature-section {
    padding: 40px 0;
  }
  .specifics-layout-grid {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 25px;
    align-items: center;
  }
  .specifics-image-column .specifics-image-visual-wrapper {
    aspect-ratio: 4/4;
  }
  .specifics-perks-column {
    padding: 15px;
  }
  .page-primary-title {
    text-align: left;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
  }
  .caracteristiques-cles.perks-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  .caracteristique-item {
    padding: 12px 15px;
  }
  .caracteristique-item p {
    flex-grow: 1;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .specifics-image-column .specifics-image-visual-wrapper {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 40px;
  }
}
@media (min-width: 992px) {
  .detail-section.main-feature-section {
    padding: 50px 0;
  }
  .specifics-layout-grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 30px;
  }
  .specifics-image-column .specifics-image-visual-wrapper {
    aspect-ratio: 4/3.8;
  }
  .page-primary-title {
    font-size: clamp(2.4rem, 4.2vw, 3.5rem);
    margin-bottom: 20px;
  }
  .specifics-perks-column {
    padding: 15px 20px;
  }
  .caracteristiques-cles.perks-grid {
    gap: 18px;
  }
  .caracteristique-item h4 {
    font-size: 1.14rem;
  }
  .caracteristique-item p {
    font-size: 1.1rem;
    line-height: 1.5;
  }
}
@media (min-width: 1200px) {
  .detail-section.main-feature-section {
    padding: 60px 0;
  }
  .specifics-layout-grid {
    gap: 40px;
  }
  .specifics-perks-column {
    padding: 20px 30px;
  }
  .page-primary-title {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    margin-bottom: 30px;
  }
  .caracteristiques-cles.perks-grid {
    gap: 20px;
  }
  .caracteristique-item h4 {
    font-size: 1.5rem;
  }
  .caracteristique-item p {
    font-size: 1rem;
    line-height: 1.6;
  }
}
.section-reconnaissance {
  padding: 80px 0 60px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-kicker {
  display: inline-block;
  font-family: "Arvo", serif;
  font-size: 0.95rem;
  color: #776256;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  background: rgba(119, 98, 86, 0.08);
  border-radius: 50px;
  padding: 7px 22px;
}

.experience-liegeoise-focus-content.degustation-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
}

.experience-liegeoise-focus-content .focus-text-wrapper {
  text-align: center;
  width: 100%;
  padding: 20px 0;
}

.experience-liegeoise-focus-content .focus-text-statement {
  font-family: "Arvo", serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  line-height: 1.75;
  color: #2e3a31;
  margin: 0 auto;
  max-width: 60ch;
}

.experience-liegeoise-focus-content .focus-text-statement strong {
  color: #776256;
  font-weight: 700;
}

.section-title {
  font-family: "Anton", sans-serif;
  font-size: clamp(2.3rem, 5vw, 3.2rem);
  color: #2e3a31;
  margin-bottom: 12px;
  line-height: 1.1;
}

.section-desc {
  font-family: "Arvo", serif;
  color: #2E3A31;
  font-size: 1.1rem;
  margin-bottom: 0;
}

.reco-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  margin-top: 30px;
}

.reco-item {
  text-align: center;
  background: none;
  box-shadow: none;
  padding: 0 10px;
  transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reco-item:hover {
  transform: translateY(-7px) scale(1.03);
}

.reco-illu {
  width: 120px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 70px;
  margin-bottom: 18px;
  box-shadow: 0 6px 24px rgba(58, 45, 37, 0.1);
  background: #FFFFFF;
}

.reco-item h3 {
  font-family: "Anton", sans-serif;
  font-size: 1.18rem;
  color: #2e3a31;
  margin-bottom: 8px;
  margin-top: 0;
  letter-spacing: 0.2px;
}

.reco-item p {
  font-family: "Arvo", serif;
  color: #2E3A31;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 767px) {
  .section-reconnaissance {
    padding: 48px 0 30px 0;
  }
  .reco-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .reco-illu {
    width: 90px;
    height: 90px;
    margin-bottom: 14px;
  }
}
.degustation-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.degustation-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.degustation-conseils,
.accompagnements-gallerie {
  padding: 30px;
  border-radius: 8px;
}

.degustation-conseils h3,
.accompagnements-gallerie h3 {
  font-family: "Anton", sans-serif;
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  color: #2e3a31;
  margin-bottom: 20px;
  text-align: center;
}

.degustation-conseils p {
  font-family: "Arvo", serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #2E3A31;
  text-align: justify;
}

.degustation-conseils p strong {
  color: #2e3a31;
  font-weight: 700;
}

.accompagnements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
}

.accompagnement-item {
  margin: 0;
  text-align: center;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.accompagnement-item:hover {
  transform: translateY(-5px) scale(1.03);
}

.accompagnement-item img {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.accompagnement-item figcaption {
  padding: 12px 10px;
  font-family: "Arvo", serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #2e3a31;
}

@media (min-width: 768px) {
  .degustation-content {
    flex-direction: row;
    align-items: flex-start;
  }
  .degustation-conseils {
    flex: 1;
    min-width: 300px;
  }
  .accompagnements-gallerie {
    flex: 1.5;
    min-width: 320px;
  }
  .accompagnements-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}
@media (max-width: 767px) {
  .degustation-section .section-header {
    margin-bottom: 40px;
  }
  .degustation-conseils,
  .accompagnements-gallerie {
    padding: 20px;
  }
  .accompagnements-grid {
    gap: 15px;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
  .accompagnement-item img {
    height: 120px;
  }
}
.section-padding {
  padding-top: 40px;
  padding-bottom: 40px;
}

@media (min-width: 992px) {
  .section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.madecouverte-section .section-header {
  margin-bottom: 50px;
}

.culture-pop-layout {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.culture-text-content {
  flex-basis: 100%;
  order: 1;
}

.culture-text-content h3 {
  font-family: "Anton", sans-serif;
  font-size: clamp(1.6rem, 3.2vw, 2rem);
  color: #2e3a31;
  margin-bottom: 20px;
  line-height: 1.2;
  text-align: center;
}

.culture-text-content p,
.culture-text-content ul li {
  font-family: "Arvo", serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #2E3A31;
  text-align: justify;
  max-width: 60ch;
}

.culture-text-content ul {
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 25px;
  margin-top: 20px;
  margin-bottom: 15px;
}

.culture-text-content ul li::marker {
  color: #776256;
}

.culture-image-wrapper {
  flex-basis: 100%;
  order: 2;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(58, 45, 37, 0.09);
  align-self: center;
}

@media (max-width: 992px) {
  .culture-image-wrapper {
    max-width: 500px;
  }
  .left {
    text-align: left;
    max-width: 60ch;
    margin-left: auto;
    margin-right: auto;
  }
}
.culture-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.panel-expo-newyork-suite .split-layout-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 100px;
}

.de-nos-jours-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  width: 100%;
  height: 100%;
  padding: 2rem;
}

.de-nos-jours-text-content {
  flex-basis: 50%;
}

.de-nos-jours-image-content {
  flex-basis: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.de-nos-jours-image-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

@media (min-width: 992px) {
  .culture-pop-layout {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
  .culture-text-content {
    flex: 1.2;
    text-align: left;
    max-width: none;
  }
  .culture-text-content h3 {
    text-align: left;
  }
  .culture-text-content p,
  .culture-text-content ul li {
    text-align: left;
  }
  .culture-image-wrapper {
    flex: 0.8;
  }
  .culture-image-wrapper img {
    height: 100%;
  }
}
@media (min-width: 992px) {
  .culture-pop-layout {
    gap: 50px;
  }
  .culture-text-content h3 {
    font-size: clamp(1.8rem, 3.5vw, 2.2rem);
  }
  .culture-text-content p,
  .culture-text-content ul li {
    font-size: 1.1rem;
  }
  .culture-image-wrapper {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .culture-image-wrapper2 {
    width: 300px;
    height: 600px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.culture-image-wrapper2 {
  width: 300px;
  max-width: 100%;
  margin: 0 auto;
}

.culture-image-wrapper2 img {
  display: block;
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 991px) {
  .culture-image-wrapper2 {
    max-width: 450px;
  }
  .culture-image-wrapper2 img {
    height: auto;
  }
}
.gallery-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .specifics-image-column .specifics-image-visual-wrapper img {
    width: 100%;
    padding-top: 10%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
}
.other-waffle-section .section-header {
  text-align: center;
  margin-bottom: 30px;
}

.other-waffle-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.waffle-suggestion {
  background-color: transparent;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  transition: none;
  padding: 0;
  text-align: center;
  max-width: 400px;
  width: 100%;
}

.waffle-suggestion img {
  width: 100%;
  max-height: none;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0;
  margin-bottom: 15px;
}

.waffle-suggestion h3 {
  font-family: "Anton", sans-serif;
  font-size: 1.4rem;
  color: #2e3a31;
  margin-bottom: 10px;
}

.waffle-suggestion p {
  font-family: "Arvo", serif;
  font-size: 1rem;
  color: #2E3A31;
  margin-bottom: 20px;
}

.waffle-suggestion a.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #776256;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 5px;
  font-family: "Arvo", serif;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.waffle-suggestion a.button:hover {
  background-color: #2E3A31;
}

@media (min-width: 769px) {
  .other-waffle-content {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }
  .waffle-suggestion {
    max-width: 350px;
  }
}
@media (max-width: 768px) {
  .other-waffle-content {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .degustation-content.layout-reverse {
    flex-direction: row-reverse;
  }
}
@media (min-width: 992px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
  .teaser-section {
    padding-top: 96px;
    padding-bottom: 96px;
  }
}
@media (max-width: 767px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 991px) {
  .page-histoire-horizontale .nav-menu.open {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 991px) {
  .nav-menu.open a.nav-link {
    color: #2e3a31;
  }
}
@media (max-width: 991px) {
  .panel-layout-split .split-layout-content,
  .panel-expo-newyork-suite .split-layout-content {
    flex-direction: column;
    gap: 50px;
  }
  .panel-layout-split .split-layout-text {
    text-align: center;
    width: 100%;
    max-width: 600px;
  }
  .panel-layout-split .split-layout-image img {
    max-height: 400px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.specifics-image-column .specifics-image-visual-wrapper,
.history-panel .split-layout-image,
.history-panel .gallery-image,
.history-panel .golden-age-central-image {
  overflow: hidden;
}

.specifics-image-column .specifics-image-visual-wrapper img,
.history-panel .split-layout-image img,
.history-panel .gallery-image,
.history-panel .golden-age-central-image img {
  transition: transform 0.4s ease-in-out;
}

.panel-golden-age-national {
  background-color: #f5e3cb;
  color: #2e3a31;
}

@media (max-width: 767px) {
  .panel-golden-age-national {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .gaufre-detail-page-main .culture-text-content,
  .gaufre-detail-page-main .focus-text-wrapper,
  .gaufre-detail-page-main .specifics-perks-column {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  img {
    max-width: 650px;
    width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .teaser-image-container {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }
}
#teaser-jeux .teaser-image-container {
  box-shadow: 0 8px 25px rgba(58, 45, 37, 0.12);
}

/* --- Dans styles.css --- */
.page-quiz {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.intro-section {
  padding: 0px 40px;
  padding-bottom: 100px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 720px;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInIntro 0.8s 0.2s ease-out forwards;
}

@media (min-width: 992px) {
  html.no-scroll-until-init {
    overflow-y: hidden !important;
  }
}
@keyframes fadeInIntro {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.intro-title-quiz {
  font-size: clamp(2.7rem, 7vw, 4.5rem);
  margin-top: 0;
  color: #2e3a31;
  letter-spacing: 0.05em;
}

.intro-explanation {
  font-size: 1.9rem;
  line-height: 1.6;
  color: #2E3A31;
  max-width: 800px;
  margin-bottom: 35px;
  font-family: "Anton", sans-serif;
}

/* Dans styles.css */
/* Dans styles.css */
.quiz-section {
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 720px;
  box-sizing: border-box;
  position: relative;
  padding-top: 20px;
}

@media (min-width: 992px) {
  .quiz-section {
    margin-bottom: auto;
  }
}
.progression {
  font-size: 1rem;
  color: #2e3a31;
  margin-bottom: 30px;
  letter-spacing: 0.02em;
}

.question-container {
  max-width: 600px;
  margin-bottom: 40px;
  width: 100%;
}

#question-area {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.question-text-wrapper {
  margin-bottom: 30px;
}

.question-text {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.3;
  color: #2e3a31;
  margin: 0;
  text-align: center;
}

.answers-container {
  width: 100%;
  max-width: 600px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.answers-container button {
  font-family: "Anton", serif;
  font-size: 1.1rem;
  border-radius: 12px;
  padding: 18px 24px;
  text-align: left;
  transition: all 0.3s ease;
  background-color: #F8F3EB;
  cursor: pointer;
}

.answers-container button:hover:not(:disabled) {
  border-color: #2E3A31;
  box-shadow: 0 6px 12px rgba(93, 156, 122, 0.3);
  transform: translateY(-3px);
}

.answers-container button:disabled {
  opacity: 0.6;
}

.answers-container button.correct {
  background-color: #6A994E;
  border-color: #6A994E;
  color: #FFFFFF;
  box-shadow: 0 6px 15px rgba(93, 156, 122, 0.6);
  transform: scale(1.05);
}

.answers-container button.incorrect {
  background-color: #E63946;
  border-color: #E63946;
  color: #FFFFFF;
  box-shadow: 0 6px 15px rgba(217, 108, 108, 0.6);
}

.answers-container button.faded {
  opacity: 0.5;
}

.results-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  color: #2e3a31;
  width: 100%;
}

@media (max-width: 991px) {
  .liege-brussels-text-content,
  .newyork-expo-text-content {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.results-container h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 10px;
}

.history-panel:first-of-type {
  height: 100vh;
  padding: 0;
}

@media (max-width: 991px) {
  .specifics-image-column .specifics-image-visual-wrapper {
    padding-top: 0;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    height: auto;
    aspect-ratio: 1/1;
    box-shadow: none;
    border: none;
  }
  .specifics-image-column .specifics-image-visual-wrapper img,
  .specifics-image-column .specifics-image-visual-wrapper2 img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    padding-top: 0;
  }
}
.specifics-image-column .specifics-image-visual-wrapper {
  box-shadow: none;
  border: none;
}

.panel-layout-split .split-layout-content,
.panel-dual-column-layout .text-row-container {
  gap: 60px;
}

@media (max-width: 991px) {
  .panel-golden-age-suite .text-block {
    text-align: left;
  }
}
@media (max-width: 991px) {
  .history-panel {
    min-height: 0;
    height: auto;
    padding: 40px 20px;
  }
  .history-panel:first-of-type {
    min-height: 100vh;
    padding: 40px 20px;
  }
  .panel-layout-split .split-layout-content,
  .panel-dual-column-layout .text-row-container,
  .newyork-expo-wrapper,
  .liege-brussels-wrapper {
    flex-direction: column;
    gap: 50px;
  }
  .newyork-expo-text-content,
  .liege-brussels-text-content,
  .panel-golden-age-suite .text-block {
    text-align: left;
  }
  .panel-layout-split .split-layout-text {
    text-align: center;
    width: 100%;
    max-width: 600px;
  }
  .moyen-age-suite .split-layout-text {
    text-align: left;
  }
  .panel-layout-split .split-layout-image img {
    max-height: 400px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.score-wrapper {
  font-size: 6rem;
  color: #2e3a31;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.score-wrapper span:last-child {
  font-size: 1.8rem;
  color: #2e3a31;
}

.score-message {
  font-size: 1.2rem;
  max-width: 500px;
  line-height: 1.5;
  text-align: center;
}

.results-buttons {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 400px;
  justify-content: center;
  margin-top: 20px;
}

.explanations-panel {
  padding: 40px 30px 50px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  box-sizing: border-box;
  text-align: left;
}

.explanations-panel .panel-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #2e3a31;
  margin-bottom: 30px;
  text-align: center;
}

.explanations-list-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  margin-bottom: 30px;
}

.explanation-item {
  border: 1px solid #2E3A31;
  border-radius: 12px;
  padding: 15px;
}

.explanation-item summary {
  font-size: 1.1rem;
  color: #2e3a31;
  margin-bottom: 8px;
  list-style-position: inside;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.explanation-item summary:hover {
  color: inherit;
  transform: translateY(-3px);
}

.explanation-item summary strong {
  margin-right: 6px;
}

.explanation-item p {
  font-size: 0.9rem;
  color: #2e3a31;
  line-height: 1.45;
  margin-bottom: 6px;
  padding-left: 8px;
}

.explanation-item p:last-child {
  margin-bottom: 0;
}

.explanation-user-answer.correct-user .user-answer-text {
  color: #38761D;
}

.explanation-user-answer.incorrect-user .user-answer-text {
  color: #A02C2C;
}

.explanation-correct-answer {
  color: #38761D;
}

.intro-section .intro-explanation {
  font-family: "Arvo", serif;
  line-height: 1.5;
  color: #2E3A31;
  margin-bottom: 40px;
}

.explanations-buttons-container {
  margin-top: 10px;
}

@media (max-width: 1200px) {
  .explanations-panel {
    max-width: 991px;
  }
  .explanations-list-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .explanations-panel {
    max-width: 720px;
  }
  .explanations-list-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 991px) {
  .panel-dual-column-layout {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .history-panel {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .panel-golden-age-suite {
    padding-top: 30px;
  }
  .liege-brussels-text-content,
  .newyork-expo-text-content {
    padding: 0x 0px;
  }
}
@media (max-width: 600px) {
  .explanations-panel {
    max-width: 100%;
  }
  .explanations-list-wrapper {
    grid-template-columns: 1fr;
  }
  .explanation-item {
    padding: 18px;
  }
  .explanation-item summary {
    font-size: 1.05rem;
  }
  .explanation-item p {
    font-size: 0.95rem;
  }
}
.specifics-image-column .specifics-image-visual-wrapper,
.culture-image-wrapper,
.suggestion-visual {
  overflow: hidden;
}

.specifics-image-column .specifics-image-visual-wrapper img,
.culture-image-wrapper img,
.suggestion-visual img {
  transition: transform 0.4s ease-in-out;
}

.culture-image-wrapper,
.waffle-suggestion {
  overflow: hidden;
}

.culture-image-wrapper img,
.waffle-suggestion img {
  transition: transform 0.4s ease-in-out;
  border-radius: 8px;
}

.waffle-suggestion img:hover {
  border-radius: 8px;
}

.waffle-suggestion-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.waffle-suggestion-link:hover {
  transform: translateY(-5px);
}

.suggestion-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.suggestion-card-link:hover {
  transform: translateY(-5px);
}

.btn {
  flex-grow: 1;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 600px) {
  .page-container {
    padding: 20px 15px;
    justify-content: flex-start;
  }
  .intro-section, .quiz-section, .explanations-panel {
    padding: 30px 20px 40px;
  }
  .intro-title {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }
  .intro-explanation {
    font-size: 1.9rem;
  }
  .explanations-panel .panel-title {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
  }
  .question-text {
    font-size: 1.5rem;
  }
  .answers-container button {
    font-size: 1rem;
    padding: 14px 20px;
  }
  .score-wrapper {
    font-size: 4.5rem;
  }
  .results-buttons, .explanations-buttons-container {
    flex-direction: column;
    max-width: 300px;
    align-items: center;
  }
}
.section-padding-final {
  padding-top: 40px;
  padding-bottom: 20px;
}

.waffle-suggestion-link:hover .waffle-suggestion img {
  transform: scale(1.07);
  border-radius: 8px;
}

@media (min-width: 992px) {
  .section-padding-final {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .history-panel {
    height: auto;
    min-height: 0;
    padding: 40px 20px !important;
  }
  .history-panel.panel-intro {
    min-height: 100vh;
  }
  .liege-brussels-text-content,
  .newyork-expo-text-content {
    padding-top: 0;
    padding-bottom: 0;
  }
  .panel-dual-column-layout .text-row-container {
    margin-bottom: 0;
  }
  .panel-intro .intro-title-line {
    line-height: 1.2;
  }
  .panel-dual-column-layout .text-block {
    text-align: left;
  }
  .panel-dual-column-layout .text-row-container,
  .panel-expo-newyork-suite .split-layout-content {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .history-panel .split-layout-image img,
  .history-panel .gallery-image,
  .history-panel .golden-age-central-image,
  .history-panel .golden-age-central-image img,
  .history-panel .liege-brussels-visual-content,
  .history-panel .newyork-expo-visual-content,
  .history-panel .modern-era-top-image,
  .history-panel .de-nos-jours-central-image img,
  .history-panel .de-nos-jours-image-content img {
    border-radius: 8px;
    overflow: hidden;
  }
}
.site-footer {
  background-color: #572713;
  color: rgba(255, 255, 255, 0.8);
  padding-top: 80px;
  padding-bottom: 40px;
}

.footer-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  letter-spacing: 1px;
  font-size: 1.3rem;
  color: #FFFFFF;
  margin-bottom: 24px;
  font-weight: 400;
}

.footer-col h4 span {
  color: #FFFFFF;
  opacity: 0.8;
}

@media (max-width: 991px) {
  .site-footer {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.footer-col p,
.footer-col ul li {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-col a:hover {
  color: #FFFFFF;
  text-decoration: none;
}

.footer-socials {
  margin-top: 16px;
}

.footer-socials a {
  display: inline-block;
  margin-right: 16px;
  font-size: 1.1rem;
  font-weight: bold;
}

.footer-socials .social-icon-label {
  font-size: 1rem;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.8);
}

.footer-socials a:hover .social-icon-label {
  color: #FFFFFF;
}

.footer-credits {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
}

.footer-credits p {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .footer-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-col {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .footer-col {
    text-align: left;
  }
}
.line {
  line-height: 1.05;
}

.credits-main-content {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding-top: 75px;
  padding-bottom: 40px;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
  background-color: #f6e3cb;
}

.credits-container {
  max-width: 700px;
  width: 100%;
  text-align: center;
}

.credits-container h1 {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  color: #2e3a31;
  margin-bottom: 2rem;
}

.credits-container p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: #2E3A31;
  line-height: 1.7;
  margin: 0 auto 1.5rem auto;
  max-width: 50ch;
}

.credits-container p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .credits-main-content {
    padding-top: 65px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .credits-container h1 {
    font-size: clamp(2.2rem, 8vw, 2.8rem);
  }
}
.choix-ville {
  color: #2e3a31;
}

.choix-ville-container {
  max-width: 1500px;
  margin: 0 auto;
}

.choix-ville .section-title {
  font-family: "Anton", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 40px;
  color: #2e3a31;
}

.choix-ville-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.choix-ville .texte-part {
  font-family: "Arvo", serif;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 900px;
  text-align: center;
  color: #2E3A31;
}

.choix-ville .image-part img {
  width: 100%;
  max-width: 900px;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(58, 45, 37, 0.08);
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

@media (max-width: 992px) {
  .choix-ville .image-part img {
    max-width: 500px;
  }
}
@media (min-width: 768px) {
  .choix-ville-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
  .choix-ville .texte-part {
    max-width: 50%;
  }
}
.choix-ville {
  color: #2e3a31;
}

.choix-ville-container {
  max-width: 1200px;
  margin: 0 auto;
}

.choix-ville .section-title {
  font-family: "Anton", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 40px;
  color: #2e3a31;
}

.choix-ville-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  text-align: center;
}

.choix-ville .texte-part {
  font-family: "Arvo", serif;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 60ch;
  color: #2e3a31;
}

@media (min-width: 992px) {
  .choix-ville .image-part img {
    width: 100%;
    width: 826px;
    height: 500px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(58, 45, 37, 0.08);
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
}
/* -- SECTION CONTENU SLIDER -- */
.section-title-static {
  font-family: "Anton", sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
  color: #2e3a31;
  line-height: 1.15;
}

.slider-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.slides-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.slide-item {
  display: none;
  align-items: center;
  gap: 40px;
  padding: 40px;
  border-radius: 8px;
  animation: fadeIn 1.2s ease-in-out;
}

.slide-item.active {
  display: flex;
  align-items: stretch;
}

.slide-text {
  flex: 1;
  color: #2e3a31;
  line-height: 1.1;
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide-text h3 {
  font-family: "Anton", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 16px;
}

.slide-text p {
  font-family: "Arvo", serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #2E3A31;
}

.slide-image {
  flex: 1;
  aspect-ratio: 16/9;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.slide-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.slider-nav-btn {
  position: static;
  transform: none;
  font-size: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #2e3a31;
  transition: transform 0.2s ease;
}

.slider-nav-btn:hover {
  transform: scale(1.2);
}

.slider-arrow-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: -40px;
  position: relative;
  z-index: 5;
}

.slider-dots {
  text-align: center;
  padding-top: 25px;
}

.slide-text {
  padding-bottom: 50px;
}

@media (min-width: 992px) {
  .slider-arrow-nav {
    width: 50%;
    justify-content: flex-start;
    padding-left: 40px;
  }
}
@media (max-width: 991px) {
  .slider-arrow-nav {
    justify-content: center;
    margin-top: -20px;
  }
}
.slider-dots {
  text-align: center;
  padding-top: 25px;
}

.dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.4s ease;
}

.dot.active {
  background-color: #2e3a31;
}

.dot:hover {
  background-color: #776256;
}

@media (max-width: 1300px) {
  .slider-nav-btn.prev {
    left: 15px;
  }
  .slider-nav-btn.next {
    right: 15px;
  }
}
@media (max-width: 991px) {
  .section-contenu-slide {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .slide-item.active {
    flex-direction: column;
    text-align: center;
  }
}
.ville-align {
  text-align: left;
}

@media (min-width: 992px) {
  /* -- Positionnement du burger menu latéral -- */
  #villes-nav-toggle {
    display: flex; /* Rendre visible sur desktop */
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    position: fixed;
    top: 20px; /* Aligner joliment avec le header */
    left: 40px;
    z-index: 1002; /* Au-dessus du panneau */
    cursor: pointer;
  }
  #villes-nav-toggle .hamburger-line {
    background-color: #2e3a31;
  }
  /* -- Style du slider -- */
  .villes-nav-side {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 280px; /* Largeur du panneau */
    box-shadow: 4px 0 15px rgba(58, 45, 37, 0.1);
    transform: translateX(-100%); /* Caché par défaut */
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1001;
    /* Mise en forme des liens à l'intérieur */
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 40px;
  }
  .villes-nav-side.is-open {
    transform: translateX(0);
  }
}
@media (max-width: 991px) {
  #villes-nav-toggle {
    display: none;
  }
  .villes-nav-side {
    position: static;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    height: auto;
    padding: 15px 0;
    transform: none;
    border-bottom: 1px solid #EAE0D5;
    box-shadow: none;
  }
  .ville-link-side {
    font-family: "Anton", sans-serif;
    font-size: 1.1rem;
    padding: 8px 12px;
    border-left: none;
  }
  .ville-link-side.active {
    font-weight: normal;
    color: #776256;
    border-left: none;
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
  }
  .villes-nav-side.sticky {
    position: fixed;
    top: 75px;
    left: 0;
    background-color: #FFBC47;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  .main-content.sub-nav-sticky {
    padding-top: 130px;
  }
}
/* ==========================================================================
   STYLES POUR LE MENU DÉROULANT 
   ========================================================================== */
.nav-item-dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 8px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.nav-item-dropdown:hover > .dropdown-toggle::after {
  transform: scaleX(1);
}

.dropdown-menu {
  list-style: none;
  padding: 8px 0;
  margin: 0;
  position: absolute;
  top: 95%;
  left: 50%;
  transform: translateX(-50%);
  background-color: transparent;
  min-width: 150px;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.nav-item-dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-item-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu li {
  padding: 4px 0;
  text-align: center;
}

.dropdown-menu li a {
  display: inline-block;
  color: #2e3a31;
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
  padding: 8px 12px;
  position: relative;
  transition: transform 0.2s ease;
}

.avis {
  margin-top: 40px;
}

.dropdown-menu li a:hover {
  transform: scale(1.1);
}

.dropdown-menu li a.active-sub-link {
  transform: scale(1.1);
}

.page-accueil .site-header:not(.scrolled) .dropdown-menu li a {
  color: #FFFFFF;
}

.page-accueil .site-header:not(.scrolled) .dropdown-menu li a.active-sub-link {
  color: #FFFFFF;
}

/* --- GESTION MOBILE --- */
@media (max-width: 991px) {
  .dropdown-menu,
  .dropdown-arrow {
    display: none;
  }
}
.section-padding {
  padding-top: 40px;
  padding-bottom: 40px;
}

@media (min-width: 992px) {
  .section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.section-padding-final {
  padding-top: 40px;
  padding-bottom: 20px;
}

@media (min-width: 992px) {
  .section-padding-final {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}
/* --- Sections uniformisées  --- */
.teaser-section,
.section-reconnaissance,
.choix-ville,
.section-contenu-slide,
.degustation-section,
.gallery-section,
.other-waffle-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

@media (min-width: 992px) {
  .teaser-section,
  .section-reconnaissance,
  .choix-ville,
  .section-contenu-slide,
  .degustation-section,
  .gallery-section,
  .other-waffle-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 991px) {
  .gaufre-detail-page-main,
  .page-gaufres .main-content,
  .teaser-section,
  .degustation-section,
  .madecouverte-section,
  .section-reconnaissance,
  .gallery-section,
  .other-waffle-section,
  .choix-ville,
  .section-contenu-slide,
  .section-padding,
  .detail-section {
    padding-top: 40px;
  }
}
@media (min-width: 992px) {
  .gallery-section.section-padding-final,
  .other-waffle-section.section-padding-final {
    padding-bottom: 80px;
  }
}
.credits-main-content {
  padding-top: 65px;
  padding-bottom: 40px;
}

@media (min-width: 768px) {
  .credits-main-content {
    padding-top: 75px;
    padding-bottom: 80px;
  }
}
.culture-pop-layout.layout-reverse {
  flex-direction: row-reverse;
}

.choix-ville h1.section-title {
  font-size: clamp(2.7rem, 7vw, 4.5rem);
}

@media (max-width: 991px) {
  .culture-pop-layout,
  .culture-pop-layout.layout-reverse {
    flex-direction: column;
  }
  .culture-pop-layout .culture-image-wrapper {
    order: 1;
  }
  .culture-pop-layout .culture-text-content {
    order: 2;
  }
  .culture-text-content {
    text-align: center;
  }
  .culture-text-content p {
    text-align: left;
  }
  .culture-text-content h3 {
    text-align: center;
  }
}
/* --- Correction finale pour le Slider sur Tablette --- */
@media screen and (min-width: 768px) and (max-width: 991px) {
  .slide-item .slide-image {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}
/* ==========================================================================
   Correctifs pour le Slider sur Tablette & Mobile
   ========================================================================== */
@media (max-width: 991px) {
  .slide-item.active {
    gap: 25px;
  }
  .slider-arrow-nav {
    width: 100%;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    padding: 0 15px;
    box-sizing: border-box;
    justify-content: space-between;
  }
  .slide-text {
    padding-bottom: 0;
  }
}
.hero-layout-split {
  background-color: #FFBC47;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
  padding: 40px 0;
  box-sizing: border-box;
}

.hero-split-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  width: 100%;
}

.hero-title-split {
  font-family: "Anton", sans-serif;
  font-size: clamp(2.7rem, 7vw, 4.5rem);
  line-height: 1.1;
  color: #2e3a31;
  margin-bottom: 24px;
}

.hero-highlight-split {
  position: relative;
  display: inline-block;
}

.hero-highlight-split::after {
  content: "";
  position: absolute;
  bottom: 0.1em;
  left: -2%;
  right: -2%;
  height: 0.3em;
  background: rgba(46, 58, 49, 0.15);
  transform: skew(-12deg);
  border-radius: 2px;
  z-index: -1;
}

.hero-desc-split {
  font-family: "Arvo", serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #2e3a31;
  max-width: 45ch;
}

.hero-split-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.hero-gallery-img-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.hero-gallery-img-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* Scroll Prompt Styles */
.hero-layout-split .scroll-prompt {
  color: #2e3a31;
}

.hero-layout-split .scroll-prompt:hover {
  color: #2e3a31;
}

@media (max-width: 991px) {
  .hero-layout-split {
    height: auto;
    min-height: 0;
    padding-top: 80px;
    padding-bottom: 40px;
  }
  .hero-split-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-desc-split {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-layout-split .scroll-prompt {
    display: none;
  }
}
/* ==========================================================================
   PAGE CONSEILS
========================================================================== */
.conseils-header {
  margin-bottom: 50px;
}

.conseils-desc {
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
}

.conseils-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px 35px;
}

@media (max-width: 992px) {
  .conseils-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px 35px;
  }
}
/* Styles pour la section avec une image unique */
.image-showcase-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.single-image-container {
  max-width: 900px;
  margin: 0 auto;
}

.single-image-container img {
  width: 100%;
  border-radius: 8px;
  display: block;
  box-shadow: none;
}

/* Ajustement du padding pour tablette et mobile */
@media (max-width: 991px) {
  .image-showcase-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.conseil-item h2 {
  font-family: "Anton", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.2rem);
  color: #2e3a31;
  line-height: 1.2;
  margin-bottom: 15px;
}

.conseil-item p {
  font-family: "Arvo", serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #2E3A31;
  margin-bottom: 0;
  max-width: 60ch;
}

@media (min-width: 992px) {
  .conseils-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.page-main-title {
  font-family: "Anton", sans-serif;
  font-size: clamp(2.7rem, 7vw, 4.5rem);
  color: #2e3a31;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 24px;
}

p + p {
  margin-top: 1em;
}

.page-secondary-title {
  font-family: "Anton", sans-serif;
  font-size: clamp(2.3rem, 5vw, 3.2rem);
  color: #2e3a31;
  line-height: 1.2;
  margin-bottom: 15px;
  font-weight: 600;
}

.hero-button-container {
  margin-top: 40px;
}

.duo-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 991px) {
  .duo-wrapper {
    grid-template-columns: 1fr;
  }
}
.single-image-container {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(58, 45, 37, 0.15);
}

.single-image-container img {
  display: block;
  width: 100%;
  height: auto;
}

#teasers-duo .teaser-content-wrapper {
  align-items: stretch;
}

.teaser-box {
  padding: 40px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.teaser-box .teaser-desc {
  flex-grow: 1;
}

.duo-conseils {
  background-color: #f6e3cb;
}

.duo-quiz {
  background-color: #ffbc47;
}

@media (min-width: 992px) {
  .teaser-box {
    padding: 60px 40px;
  }
}/*# sourceMappingURL=styles.css.map */