@charset "UTF-8";
body {
  font-family: "Cabin", sans-serif;
  line-height: 1.625;
  color: #383838;
}

.h1,
h1 {
  font-size: 2.5rem;
  font-weight: 600;
}

.h2,
h2 {
  font-size: 2rem;
  font-weight: 500;
}

.h3,
h3 {
  font-size: 1.5rem;
  font-weight: 500;
}

.text-deco {
  font-family: "Qwitcher Grypen", sans-serif;
}

.slogan-font {
  font-family: "Fleur De Leah", cursive;
  font-weight: 400;
}

.header {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(54, 54, 54, 0.5), rgba(28, 28, 28, 0.4)), url("../img/image_resto.jpg") center center/cover no-repeat;
  color: #ffffff;
  padding: 1rem;
  min-height: 50vh;
}

.topbar {
  display: flex;
  position: relative;
  isolation: isolate;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  text-align: center;
  justify-content: center;
  z-index: 0;
}

.topbar::before {
  content: "";
  position: absolute;
  top: 60%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  z-index: -1;
}

.logo {
  margin-bottom: 1rem;
  position: relative;
  z-index: 3;
  /* Le masque arrondi pour que la ligne suive le cercle */
}
.logo a {
  display: block;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #8c6f3f;
  background-color: #ffffff;
}
.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.logo::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 50%;
  width: 160px;
  height: 160px;
  background-color: transparent;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 2;
  flex-wrap: nowrap;
}

.menu-item {
  position: relative;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  margin: 0 1rem;
  z-index: 3;
}
.menu-item:hover {
  color: #8c6f3f;
}

.menu-item:nth-of-type(3) {
  margin-left: auto;
}

.baseline {
  margin-top: 2rem;
  text-align: center;
  color: #ffffff;
}
.baseline .welcome {
  font-size: 1.2rem;
  letter-spacing: 2px;
}
.baseline .restaurant-name {
  font-size: 4rem;
  font-weight: 500;
  display: block;
  margin: 0.5rem 0;
  font-family: "Fleur De Leah", cursive;
}
.baseline .slogan {
  font-size: 1.2rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .header {
    min-height: 30vh;
    background-position: center top;
  }
  .topbar {
    padding: 1rem 0;
    height: auto;
  }
  .topbar::before {
    top: 70%;
  }
  .menu-item {
    display: none;
  }
  .logo a {
    width: 100px;
    height: 100px;
  }
  .baseline {
    margin-top: 1.5rem;
  }
  .baseline .welcome {
    font-size: 1rem;
  }
  .baseline .restaurant-name {
    font-size: 2.2rem;
  }
  .baseline .slogan {
    font-size: 1rem;
  }
}
.footer {
  background: #383838;
  color: #dcdcdc;
  padding: 70px 0 40px;
  font-size: 1rem;
  line-height: 1.7;
  /* Liens légaux */
}
.footer .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer .footer-columns {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer .footer-column {
  flex: 1;
  margin: 20px;
}
.footer .footer-column p,
.footer .footer-column ul,
.footer .footer-column address {
  color: #cfcfcf;
  margin: 0;
}
.footer .footer-column ul {
  list-style: none;
  padding: 0;
}
.footer .footer-column li {
  margin-bottom: 0.5rem;
}
.footer .footer-column a {
  color: #8c6f3f;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer .footer-column a:hover {
  color: #8e6f45;
}
.footer .footer-title {
  font-size: 1.3rem;
  color: #8c6f3f;
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.footer .footer-links {
  list-style: none;
  padding: 0;
}
.footer .footer-links li {
  margin-bottom: 8px;
}
.footer .footer-links li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}
.footer .footer-links li a:hover {
  text-decoration: underline;
  opacity: 0.8;
}
.footer .footer-credits {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgb(81.5, 81.5, 81.5);
  color: #6f6f6f;
  font-size: 0.9rem;
}

/* ------------------------------
   RESPONSIVE MOBILE
------------------------------ */
@media (max-width: 768px) {
  .footer {
    padding: 50px 0 30px;
  }
  .footer .footer-columns {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .footer .footer-column {
    margin-bottom: 20px;
    text-align: center;
  }
  .footer .footer-column a {
    font-size: 1rem;
  }
  .footer .footer-title {
    font-size: 1.2rem;
  }
  .footer .footer-credits {
    font-size: 0.85rem;
    padding-top: 20px;
  }
}
.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 2rem;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 10;
  position: absolute;
  right: 1.5rem;
  top: 12%;
  transform: translateY(-50%);
}
.burger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: 0.3s;
}
.burger.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.9);
  padding: 1.5rem;
  text-align: center;
  gap: 1rem;
}
.mobile-nav a {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 1.2rem;
}
.mobile-nav.open {
  display: flex;
}

