/* Variables de base */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

html {
  background-color: #f5e0c5;
  scroll-behavior: smooth;
}

/* Styles globaux */
body {
  font-size: 16px;
  font-family: "Exo 2", sans-serif;
  color: #311806;
  background-color: #f1faee;
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, rgb(245, 224, 197) 0%, rgb(237, 194, 140) 100%);
}

section .section-wrapper {
  padding: 0 calc((100vw - 700px) / 2);
}
section .section-title {
  font-family: "Josefin Sans", sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: #8B4512;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.section-container {
  display: none;
}

.section-active {
  display: block;
}

a {
  text-decoration: none;
}

.separator {
  height: 4px;
  background-color: #8B4512;
  width: 100%;
  margin-bottom: 40px;
}

main {
  margin-top: 50px;
  height: calc(100% - 50px);
  overflow-y: hidden;
}

footer {
  border-top: 2px solid #8B4512;
  height: 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
footer p {
  color: #311806 !important;
  font-size: clamp(0.9rem, 3vw, 1.2rem);
}
footer a {
  color: #311806 !important;
}

/**************** Card ***************/
.card-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 16px;
}

.card {
  border-radius: 10px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.card-toggle-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 14px;
  height: 19px;
}

.card-header {
  height: clamp(2rem, 5vw, 2.8rem);
  color: #8B4512;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 14px;
  position: relative;
}

.card-title {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  text-transform: uppercase;
  user-select: none;
}

.card-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-out;
  padding: 0 14px;
}

.card.active .card-content {
  max-height: 900px;
  opacity: 1;
}

.card-toggle-btn > svg {
  transition: transform 0.3s;
}

.card.active .card-toggle-btn > svg {
  transform: rotate(90deg);
}

/**************** Barre de navigation ***************/
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  padding: 0 calc((100vw - 700px) / 2);
  height: 50px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #f5e0c5;
  border-bottom: 2px solid #8B4512;
}
nav img {
  height: 38px;
}
nav a {
  text-transform: uppercase;
  font-family: "Exo 2";
  font-weight: 700;
  color: #8B4512;
  font-size: clamp(0.9rem, 3vw, 1.2rem);
}

/**************** Hero ***************/
.section-hero {
  background-color: #a2a2a2;
  position: relative;
}

.hero-background-container {
  width: 100%;
}
.hero-background-container img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 430px;
  object-fit: cover;
}
.hero-background-container .hero-background-layer {
  position: absolute;
  z-index: 2;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
}

.hero-content-container {
  position: absolute;
  z-index: 3;
  padding: 0 calc((100vw - 700px) / 2);
  bottom: 60px;
  left: 30px;
  right: 30px;
  font-family: "Josefin Sans", sans-serif;
}
.hero-content-container h1, .hero-content-container h4, .hero-content-container b {
  color: #F5E0C5;
  font-weight: 300;
  text-transform: uppercase;
}
.hero-content-container b {
  color: #C09A6B;
}
.hero-content-container h1 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  margin-bottom: 0;
}
.hero-content-container h4 {
  font-size: clamp(0.9rem, 3vw, 1.2rem);
  margin-bottom: 14px;
}

/**************** Hero description ***************/
.hero-description-container {
  padding: 40px 30px;
}
.hero-description-container h3 {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  text-align: justify;
  color: #311806;
  font-weight: 300;
}
.hero-description-container h3 b {
  color: #8B4512;
}

/****************** Carte ******************/
.section-carte {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 40px !important;
}

.card-carte {
  width: calc(100% - 60px);
  min-height: clamp(2rem, 5vw, 2.8rem);
  min-width: 320px;
  overflow-x: auto;
}

.card-test {
  height: 300px;
  width: 20px;
  background-color: salmon;
}

ul {
  list-style: none;
  padding-left: 0;
  margin-top: 0;
}

li {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 4px;
  padding: 5px 0;
}

.carte-separator {
  flex: 1;
  border-top: 1px dashed #311806;
  opacity: 0.4;
  padding-bottom: 2px;
}

.food {
  font-size: clamp(1rem, 3vw, 1.3rem);
  font-weight: 500;
}

.details {
  font-size: clamp(0.7rem, 2.3vw, 0.9rem);
  font-style: italic;
  color: #656565;
  padding-left: 2px;
}

.price {
  font-weight: 400;
  font-size: clamp(1rem, 3vw, 1.3rem);
}

.info {
  font-weight: 600;
  font-size: clamp(1rem, 3vw, 1.3rem);
  padding-bottom: 4px;
}

.adding {
  padding-top: 20px;
}

.adding-description {
  margin-top: -6px;
}

/****************** Horaires ******************/
.section-horaires {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 40px !important;
}

.card-day-container {
  cursor: default;
  min-height: 30px;
  width: 80%;
  min-width: 270px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: clamp(0.7rem, 2.3vw, 0.9rem) clamp(1rem, 3vw, 1.3rem);
  margin-bottom: clamp(1rem, 3vw, 1.3rem);
}

.card-day-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-time-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.card-day {
  color: #311806;
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  font-family: "Exo 2", sans-serif;
  font-weight: 400;
}

.card-time {
  color: #8B4512;
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  text-align: end;
}

/****************** Adresse ******************/
.section-adresse {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 40px !important;
}
.section-adresse h4 {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: #311806;
  font-weight: 500;
  margin-bottom: 20px;
}

/****************** Nos Services ******************/
.section-services {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #3d3128;
}

.services-container {
  width: 100%;
  position: relative;
  max-height: 350px;
}
.services-container .services-image-container {
  margin-bottom: -3px;
  min-height: 280px;
}
.services-container img {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
  min-height: 280px;
  max-height: 350px;
  object-fit: cover;
}
.services-container .services-content-container {
  position: absolute;
  z-index: 2;
  inset: 0;
}
.services-container .services-content-container h2 {
  padding-top: 30px;
  padding-bottom: clamp(1.1rem, 3vw, 1.4rem);
  color: #DECBB4;
}
.services-container .services-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
}
.services-container .services-list .services-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 12px 7px;
  min-width: 20%;
  border-radius: 10px;
  background-color: rgba(245, 224, 197, 0.9);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}
.services-container .services-list h5 {
  text-align: center;
  font-size: clamp(1.1rem, 3vw, 1.4rem);
}

/****************** Contact ******************/
.section-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 80px;
}

.card-contact {
  margin-top: 20px;
  max-width: 200px;
  padding: clamp(1rem, 3vw, 1.3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.9rem, 3vw, 1.2rem);
}
.card-contact .contact-text {
  font-size: clamp(1rem, 3vw, 1.3rem);
  text-align: center;
  color: #311806;
}

/****************** Legals ******************/
.section-legals {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
}
.section-legals h2 {
  margin: 20px 0 !important;
  text-align: center;
}
.section-legals .legals-content {
  padding: 0 30px;
}
.section-legals .legals-content .legals-title {
  margin-bottom: 10px;
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: #8B4512;
  font-weight: 500;
}
.section-legals .legals-content .legals-article {
  margin-bottom: 30px;
  font-size: clamp(1rem, 3vw, 1.3rem);
  color: #311806;
  text-align: justify;
}

/*# sourceMappingURL=main.css.map */
