* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: #0f0f0f;
  color: white;
  font-family: Arial, sans-serif;
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: auto;
}
/* =========================================================
   HEADER
========================================================= */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: #4e7782;
  border-radius: 999px;
}
.header {
  width: 100%;

  background: #f1deb7;

  position: relative;

  z-index: 100;
}

.header-container {
  width: 100%;

  max-width: 1700px;

  height: 95px;

  margin: 0 auto;

  padding: 0 10px 0 5px;

  display: flex;

  align-items: center;

  justify-content: space-between;
}

/* =========================================================
   LOGOS
========================================================= */

.header-logos {
  display: flex;

  align-items: center;

  gap: 70px;

  flex-shrink: 0;

  margin-left: -80px;
}

.hotel-logo img {
  width: 95px;

  transform: scale(1.2);

  transform-origin: left center;

  display: block;
}

.restaurant-logo img {
  width: 260px;

  display: block;
}

/* =========================================================
   NAVIGATION
========================================================= */
.nav > ul {
  height: 100%;

  display: flex;

  align-items: center;
  gap: 55px;

  position: relative;
  top: 6px;
}
.nav {
  flex: 1;

  display: flex;

  justify-content: center;

  align-items: center;

  height: 100%;
}

.nav ul {
  display: flex;

  align-items: center;

  gap: 55px;

  list-style: none;
}

.nav li {
  position: relative;

  padding-bottom: 10px;

  display: flex;
  align-items: center;
}

.nav a {
  position: relative;

  text-decoration: none;

  color: #4e7782;

  font-family: "Cormorant Garamond", serif;

  font-size: 32px;

  font-weight: 700;
}

/* Hover underline */

.nav a::before {
  content: "";

  position: absolute;

  bottom: -6px;
  left: 0;

  width: 0;
  height: 1px;

  background: #4e7782;

  transition: 0.3s ease;
}

.nav a:hover::before {
  width: 100%;
}

/* =========================================================
   DROPDOWN
========================================================= */

.menu-item-has-children > a::after {
  content: "▼";

  font-size: 10px;

  margin-left: 8px;

  position: relative;

  top: -2px;
}

.nav ul ul {
  position: absolute;

  top: calc(100% + 8px);

  left: 50%;

  transform: translateX(-50%) translateY(10px);

  background: #f1deb7;

  min-width: 180px;

  padding: 12px 0;

  border-radius: 14px;

  display: flex;

  flex-direction: column;

  gap: 0;

  opacity: 0;

  visibility: hidden;

  transition: 0.3s ease;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);

  z-index: 1000;
}

.nav li:hover > ul {
  opacity: 1;

  visibility: visible;

  transform: translateX(-50%) translateY(0);
}

.nav ul ul li {
  width: 100%;
  padding: 0;
}

.nav ul ul a {
  display: block;
  padding: 12px 20px;

  text-align: center;

  font-size: 24px;

  width: 100%;
}

/* =========================================================
   BUTTON
========================================================= */

.header-btn {
  background: #4e7782;

  color: #f1deb7;

  padding: 16px 34px;

  border-radius: 999px;

  text-decoration: none;

  font-family: "Cinzel", serif;

  font-size: 22px;

  font-weight: 700;

  transition: 0.3s ease;

  flex-shrink: 0;
}

.header-btn:hover {
  transform: translateY(-2px);

  background: #5f8d99;
}

/* =========================================================
   LANGUES
========================================================= */
/* Conteneur */
.language-switcher {
  margin-left: 20px;
}

/* Bouton GTranslate */
.language-switcher .gt_switcher {
  box-shadow: none !important;
}

.language-switcher .gt_selected {
  background: transparent !important;
  border: 2px solid #4e7782 !important;
  border-radius: 999px !important;
  padding: 8px 14px !important;
  min-height: auto !important;
}

.language-switcher .gt_selected a {
  color: #4e7782 !important;
  font-family: "Cinzel", serif !important;
  font-size: 18px !important;
  font-weight: 700 !important;
}

/* Drapeau */
.language-switcher img {
  width: 24px !important;
  height: auto !important;
}

/* Liste déroulante */
.language-switcher .gt_languages {
  border-radius: 14px !important;
  overflow: hidden !important;
  border: 1px solid #d8c59c !important;
}
/* =========================================================
   ACTIONS HEADER
========================================================= */

.header-actions {
  display: flex;
  align-items: center;
  gap: 45px;
  flex-shrink: 0;
}
.mobile-reservation-btn {
  display: none;
}
/* =========================================================
   HERO SLIDER
========================================================= */

.hero-slider {
  position: relative;

  width: 100%;

  height: 100vh;

  overflow: hidden;
}