@media (max-width: 768px) {
  .burger {
    display: flex;
  }
  .menu-item {
    display: none;
  }
}
.menu-diamond-layout {
  position: relative;
  width: 100%;
  padding: 80px 0;
  margin-left: 1rem;
}

/* Losange décoratif */
.menu-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 35vw;
  height: 35vw;
  max-width: 500px;
  max-height: 500px;
  border: 0.25rem solid #8c6f3f;
  background: rgba(176, 141, 87, 0.05);
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: 0;
}

/* Conteneur flex */
.menu-summary {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  z-index: 1;
}

.menu-summary > * {
  flex: 0 0 calc(25% - 20px);
  height: 200px;
}

/* Items */
.menu-summary-item {
  margin-bottom: 120px;
  padding: 1.5rem;
  padding-left: 190px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  min-height: 150px;
  position: relative;
}

/* Items pairs → alignés à droite */
.menu-summary-item:nth-child(even) {
  text-align: right;
  padding-left: 1.5rem;
  padding-right: 190px;
}

/* Image */
.menu-summary-img {
  width: 160px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  object-fit: cover;
  padding: 0.5rem;
}

.menu-summary-item:nth-child(even) .menu-summary-img {
  left: auto;
  right: 0;
}

/* Prix */
.menu-summary-price {
  padding-top: 1.5rem;
  width: 85px;
  font-weight: bold;
}

.menu-summary-item:nth-child(even) .menu-summary-price {
  margin-left: auto;
}