.swiper {
  width: 100%;

  height: 100%;
}

.swiper-wrapper {
  width: 100%;

  height: 100%;
}

.swiper-slide {
  position: relative;

  width: 100%;

  height: 100%;

  flex-shrink: 0;
}

.swiper-slide img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

/* Overlay sombre */

.slide-overlay {
  position: absolute;

  inset: 0;

  background: rgba(0, 0, 0, 0.45);

  z-index: 1;
}

/* =========================================================
   HERO CONTENT
========================================================= */

.hero-static-content {
  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  z-index: 5;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  gap: 40px;

  width: 100%;
}

.hero-logo {
  width: 950px;

  max-width: 90%;

  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.35));
}

/* =========================================================
   HERO BUTTON
========================================================= */

.hero-btn {
  background: #4e7782;

  color: #f1deb7;

  padding: 18px 42px;

  border-radius: 999px;

  text-decoration: none;

  font-family: "Cinzel", serif;

  font-size: 22px;

  font-weight: 700;

  transition: 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-3px);

  background: #5f8d99;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
/* =========================================================
   MOBILE MENU
========================================================= */

.menu-toggle {
  display: none;

  flex-direction: column;

  justify-content: center;

  gap: 6px;

  cursor: pointer;
}

.menu-toggle span {
  width: 30px;

  height: 2px;

  background: #4e7782;
}
/* =========================================================
   FOOTER
========================================================= */

.footer {
  background: #4e7782;

  padding: 20px 30px 10px;
}

/* =========================================================
   CONTENT
========================================================= */

.footer-content {
  display: grid;

  grid-template-columns: 1fr auto 1fr;

  align-items: start;

  gap: 20px;
}
.footer-left,
.footer-center,
.footer-right {
  padding-top: 10px;
}

/* =========================================================
   LEFT
========================================================= */

.footer-left {
  display: flex;

  justify-content: flex-start;
}

.footer-info {
  display: flex;

  flex-direction: column;

  align-items: center;
}

.footer-left h3,
.footer-right h3 {
  color: #f1deb7;

  font-family: "Cormorant Garamond", serif;

  font-size: 34px;

  font-weight: 700;

  margin-bottom: 28px;
}

.footer-info-grid {
  display: flex;

  gap: 40px;
}
.footer-info-grid p {
  white-space: pre-line;
}

.footer-left p,
.footer-left a {
  color: white;

  text-decoration: none;

  font-family: "Cormorant Garamond", serif;

  font-size: 18px;

  font-weight: 700;

  line-height: 1.45;

  margin-bottom: 12px;

  transition: 0.3s ease;
}

.footer-left a:hover {
  color: #f1deb7;
}
.footer-hours {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
}

.footer-hours br {
  content: "";
}

/* =========================================================
   CENTER
========================================================= */

.footer-center {
  display: flex;

  justify-content: center;

  align-items: center;

  transform: translateY(34px);
}

.footer-logo {
  width: 420px;

  transition: 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.03);
}

/* =========================================================
   RIGHT
========================================================= */

.footer-right {
  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: flex-start;

  padding-top: 0px;
}

.footer-socials {
  display: flex;

  justify-content: center;

  gap: 20px;
}

.footer-socials img {
  width: 78px;

  transition: 0.3s ease;
}

.footer-socials img:hover {
  transform: translateY(-4px);
}

/* =========================================================
   BOTTOM
========================================================= */

.footer-bottom {
  margin-top: 25px;

  padding-top: 18px;

  border-top: 1px solid rgba(255, 255, 255, 0.15);

  display: flex;

  justify-content: center;

  gap: 60px;
}

.footer-bottom a {
  color: white;

  text-decoration: none;

  font-family: "Cormorant Garamond", serif;

  font-size: 20px;

  font-weight: 700;

  transition: 0.3s ease;
}

.footer-bottom a:hover {
  color: #f1deb7;
}

/* =========================================================
   NOTRE HISTOIRE
========================================================= */

.story-section {
  background: #f1deb7;

  padding: 70px 50px;
}

.story-wrapper {
  max-width: 1500px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: 520px 1fr;

  align-items: start;

  gap: 50px;
}
.story-left {
  display: flex;

  flex-direction: column;

  gap: 30px;
}

/* =========================================================
   TITLE
========================================================= */
.story-title h2 {
  color: #4e7782;

  font-family: "Cormorant Garamond", serif;

  font-size: 68px;

  font-weight: 700;

  line-height: 1;

  margin-bottom: 30px;

  margin-left: -100px;

  white-space: nowrap;
}

/* =========================================================
   IMAGE
========================================================= */
.story-image img {
  width: 100%;

  height: 420px;

  object-fit: cover;
}

/* =========================================================
   CONTENT
========================================================= */

.story-content {
  color: #4e7782;

  padding-top: 10px;

  max-width: 900px;
}

.story-content p {
  font-family: "Cormorant Garamond", serif;

  font-size: 28px;

  line-height: 1.35;

  margin-bottom: 38px;
}

/* =========================================================
   BUTTON
========================================================= */

.story-btn {
  display: flex;

  align-items: center;

  justify-content: center;

  margin: 40px auto 0;

  background: #4e7782;

  color: #f1deb7;

  width: 360px;

  height: 78px;

  border-radius: 8px;

  text-decoration: none;

  font-family: "Cinzel", serif;

  font-size: 24px;

  font-weight: 700;

  transition: 0.3s ease;
}

.story-btn:hover {
  background: #5f8d99;

  transform: translateY(-2px);
}
/* =========================================================
   NOTRE CARTE
========================================================= */

.menu-section {
  background: #4e7782;

  padding: 90px 60px;

  border-top: 6px solid #f1deb7;
}

.menu-container {
  max-width: 1500px;

  margin: 0 auto;
}

/* =========================================================
   TITLE
========================================================= */

.menu-title {
  display: inline-block;

  color: #f1deb7;

  text-decoration: none;

  font-family: "Cinzel", serif;

  font-size: 62px;

  font-weight: 700;

  margin-bottom: 60px;

  margin-left: -100px;

  transition: 0.3s ease;
}
.menu-title:hover {
  opacity: 0.7;
}

/* =========================================================
   GRID
========================================================= */

.menu-grid {
  display: flex;

  justify-content: center;

  gap: 50px;

  margin-bottom: 90px;
}
/* =========================================================
   CARD TITLE
========================================================= */

.menu-card-title {
  font-family: "Cinzel", serif;
  color: #4f7a8b;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 40px;
  display: block;
  text-decoration: none;
}

.menu-card-title:hover {
  opacity: 0.7;
}

/* =========================================================
   ITEMS
========================================================= */
.menu-item {
  text-align: left;
  width: 100%;
  margin-bottom: 30px;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 20px;
}

.menu-item strong {
  color: #4f7a8b;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0;
}

.menu-extra {
  color: #4f7a8b;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 600;
}

.menu-item p {
  color: #4f7a8b;
  font-family: "Lato", sans-serif;
  font-size: 0.9rem;
  line-height: 1.4;
  margin-top: 6px;
}
.menu-item span {
  font-family: "Lato", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #4f7a8b;
  opacity: 0.7;
}

/* =========================================================
   CARD
========================================================= */

.menu-card {
  width: 340px;

  min-height: 260px;

  background: #f1deb7;

  border-radius: 14px;

  padding: 35px;

  display: flex;

  flex-direction: column;

  align-items: center;

  text-align: center;

  transition: 0.35s ease;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.menu-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.25);
}

/* =========================================================
   WEEKLY SPECIAL
========================================================= */

.weekly-header h3 {
  color: #f1deb7;

  font-family: "Cormorant Garamond", serif;

  font-size: 48px;

  margin-bottom: 40px;
}

/* =========================================================
   ITEMS
========================================================= */

.weekly-item {
  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 18px 0;

  border-bottom: 1px solid rgba(241, 222, 183, 0.15);
}

.weekly-item:last-child {
  border-bottom: none;
}

.dish {
  color: white;

  font-family: "Cormorant Garamond", serif;

  font-size: 30px;
}

.price {
  color: #f1deb7;

  font-family: "Cinzel", serif;

  font-size: 22px;

  font-weight: 700;
}
/* =========================================================
   GALERIE
========================================================= */

.gallery-section {
  background: #f1deb7;

  padding: 90px 60px;
}

.gallery-container {
  max-width: 1500px;

  margin: 0 auto;
}

/* =========================================================
   TITLE
========================================================= */

.gallery-title {
  display: inline-block;

  color: #4e7782;

  text-decoration: none;

  font-family: "Cormorant Garamond", serif;

  font-size: 62px;

  font-weight: 700;

  margin-bottom: 50px;

  margin-left: -100px;

  transition: 0.3s ease;
}

.gallery-title:hover {
  opacity: 0.7;
}

/* =========================================================
   GRID
========================================================= */

.gallery-grid {
  display: flex;

  justify-content: center;

  gap: 45px;

  flex-wrap: wrap;
}

/* =========================================================
   ITEM
========================================================= */

.gallery-item {
  position: relative;

  overflow: hidden;

  border-radius: 10px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);

  transition: 0.35s ease;
}