@media (max-width: 768px) {
  .menu-center {
    display: none;
  }
  .menu-diamond-layout {
    margin: 0;
  }
  .menu-summary {
    flex-direction: column;
    gap: 60px;
  }
  .menu-summary-item {
    position: relative;
    padding: 1.5rem;
    padding-top: 140px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    text-align: center;
  }
  .menu-summary-item:nth-child(even) {
    text-align: center;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .menu-summary-img {
    position: absolute;
    top: 0px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  .menu-summary-price {
    margin-top: 1rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.5rem;
    font-weight: bold;
  }
}
.home-section {
  padding-top: 9px;
  background: top 95px right 0px url(../img/oranges.jpg) no-repeat fixed, top 640px left 0px url(../img/spices.jpg) no-repeat fixed;
}
.home-section .container-small,
.home-section .container {
  margin: 0 auto;
  padding: 0 20px;
}
.home-section .container-small {
  max-width: 960px;
  position: relative;
}
.home-section .block {
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.home-section .block-left {
  flex-direction: row;
}
.home-section .block-right {
  flex-direction: row-reverse;
}
.home-section .block-img {
  border: 1px solid #8c6f3f;
  max-width: 350px;
  margin: -40px auto;
  position: relative;
  z-index: 5;
}
.home-section .block-img::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100%;
  height: 100%;
  border: 3px solid #8c6f3f;
  z-index: -1;
}
.home-section .block-img img {
  display: block;
  width: auto;
  height: auto;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.home-section .block-body {
  margin-top: 1rem;
}
.home-section .block-center {
  text-align: center;
}
.home-section .block-center .block-body {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.home-section .title {
  font-size: 1.75rem;
  line-height: 1.1;
  letter-spacing: 2px;
  color: #000;
  font-weight: bold;
  text-transform: uppercase;
  margin: 1rem 0 0 0;
}
.home-section .title span {
  font-family: "Qwitcher Grypen", sans-serif;
  color: #8c6f3f;
  font-size: 2.5rem;
  display: block;
  text-transform: none;
}
.home-section .title::before {
  content: "";
  display: inline-block;
  height: 2px;
  width: 24px;
  background: #8c6f3f;
  margin-bottom: 0.5rem;
}
.home-section .more {
  color: #8c6f3f;
}
.home-section .more a {
  color: #8c6f3f;
  text-decoration: none;
  position: relative;
}
.home-section .more a:hover {
  text-decoration: underline;
}
.home-section .more a::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 9px;
  margin-left: 0.7em;
  background: url(img/arrow-right.svg) no-repeat center center;
  transition: transform 0.3s;
}
.home-section .more a:hover::after {
  transform: translateX(3px);
}
.home-section .list-menu {
  font-weight: 600;
  color: #383838;
  text-align: center;
  text-transform: uppercase;
  margin: 40px 0;
}
.home-section .list-menu a {
  display: inline-block;
  margin: 0 5px;
  position: relative;
  color: inherit;
  text-decoration: none;
}
.home-section .list-menu a::after {
  content: "";
  display: block;
  height: 1px;
  background: #383838;
  position: absolute;
  bottom: 0.25rem;
  right: 0;
  left: 0;
  opacity: 0;
  transition: 0.3s;
}
.home-section .list-menu a.active::after, .home-section .list-menu a:hover::after {
  bottom: 0;
  opacity: 1;
}
.home-section .block-chief {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-left: 1.5rem;
}
.home-section .block-chief .block-img {
  max-width: 350px;
}
.home-section .block-chief .block-img img {
  width: 100%;
}
.home-section .block-chief .recipe-link {
  color: #8c6f3f;
  font-weight: 600;
}
.home-section .block-chief .more a {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.5rem 1rem;
  color: #ffffff;
  background: #8c6f3f;
  border-radius: 8px;
  transition: 0.3s;
}
.home-section .block-chief .more a:hover {
  background: #6f6f6f;
}

@media (max-width: 768px) {
  .home-section .block {
    flex-direction: column !important;
    text-align: center;
  }
  .home-section .block .block-img,
  .home-section .block .block-body {
    width: 100%;
  }
  .home-section .block-img {
    max-width: 100%;
    margin: 0 auto;
  }
  .home-section .block-img img {
    width: 100%;
    height: auto;
  }
  .home-section .menu-summary {
    grid-template-columns: 1fr;
  }
  .home-section .block-chief {
    flex-direction: column;
    margin: 0.5rem;
  }
}
.reservation-page {
  padding: 100px 0;
}

.reservation-title {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}
.reservation-title span {
  color: #8c6f3f;
  font-weight: bold;
}

.reservation-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 1.1rem;
}

.reservation-form {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.form-grid input,
.form-grid select {
  padding: 14px;
  border-radius: 0.5rem;
  border: 1px solid #6f6f6f;
  font-size: 1rem;
  background: #ffffff;
}

.reservation-message {
  width: 100%;
  min-height: 140px;
  padding: 14px;
  border-radius: 0.5rem;
  border: 1px solid #6f6f6f;
  font-size: 1rem;
  resize: vertical;
  box-sizing: border-box;
}

.reservation-btn {
  padding: 16px 0;
  background: #8c6f3f;
  color: #ffffff;
  border-radius: 0.5rem;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
.reservation-btn:hover {
  background: #6f6f6f;
}

@media (max-width: 768px) {
  .reservation-page {
    padding-left: 20px;
    padding-right: 20px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .reservation-title {
    font-size: 2rem;
  }
}
.event {
  padding: 80px 0;
}

.container-newsletter {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 1.5rem;
  background: #faf7f2;
}

.event .title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.event .title span {
  color: #8c6f3f;
  font-weight: bold;
}

.event > p {
  color: #6f6f6f;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

/* Liste des événements */
.event-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 40px;
}

.event-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  padding: 18px 22px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.event-date {
  font-size: 1.1rem;
  color: #8c6f3f;
  font-weight: bold;
}
.event-date strong {
  font-size: 1.6rem;
  display: block;
  line-height: 1;
}

.event-list-item p {
  margin: 0;
  font-size: 1.1rem;
  color: #333;
}

/* Texte newsletter */
.newsletter-text {
  margin-top: 20px;
  margin-bottom: 20px;
  color: #6f6f6f;
  font-size: 1.1rem;
}

/* Formulaire newsletter */
.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.newsletter-form input {
  padding: 14px 0;
  width: 300px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 1rem;
}

.newsletter-btn {
  padding: 1rem 1.5rem;
  background: #8c6f3f;
  color: #ffffff;
  border-radius: 0.5rem;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
.newsletter-btn:hover {
  background: #8e6f45;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 768px) {
  .event {
    padding: 50px 0;
  }
  .event-list-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .newsletter-form {
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    padding: 0 10px;
  }
  .newsletter-form input,
  .newsletter-btn {
    width: 100%;
  }
}
.map-section {
  margin-top: 60px;
}

.map-wrapper {
  width: 100%;
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  margin-bottom: 60px;
}

.map {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .map-wrapper {
    height: 300px;
    margin-bottom: 40px;
  }
}
.page-feedback {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #faf7f2;
  padding: 20px;
}
.page-feedback .feedback-container {
  background: #ffffff;
  padding: 40px 50px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  max-width: 500px;
  width: 100%;
  animation: fadeIn 0.6s ease-out;
}
.page-feedback .feedback-container h1 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #383838;
}
.page-feedback .feedback-container p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #6f6f6f;
}
.page-feedback .feedback-container .btn-retour {
  display: inline-block;
  padding: 12px 25px;
  background: #8c6f3f;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s ease;
}
.page-feedback .feedback-container .btn-retour:hover {
  background: #8e6f45;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 600px) {
  .page-feedback {
    padding: 10px;
  }
  .page-feedback .feedback-container {
    padding: 25px 20px;
    border-radius: 10px;
  }
  .page-feedback .feedback-container h1 {
    font-size: 1.6rem;
  }
  .page-feedback .feedback-container p {
    font-size: 1rem;
  }
  .page-feedback .feedback-container .btn-retour {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}/*# sourceMappingURL=style.css.map */