.gallery-item img {
  width: 430px;

  height: 290px;

  object-fit: cover;

  display: block;

  transition: 0.5s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
}

.gallery-item:hover img {
  transform: scale(1.05);
}
/* =========================================================
   AVIS CLIENTS
========================================================= */

.reviews-section {
  background: #4e7782;

  padding: 90px 60px;
}

.reviews-container {
  max-width: 1500px;

  margin: 0 auto;
}

/* =========================================================
   TITLE
========================================================= */

.reviews-title {
  color: #f1deb7;

  font-family: "Cormorant Garamond", serif;

  font-size: 62px;

  font-weight: 700;

  margin-bottom: 60px;

  margin-left: -100px;
}

/* =========================================================
   GRID
========================================================= */

.reviews-grid {
  display: flex;

  justify-content: center;

  gap: 45px;

  flex-wrap: wrap;
}

/* =========================================================
   CARD
========================================================= */

.review-card {
  width: 360px;
  min-height: 390px;
  max-height: 390px;
  height: 390px;

  background: #f1deb7;
  border-radius: 14px;

  padding: 40px;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  transition: 0.35s ease;
}

.review-card:hover {
  transform: translateY(-6px);
}

/* =========================================================
   STARS
========================================================= */

.review-stars {
  color: #4e7782;

  font-size: 28px;

  letter-spacing: 6px;

  margin-bottom: 25px;
}

/* =========================================================
   TEXT
========================================================= */

.review-text {
  color: #4f7a8b;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  line-height: 1.6;

  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =========================================================
   AUTHOR
========================================================= */

.review-author {
  color: #4e7782;

  font-family: "Cinzel", serif;

  font-size: 18px;

  font-weight: 700;
}
/* =========================================================
   ACCES & MAP
========================================================= */

.access-section {
  background: #f1deb7;

  padding: 100px 60px;
}

.access-container {
  max-width: 1500px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 80px;

  align-items: center;
}

/* =========================================================
   LEFT
========================================================= */

.access-title {
  color: #4e7782;

  font-family: "Cormorant Garamond", serif;

  font-size: 58px;

  font-weight: 700;

  margin-bottom: 40px;

  margin-left: -100px;
}

.access-address {
  display: inline-block;

  color: #4e7782;

  text-decoration: none;

  font-family: "Cormorant Garamond", serif;

  font-size: 34px;

  font-weight: 700;

  margin-bottom: 45px;

  transition: 0.3s ease;
}

.access-address:hover {
  opacity: 0.7;
}

.access-hours {
  display: flex;

  flex-direction: column;

  gap: 10px;

  margin-bottom: 40px;
}

.access-hours p {
  color: #4e7782;

  font-family: "Cormorant Garamond", serif;

  font-size: 30px;

  line-height: 1.4;
}

.access-hours span {
  color: #4e7782;

  font-family: "Cinzel", serif;

  font-size: 28px;

  font-weight: 700;
}

/* =========================================================
   BUTTON
========================================================= */

.access-btn {
  display: inline-flex;

  justify-content: center;

  align-items: center;

  width: 320px;

  height: 80px;

  background: #4e7782;

  color: #f1deb7;

  text-decoration: none;

  border-radius: 12px;

  font-family: "Cinzel", serif;

  font-size: 24px;

  font-weight: 700;

  transition: 0.3s ease;
}

.access-btn:hover {
  transform: translateY(-4px);

  background: #5f8d99;
}

/* =========================================================
   MAP
========================================================= */

.access-map {
  height: 420px;

  overflow: hidden;

  border-radius: 16px;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.access-map iframe {
  width: 100%;

  height: 100%;
}
/* =========================================================
   PAGE CARTE
========================================================= */

.menu-page-section {
  background: #f1deb7;

  padding: 40px 40px 60px;
}

/* =========================================================
   CONTAINER
========================================================= */

.menu-page-container {
  width: 90%;

  max-width: 1500px;

  margin: 0 auto;

  border: 5px solid #b38728;

  padding: 30px;
}

/* =========================================================
   INNER
========================================================= */

.menu-page-inner {
  border: 3px solid #b38728;

  padding: 40px 15px;
}

/* =========================================================
   TITLE
========================================================= */

.menu-page-title {
  color: #4e7782;

  text-align: center;

  font-family: "Cinzel", serif;

  font-size: 100px;

  font-weight: 600;

  margin-bottom: 40px;

  letter-spacing: 2px;
}

/* =========================================================
   CATEGORY
========================================================= */

.menu-category {
  margin-bottom: 45px;

  width: 100%;
}

.menu-category h2 {
  color: #4e7782;

  text-align: center;

  font-family: "Cormorant Garamond", serif;

  font-size: 42px;

  font-weight: 700;

  margin-bottom: 20px;
}

/* =========================================================
   ITEM
========================================================= */

.menu-item {
  position: relative;

  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 15px 0;

  border-bottom: none;
}

.menu-item::after {
  content: "";

  position: absolute;

  left: 100px;

  right: 100px;

  bottom: 0;

  height: 1px;

  background: rgba(179, 135, 40, 0.45);
}

/* =========================================================
   LEFT
========================================================= */

.menu-item-left {
  display: flex;

  flex-direction: column;

  width: 100%;

  padding-left: 100px;
}

.menu-item-name {
  color: #4e7782;

  font-family: "Lato", sans-serif;

  font-weight: 700;

  font-size: 20px;

  font-weight: 700;
}

.menu-item-desc {
  color: rgba(78, 119, 130, 0.7);

  font-family: "Lato", sans-serif;

  font-style: italic;

  font-weight: 600;

  font-size: 15px;

  margin-top: 5px;
}

/* =========================================================
   PRICE
========================================================= */

.menu-price {
  color: #4e7782;

  font-family: "Lato", sans-serif;

  font-size: 22px;

  font-weight: 700;

  min-width: 70px;

  text-align: right;

  padding-right: 100px;
}
.menu-supplement {
  margin-top: 8px;

  font-family: "Lato", sans-serif;

  font-size: 13px;

  font-weight: 700;

  color: #b38728;
}
.ardoise-prices {
  max-width: 600px;

  margin: 0 auto 80px;

  text-align: center;
}

.ardoise-prices p {
  display: flex;

  justify-content: space-between;

  margin-bottom: 15px;

  font-family: "Lato", sans-serif;

  font-weight: 700;

  color: #5c8391;
}
/* =========================================================
   PAGE CARTE
========================================================= */

.menu-page-section {
  background: #f1deb7;
  padding: 40px 40px 60px;
}

.menu-page-container {
  width: 90%;
  max-width: 1500px;
  margin: 0 auto;
  border: 5px solid #b38728;
  padding: 30px;
}

.menu-page-inner {
  border: 3px solid #b38728;
  padding: 60px 30px;
}

.menu-page-title {
  color: #4e7782;
  text-align: center;
  font-family: "Cinzel", serif;
  font-size: 100px;
  font-weight: 600;
  margin-bottom: 70px;
}

.menu-category {
  margin-bottom: 80px;
}

.menu-category h2 {
  color: #4e7782;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 58px;
  font-weight: 700;
  margin-bottom: 50px;
}

/* =========================================================
   CLASSES COMMUNES CARTE / ARDOISE / VINS / BOISSONS
========================================================= */

.carte-item {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
}

.carte-item::after {
  content: "";
  position: absolute;
  left: 100px;
  right: 100px;
  bottom: 0;
  height: 1px;
  background: rgba(179, 135, 40, 0.45);
}

.carte-item-left {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-left: 100px;
}

.carte-item-name {
  color: #4e7782;
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 700;
}

.carte-item-desc {
  color: rgba(78, 119, 130, 0.8);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 22px;
  margin-top: 6px;
}

.carte-price {
  color: #4e7782;
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 700;
  padding-right: 100px;
  min-width: 100px;
  text-align: right;
}
.carte-supplement {
  margin-top: 10px;
  color: #b38728;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 700;
}
/* =========================================================
   PAGE HISTOIRE
========================================================= */

.history-page {
  background: #e7d8b5;

  padding: 60px 0 100px;
}

.history-container {
  max-width: 900px;

  margin: 0 auto;

  padding: 0 30px;
}

.history-logo {
  text-align: center;

  margin-bottom: 20px;
}

.history-logo img {
  width: 220px;
}

.history-title {
  font-family: "Cinzel", serif;

  font-size: 100px;

  color: #5c8391;

  text-align: center;

  margin-bottom: 60px;

  white-space: nowrap;
}

.history-content {
  font-family: "Lato", sans-serif;

  color: #5c8391;

  line-height: 1.8;

  font-size: 16px;
}

.history-content p {
  margin-bottom: 18px;
}

.history-content h2 {
  font-family: "Cinzel", serif;

  color: #5c8391;

  font-size: 28px;

  margin: 40px 0 20px;
}

/* =========================================================
   PAGE EVENEMENTS
========================================================= */

.events-page {
  background: #e7d8b5;

  padding: 30px 0 0;
}

.events-container {
  width: 95%;

  margin: 0 auto;
}

.events-top-images {
  display: flex;

  gap: 20px;

  margin-bottom: 50px;
}

.events-top-images img {
  width: 50%;

  height: 500px;

  object-fit: cover;
}

.events-content {
  text-align: center;

  margin-bottom: 60px;
}

.events-content p {
  font-family: "Cinzel", serif;

  font-weight: 700;

  color: #5c8391;

  font-size: 28px;

  line-height: 1.5;

  margin-bottom: 10px;

  text-transform: uppercase;
}

.events-btn {
  display: inline-flex;

  justify-content: center;

  align-items: center;

  padding: 0 40px;

  width: auto;

  height: 70px;

  margin-top: 30px;

  background: #5c8391;

  color: #e7d8b5;

  text-decoration: none;

  font-family: "Cinzel", serif;

  transition: 0.3s;

  font-size: 28px;

  border-radius: 8px;

  /* letter-spacing: 1px; */

  transition: all 0.3s ease;
}

.events-btn:hover {
  background: #4f7480;

  opacity: 0.9;

  transform: scale(1.03);

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.events-bottom-image img {
  width: 98%;

  height: 500px;

  object-fit: cover;

  display: block;
}

/* =========================================================
   PAGE RESERVATION EVENEMENT
========================================================= */

.event-form-page {
  background: #e7d8b5;

  padding: 60px 0;
}

.event-form-container {
  max-width: 1100px;

  margin: 0 auto;

  padding: 0 30px;
}

.event-form-logo {
  text-align: center;

  margin-bottom: 20px;
}

.event-form-logo img {
  width: 220px;
}

.event-form-title {
  font-family: "Cinzel", serif;

  font-size: 70px;

  color: #5c8391;

  text-align: center;

  margin-bottom: 60px;
}

.form-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 40px;
}

.form-left,
.form-right {
  display: flex;

  flex-direction: column;

  gap: 20px;
}

.event-form input,
.event-form textarea {
  width: 100%;

  height: 50px;

  border: none;

  background: #fff;

  padding: 0 15px;

  font-family: "Lato", sans-serif;
}

.event-form textarea {
  height: 120px;

  padding-top: 15px;

  resize: none;
}

.upload-btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  width: 360px;

  height: 55px;

  white-space: nowrap;

  background: #5c8391;

  color: #e7d8b5;

  font-family: "Cinzel", serif;

  font-size: 18px;

  cursor: pointer;

  border-radius: 4px;

  transition: 0.3s;
}

.upload-btn:hover {
  opacity: 0.9;

  transform: scale(1.03);
}

.submit-btn {
  display: block;

  margin-left: auto;

  margin-top: 40px;

  width: 180px;

  height: 55px;

  border: none;

  background: #5c8391;

  color: #e7d8b5;

  font-family: "Cinzel", serif;

  font-size: 18px;

  cursor: pointer;

  border-radius: 4px;

  transition: 0.3s;
}

.submit-btn:hover {
  opacity: 0.9;

  transform: scale(1.03);
}

.event-success {
  margin-bottom: 30px;
  padding: 20px;
  text-align: center;
  border: 1px solid #5c8395;
  color: #5c8395;
  font-size: 18px;
}

/* =========================================================
   PAGE BAR
========================================================= */

.bar-page {
  background: #e7d8b5;
}

.bar-hero {
  position: relative;
}

.bar-hero img {
  width: 100%;

  height: 500px;

  object-fit: cover;

  display: block;
}

.bar-title {
  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  font-family: "Cinzel", serif;

  font-size: 100px;

  color: #5c8391;
}

.bar-content {
  padding: 40px 0 80px;
}

.bar-frame {
  width: calc(100% - 20px);

  margin: 0 auto;

  max-width: none;

  border: 5px solid #b38728;

  padding: 10px;
}

.bar-inner-frame {
  border: 3px solid #b38728;

  padding: 40px;
}

.bar-columns {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 60px;

  margin-bottom: 50px;

  padding: 40px 0 80px;

  text-align: center;
}

.bar-column h2,
.bar-sharing h2 {
  text-align: center;

  font-family: "Cinzel", serif;

  color: #5c8391;

  font-size: 48px;

  margin-bottom: 50px;
}

.bar-item {
  margin-bottom: 35px;

  text-align: center;
}

.bar-item strong {
  display: block;

  font-family: "Lato", sans-serif;

  font-size: 24px;

  font-weight: 700;

  color: #5c8391;
}

.bar-item span {
  display: block;

  text-align: center;

  font-family: "Lato", sans-serif;

  font-style: italic;

  font-size: 16px;

  color: #5c8391;
}

.bar-sharing {
  text-align: center;

  margin-top: 40px;
}

.sharing-grid {
  display: flex;

  justify-content: space-around;

  text-align: center;

  gap: 50px;

  font-family: "Lato", sans-serif;

  font-size: 24px;

  color: #5c8391;

  line-height: 1.6;
}

/* =========================================================
   GALERIE
========================================================= */

.gallery-page {
  background: #f1deb7;
  padding: 60px 40px;
}

.gallery-container {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
}

/* =========================================================
   GRID
========================================================= */

.gallery-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

  gap: 20px;
}

.gallery-item {
  overflow: hidden;

  border-radius: 8px;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.gallery-item img {
  width: 100%;

  height: 320px;

  object-fit: cover;

  display: block;

  transition: 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}
.ardoise-period {
  text-align: center;
  font-size: 18px;
  margin-bottom: 50px;
  color: #567b8d;
  font-style: italic;
}
.gallery-image {
  cursor: pointer;
}

.custom-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  padding: 40px;
}

.custom-lightbox.active {
  display: flex;
}

.lightbox-image {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 50px;
  cursor: pointer;
  line-height: 1;
}
.sub-menu.open {
  display: flex !important;
  flex-direction: column;

  gap: 15px;

  margin-top: 15px;
}
.mobile-reservation-btn {
  display: none;
}
.menu-close {
  display: none;
}

.nav.active .menu-close {
  display: block;
}
/* =========================================================
   TABLETTE
========================================================= */

@media screen and (max-width: 1024px) {
  /* HEADER */

  .restaurant-logo img {
    width: 140px;
  }

  .hotel-logo img {
    width: 35px;
  }
  .header-container {
    padding: 0 20px;
  }
  .language-switcher .gt_selected {
    padding: 5px 8px !important;
  }

  .language-switcher img {
    width: 16px !important;
  }
  .header-btn {
    display: none;
  }

  .header-right {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .menu-toggle {
    display: flex;
    cursor: pointer;
    z-index: 10001;
  }

  .nav.active .menu-close {
    display: block;
  }

  /* MENU FULLSCREEN */

  .nav {
    position: fixed;
    inset: 0;

    background: #f1deb7;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    opacity: 0;
    visibility: hidden;

    transition: 0.3s;

    z-index: 10000;
  }

  .nav.active {
    opacity: 1;
    visibility: visible;
  }

  .menu-close {
    position: absolute;
    top: 25px;
    right: 25px;

    background: none;
    border: none;

    color: #4e7782;

    font-size: 40px;

    cursor: pointer;
  }

  .nav > ul {
    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 30px;

    margin: 0;
    padding: 0;

    list-style: none;
  }

  .nav > ul > li > a {
    font-family: "Cinzel", serif;
    font-size: 38px;
    color: #4e7782;
  }

  .sub-menu {
    display: none !important;

    margin-top: 15px;
    padding: 0;

    list-style: none;
  }

  .sub-menu.open {
    display: flex !important;
    flex-direction: column;

    align-items: center;

    margin-top: 15px;

    gap: 12px;
  }
  .nav li {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .sub-menu li {
    width: auto;
  }

  .sub-menu a {
    font-size: 22px !important;

    opacity: 0.8;

    padding: 0;
  }

  .sub-menu a {
    font-size: 24px !important;
    color: #4e7782;
  }

  .mobile-reservation-btn {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 260px;
    height: 60px;

    margin-top: 40px;

    background: #4e7782;
    color: #f1deb7;

    border-radius: 999px;

    text-decoration: none;

    font-family: "Cinzel", serif;
    font-size: 20px;
  }
  .story-title,
  .menu-title,
  .gallery-title,
  .reviews-title,
  .access-title {
    width: 100%;
    overflow: hidden;
  }

  .story-title h2,
  .menu-title,
  .gallery-title,
  .reviews-title,
  .access-title {
    margin: 0 auto;

    text-align: center;

    font-size: 72px;

    line-height: 1.1;

    white-space: normal;

    transform: none;
  }

  /* TABLETTE */

  .hero-logo {
    width: 500px;
  }

  .story-wrapper,
  .access-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 768px) {
  section {
    overflow: hidden;
  }

  /* ======================
     HEADER
  ====================== */

  .header {
    height: 80px;
  }

  .header-container {
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 20px;
  }

  .header-logos {
    gap: 10px;
    margin: 0;
  }

  .hotel-logo img {
    width: 22px;
  }

  .restaurant-logo img {
    width: 105px;
  }

  .header-btn {
    display: none;
  }

  .language-switcher {
    margin-left: 0;
  }
  .menu-toggle {
    margin-left: 10px;
  }
  .language-switcher .gt_selected {
    padding: 6px 10px !important;
  }

  .language-switcher img {
    width: 18px !important;
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  /* ======================
     MENU BURGER
  ====================== */

  .nav {
    position: fixed;
    inset: 0;

    background: #f1deb7;

    display: flex;
    justify-content: center;
    align-items: center;

    transform: translateX(100%);
    transition: transform 0.35s ease;

    z-index: 9999;
  }

  .nav.active {
    transform: translateX(0);
  }

  .nav ul {
    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 40px;

    width: 100%;
    margin: 0;
    padding: 0;

    list-style: none;
  }

  .nav li {
    width: auto;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nav a {
    font-size: 34px;
    color: #4e7782;
    text-decoration: none;
  }

  /* ======================
     HERO
  ====================== */

  .hero-logo {
    width: 280px;
  }

  .hero-btn {
    font-size: 16px;
    padding: 14px 24px;
  }

  /* ======================
     TITRES
  ====================== */
  .story-title,
  .menu-title,
  .gallery-title,
  .reviews-title,
  .access-title {
    width: 100%;
    overflow: hidden;
  }
  .story-title h2,
  .menu-title,
  .gallery-title,
  .reviews-title,
  .access-title {
    font-size: 52px;
    line-height: 1.1;

    white-space: normal !important;

    word-break: break-word;

    text-align: center;

    margin: 0 auto;
  }

  /* ======================
     STORY
  ====================== */

  .story-section,
  .menu-section,
  .gallery-section,
  .reviews-section,
  .access-section {
    padding: 60px 20px;
  }

  .story-image img {
    height: 260px;
  }

  .story-content p {
    font-size: 20px;
    text-align: center;
  }

  .story-btn {
    width: 100%;
    max-width: 320px;
  }

  /* ======================
     MENU
  ====================== */

  .menu-grid {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .menu-card {
    width: 100%;
    max-width: 320px;
  }

  /* ======================
     GALERIE
  ====================== */

  .gallery-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
  }

  /* ======================
     AVIS
  ====================== */

  .review-card {
    width: 100%;
    max-width: 320px;
    height: auto;
    min-height: auto;
  }

  .review-text {
    font-size: 16px;
  }

  /* ======================
     ACCÈS
  ====================== */

  .access-address {
    font-size: 24px;
  }

  .access-hours p,
  .access-hours span {
    font-size: 22px;
  }

  .access-map {
    height: 300px;
  }

  .access-btn {
    width: 100%;
    max-width: 320px;
  }

  /* ======================
   PAGE CARTE MOBILE
====================== */

  .menu-page-section {
    padding: 20px 10px;
  }

  .menu-page-container {
    width: 100%;
    padding: 10px;
  }

  .menu-page-inner {
    padding: 20px 10px;
  }

  .menu-page-title {
    font-size: 52px;
    margin-bottom: 30px;
  }

  .menu-category {
    margin-bottom: 40px;
  }

  .menu-category h2 {
    font-size: 32px;
    margin-bottom: 25px;
  }

  .carte-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;

    padding: 20px 0;
  }

  .carte-item::after {
    left: 0;
    right: 0;
  }

  .carte-item-left {
    padding-left: 0;
    width: 100%;
  }

  .carte-item-name {
    font-size: 24px;
    line-height: 1.2;
  }

  .carte-item-desc {
    font-size: 16px;
    margin-top: 5px;
  }

  .carte-price {
    padding-right: 0;

    min-width: auto;

    width: 100%;

    text-align: left;

    font-size: 24px;
  }

  /* ======================
     FOOTER
  ====================== */

  .footer {
    padding: 50px 20px 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .footer-logo {
    width: 220px;
  }

  .footer-info-grid {
    flex-direction: column;
    gap: 15px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .footer-bottom a {
    font-size: 18px;
  }
  .footer-socials img {
    width: 50px;
  }
  .footer-left h3,
  .footer-right h3 {
    font-size: 32px;
  }

  .footer-left p,
  .footer-left a {
    font-size: 22px;
  }
}
#adminmenu .wp-menu-image {
  margin-right: 5px;
}

#adminmenu li a {
  font-size: 15px;
  font-weight: 500;
}

#adminmenu .wp-menu-name {
  padding-left: 5px;
}
.legal-page {
  padding: 120px 20px;
  background: #f1deb7;
}

.legal-page .container {
  max-width: 1000px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: 72px;
  color: #4e7782;
  margin-bottom: 50px;
}

.legal-page h2 {
  font-size: 32px;
  color: #4e7782;
  margin-top: 40px;
  margin-bottom: 15px;
}

.legal-page p {
  font-size: 20px;
  line-height: 1.8;
  color: #4e7782;
  margin-bottom: 20px;
}
