/* bar burger menu */
/* @import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.css); */
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css);

@font-face {
  font-family: 'Avenir';
  src: url('../assets/fonts/Avenir-Roman.woff2') format('woff2'),
    url('../assets/fonts/Avenir-Roman.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Kindergarten';
  src: url('../assets/fonts/Kindergarten.woff2') format('woff2'),
    url('../assets/fonts/Kindergarten.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Goodgirl';
  src: url('../assets/fonts/GoodGirl.woff2') format('woff2'),
    url('../assets/fonts/Goodgirl.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Base & Reset */
:root {
  /* Colors */
  --color-primary: #262626;
  --color-beige: #f2e9da;
  --color-red: #d53635;
  --color-green: #067b48;
  --color-pink: #e181b3;
  --color-yellow: #ecb53b;
  --color-text: #262626;
  --color-text-light: #f2e9da;

  /* Spacing - Using rem units for better scaling */
  --space-xs: clamp(0.5rem, 0.5vw, 0.75rem);
  --space-sm: clamp(1rem, 1vw, 1.5rem);
  --space-md: clamp(1.5rem, 2vw, 2.5rem);
  --space-lg: clamp(2rem, 4vw, 4rem);
  --space-xl: clamp(3rem, 6vw, 6rem);

  /* Typography */
  --font-size-base: clamp(1rem, 1vw + 0.5rem, 1.3rem);
  --font-size-lg: clamp(1.5rem, 2vw + 1rem, 2.5rem);
  --font-size-xl: clamp(2rem, 3vw + 1rem, 3.5rem);
  --font-size-xxl: clamp(2.7rem, 3.2vw + 1rem, 3.8rem);

  /* Fonts */
  --font-family-base: 'Avenir', system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
  --font-family-title: 'Kindergarten', sans-serif;
  --font-family-logo: 'Goodgirl', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-beige);
  font-weight: 300;
  overflow-x: hidden;
}

p {
  font-weight: 300;
}

a {
  text-decoration: none;
}

.section__title,
.reservation__title,
.privatisation__title {
  font-family: var(--font-family-title);
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-md);
  line-height: 1.2;
  font-weight: normal;
  transform: rotate(-3deg);
}

.section__hours {
  font-family: var(--font-family-title);
  font-size: clamp(1.4rem, 1.6vw + 0.5rem, 1.8rem);
  text-align: center;
  margin: var(--space-md) 0;
}

.section__hours-line1 {
  display: inline-block;
  white-space: nowrap;
}

.section__hours-line2 {
  display: inline-block;
}

.section__text--highlight {
  font-family: var(--font-family-title);
  font-weight: normal;
  font-size: 1.2em;
  color: var(--color-primary);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
}

.btn--primary {
  background-color: var(--color-pink);
  color: var(--color-text-light);
}

.btn--secondary {
  background-color: var(--color-yellow);
  color: var(--color-text-light);
}

.btn--tertiary {
  background-color: var(--color-green);
  color: var(--color-text-light);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  z-index: 100;
  background-color: transparent;
  color: var(--color-primary);
  height: 4rem;
  width: 100%;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
}

.header__social,
.header__reservation-btn,
.header__menu-toggle {
  position: relative;
  z-index: 101;
}

.header__container {
  width: 100%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
  display: flex;
  align-items: center;
  position: relative;
}

.header__social {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  background-color: #f2e9da;
  /* Couleur beige du fond, à ajuster selon vos besoins */
  border-radius: 50%;
  /* Rend l'élément parfaitement circulaire */
  transition: background-color 0.3s ease;
  text-decoration: none;
}

/* .fa-instagram {
  font-size: 3.2rem;
  height: auto;
  color: var(--color-beige);
} */
.header__social--icon {
  /* width: 60px; */
  height: auto;
  color: #067b48;
}

.header__social--icon-desktop {
  display: block;
  width: 55px;
  /* background-color: var(--color-beige); */
}

.header__reservation-btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-pink);
  color: var(--color-text-light);
  padding: var(--space-xs) var(--space-sm);
  max-width: fit-content;
  margin: 0 auto;
  font-weight: bold;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Style initial du bouton burger */

button.header__menu-toggle {
  border: none;
  padding: 0;
  font-size: inherit;
}

.header__menu-toggle {
  background-color: var(--color-primary);
  border-radius: 100%;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 5px;
  width: 55px;
  height: 55px;
  z-index: 1000;
  transition: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Container quand menu ouvert */
.header__menu-toggle.full-menu {
  background-color: transparent !important;
  border-radius: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
}

/* L'icône (burger ou croix) */
.header__menu--bar {
  color: var(--color-beige);
  font-size: 2.4rem;
  position: relative;

  z-index: 2000;
  transition: all 0.3s;
}

/* Masquer le burger quand le menu est ouvert */
.full-menu .header__menu--bar {
  display: none;
}

/* L'icône elle-même */
.header__menu--bar i {
  opacity: 1;
  transform: scale(1);
  transition: all 0.3s;
  display: block;
}

/* Hover sur l'icône */
.header__menu--bar i:hover {
  opacity: 1;
  transform: scale(1.2);
}

/* Bouton de fermeture */
.close-button {
  position: fixed;
  top: 3px;
  right: 13px;
  z-index: 9999;
  color: white;
  font-size: 2.4rem;
  cursor: pointer;
  width: 60px;
  height: 60px;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
}

.close-button.visible {
  display: flex;
}

.close-button i {
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.header__menu--overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--color-yellow);
  transform: scale(0) rotate(-10deg);
  transform-origin: top right;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.header__menu--overlay.open {
  opacity: 1;
  visibility: visible;
  transform: scale(1) rotate(0deg);
  pointer-events: auto;
}

.header__menu--overlay.closing {
  transform: scale(0) rotate(10deg);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55),
    opacity 0.7s ease;
}

.header__menu--overlay-menu {
  width: 100%;
  text-align: center;
}

.header__menu--overlay-menu ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding: 0;
  margin: 0;
  list-style: none;
}

.header__menu--overlay-menu ul li {
  opacity: 0;
  transform: translateY(20px);
  transition: none;
}

.header__menu--overlay.open .header__menu--overlay-menu ul li {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.header__menu--overlay.open .header__menu--overlay-menu ul li.animate {
  opacity: 1;
  transform: translateY(0);
}

.header__menu--overlay.closing .header__menu--overlay-menu ul li {
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

/* Délais pour les items à la fermeture */
.header__menu--overlay.closing .header__menu--overlay-menu ul li:nth-child(5) {
  transition-delay: 0s;
}

.header__menu--overlay.closing .header__menu--overlay-menu ul li:nth-child(4) {
  transition-delay: 0.05s;
}

.header__menu--overlay.closing .header__menu--overlay-menu ul li:nth-child(3) {
  transition-delay: 0.1s;
}

.header__menu--overlay.closing .header__menu--overlay-menu ul li:nth-child(2) {
  transition-delay: 0.15s;
}

.header__menu--overlay.closing .header__menu--overlay-menu ul li:nth-child(1) {
  transition-delay: 0.2s;
}

.header__menu--overlay-menu ul li a {
  font-family: var(--font-family-logo);
  font-size: var(--font-size-xl);
  letter-spacing: 0.2rem;
  color: white;
  display: block;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.header__menu--overlay-menu ul li a:hover {
  transform: scale(1.1);
}

.header__nav {
  position: relative;
}

.header__menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-beige);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 100;
  padding: var(--space-lg);
}

.header__menu-item {
  margin: var(--space-md) 0;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.header__menu-toggle[aria-expanded='true']+.header__nav .header__menu-item {
  opacity: 1;
}

.header__menu-link {
  font-size: var(--font-size-lg);
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s;
}

.header__menu-link:hover,
.header__menu-link:focus {
  color: var(--color-green);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero__container {
  height: 100%;
  position: relative;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__logo {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  max-width: 280px;
}

/* Section common styles */
.section {
  padding: var(--space-lg) var(--space-sm) 0;
}

.section__container {
  max-width: 1200px;
  margin: 0 auto;
}

.section__title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-md);
  margin-top: var(--space-sm);
  line-height: 1.2;
}

.section__title-container {
  margin-bottom: var(--space-lg);
}

.section__title-arrow {
  display: none;
  width: 50px;
  height: auto;
  margin-top: var(--space-sm);
}

.section__content {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

/* Définir l'ordre en mobile : titre → images → texte */
.section__images {
  order: 1;
  display: grid;
  gap: var(--space-sm);
}

.section__text {
  order: 2;
}

.section__text-body p {
  margin-bottom: var(--space-sm);
}

.section__cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.section__cta .btn {
  width: 100%;
}

.section__image-main img {
  width: 95%;
  height: auto;
  object-fit: cover;
  transform: rotate(2deg);
}

.section__image--secondary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  margin-top: -100px;
  position: relative;
  overflow: visible;
}

.section__image--secondary img {
  height: auto;
  object-fit: cover;
  /* Maintient les proportions */
  transition: all 0.3s ease;
  /* Animation optionnelle */
}

.section__image--secondary-left {
  transform: rotate(-10deg);
  margin-left: 10px;
  width: 90%;
  /* Contrôle plus précis de la taille */
  justify-self: end;
  /* Pousse vers la droite dans sa cellule */
  z-index: 2;
  /* Par-dessus l'autre image si nécessaire */
}

.section__image--secondary-right {
  transform: rotate(10deg);
  margin-left: -40px;
  margin-top: -50px;
  width: 110%;
  /* Taille relative - ajustez selon besoin */
  max-width: none;
  /* Permet de dépasser la largeur de la cellule */
  z-index: 3;
}

/* Image team gauche */
.section__image--secondary-teamleft {
  transform: rotate(5deg);
  width: 90%;
  /* Ajustez selon besoin */
}

/* Image team droite */
.section__image--secondary-teamright {
  transform: rotate(-8deg);
  margin-left: -20px;
  margin-top: -50px;
  width: 110%;
  /* Taille relative - ajustez selon besoin */
  max-width: none;
  /* Permet de dépasser la largeur de la cellule */
}

/* Section Team - styles spécifiques */
.section--team {
  background-color: var(--color-beige);
  margin-bottom: var(--space-lg);
}

/* Section Réservation */
.section--reservation {
  padding: var(--space-lg) var(--space-sm);
  background-image: url('../assets/images/reservation__roliko__background.webp');
  background-size: cover;
  background-position: center;
  color: var(--color-text-light);
  position: relative;
}

.section--reservation::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.section--reservation .section__container {
  position: relative;
  z-index: 2;
}

.section--reservation .section__title {
  color: var(--color-text-light);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section--reservation .section__content {
  display: block;
}

.section__reservation-content {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.section__iframe-container {
  position: relative;
  width: 100%;
  height: 640px;
  background-color: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.section__iframe {
  width: 100%;
  height: 100%;
  border: none;
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Section Privatisation / Événements */
.section--privatisation {
  padding: var(--space-lg) var(--space-sm) 0;
  background-color: var(--color-beige);
}

.section--privatisation .section__container {
  max-width: 1200px;
}

.section--privatisation .section__title {
  margin-bottom: var(--space-lg);
}

.section--privatisation .section__content {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

.section__privatisation-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section__text-container {
  text-align: center;
  max-width: 600px;
  margin-bottom: var(--space-lg);
}

.section__text {
  margin-bottom: var(--space-sm);
}

.section__text--highlight {
  font-weight: bold;
  font-size: 1.2em;
  color: var(--color-primary);
}

/* CTA spécifique pour événements - hérite de .section__cta */

/* Email protégé contre les bots */
.section__contact-info {
  margin-top: var(--space-md);
  padding: var(--space-sm);
  background-color: rgba(225, 129, 179, 0.12);
  border-left: 3px solid var(--color-pink);
}

.section__email-link {
  color: var(--color-pink);
  font-weight: 600;
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}

.section__email-link:hover {
  color: var(--color-primary);
}

.section__email-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-pink);
  transition: width 0.3s ease;
}

.section__email-link:hover::after {
  width: 100%;
}

/* Styles pour fragmenter l'email (anti-bot) */
.section__email-link span {
  display: inline;
}

/* Placeholders pour images en attente */
.placeholder-image {
  background: linear-gradient(135deg, #e0d5c7 0%, #d4c9bb 50%, #c8bdb0 100%);
  border: 2px dashed var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.placeholder-image::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: 3px solid var(--color-primary);
  border-radius: 50%;
  opacity: 0.3;
}

.placeholder-image::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 80px;
  height: 3px;
  background-color: var(--color-primary);
  opacity: 0.3;
}

.placeholder-image span {
  position: relative;
  z-index: 1;
  font-family: var(--font-family-title);
  font-size: 1.2rem;
  color: var(--color-primary);
  opacity: 0.7;
  text-align: center;
  padding: var(--space-sm);
}

.placeholder-image--landscape {
  width: 95%;
  aspect-ratio: 4 / 3;
  transform: rotate(2deg);
}

.placeholder-image--portrait {
  aspect-ratio: 3 / 4;
  width: 90%;
  transform: rotate(-10deg);
  margin-left: 10px;
}

/* Grille 2 colonnes pour les images secondaires événements */
.section__image--secondary-events {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-top: -80px;
}

.section__image--secondary-right-events {
  transform: rotate(8deg);
  margin-top: -30px;
  margin-left: -20px;
}


.section__form {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form__group {
  width: 100%;
}

.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;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: var(--space-sm);
  border: 1px solid #ccc;
  font-family: inherit;
  font-size: inherit;
  transition: border-color 0.3s;
  background-color: rgba(255, 255, 255, 0.9);
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--color-green);
  box-shadow: 0 0 0 2px rgba(6, 123, 72, 0.2);
}

.form__textarea {
  min-height: 150px;
  resize: vertical;
}

.form__submit {
  width: 100%;
  background-color: var(--color-green);
  color: var(--color-text-light);
  padding: var(--space-sm) var(--space-md);
}

/* Footer */
.footer {
  padding: var(--space-lg) var(--space-sm);
  background-color: var(--color-beige);
  color: var(--color-text);
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__logo {
  margin-bottom: var(--space-lg);
}

.footer__logo img {
  width: 250px;
  height: auto;
}

.footer__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.footer__block {
  text-align: center;
}

.footer__text {
  margin-bottom: var(--space-xs);
}

.footer__text--small {
  font-size: 0.8rem;
  opacity: 0.8;
  display: inline-block;

}

.footer__link {
  color: var(--color-red);
  position: relative;
  transition: color 0.3s;
}

.footer__link:hover,
.footer__link:focus {
  color: var(--color-primary);
}

.footer__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-red);
  transition: width 0.3s;
}

.footer__link:hover::after,
.footer__link:focus::after {
  width: 100%;
}

.footer__address {
  font-style: normal;
}

/* Fix overflow on small tablets (390px - 767px) */
@media (min-width: 390px) and (max-width: 767px) {
  .section {
    overflow-x: clip;
  }

  .section__image--secondary {
    margin-top: -60px;
  }

  .section__image--secondary-right,
  .section__image--secondary-teamright {
    width: 95%;
    margin-left: -15px;
    margin-top: -30px;
  }

  .section__image--secondary-left,
  .section__image--secondary-teamleft {
    width: 80%;
    margin-left: 5px;
  }

  .section__image-main img {
    width: 85%;
  }
}

/* Media query for Tablet layout (sections en 2 colonnes) */
@media (min-width: 768px) {

  .btn--primary,
  .btn--secondary,
  .btn--tertiary {
    width: 50% !important;
  }

  .btn--plaquette {
    width: 100% !important;
  }

  section[id] {
    scroll-margin-top: 4rem;
  }

  .hero__image {
    object-position: center top;
  }

  .section {
    padding: 0 var(--space-sm);
  }

  .section__content {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
  }

  .section__text {
    order: 1;
  }

  .section__images {
    order: 2;
    width: 100%;
  }

  /* Section Bienvenue : Texte à gauche, Images à droite */
  .section--intro .section__content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .section--intro .section__text {
    order: 1;
  }

  .section--intro .section__images {
    order: 2;
  }

  /* Section Événements : Texte à gauche, Images à droite */
  .section--privatisation .section__text {
    order: 1;
  }

  .section--privatisation .section__images {
    order: 2;
  }

  /* Section Melting-potes : Images à gauche, Texte à droite (alternance) */
  .section--team .section__content {
    grid-template-columns: 1fr 1fr;
  }

  .section--team .section__text {
    order: 2;
  }

  .section--team .section__images {
    order: 1;
  }

  .section__cta {
    align-items: center;
  }

  .section--reservation .section__container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
  }

  .section--reservation .section__title {
    flex: 0 0 30%;
    text-align: left;
    padding-right: var(--space-md);
    margin-bottom: 0;
    order: 2;
  }

  .section__title-arrow {
    display: block;
  }

  .section--reservation .section__title-container {
    flex: 0 0 30%;
    padding-left: var(--space-md);
    order: 2;
    text-align: left;
  }

  .section--reservation .section__title {
    margin-bottom: var(--space-sm);
  }

  .section--reservation .section__content {
    flex: 0 0 70%;
    order: 1;
  }

  .section__iframe-container {
    margin-bottom: 2rem;
  }

  /* Section Événements : mêmes styles que les autres sections */
  .section--privatisation .section__content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .footer__content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer__block {
    flex: 1;
    text-align: left;
  }

  .footer__block:nth-child(2) {
    text-align: center;
  }

  .footer__block:last-child {
    text-align: right;
  }
}

/* Media query for Desktop navigation (menu horizontal) */
@media (min-width: 940px) {

  .header {
    position: sticky;
    background-color: var(--color-beige);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  .header__menu-toggle {
    display: none;
  }

  .header__container {
    display: flex;
    justify-content: space-between;
  }

  .fa-instagram {
    display: none;
  }

  .header__social--icon-desktop {
    display: block;
    width: 55px;
    height: auto;
  }

  .header__social {
    flex: initial;
    order: 1;
  }

  .header__reservation-btn {
    position: static;
    transform: none;
    margin: 0;
    order: 3;
    box-shadow: none;
  }

  /* Desktop navigation */
  .header__nav {
    order: 2;
    flex: 1;
  }

  .header__menu {
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: center;
    background-color: transparent;
    height: auto;
    width: auto;
    padding: 0;
  }

  .header__menu-item {
    margin: 0 calc(var(--space-xs) + 0.5vw);
    opacity: 1;
  }

  .header__menu-link {
    font-size: calc(var(--font-size-base) * 1);
    color: var(--color-primary);
    white-space: nowrap;
  }
}

/* Larger desktop adjustments */
@media (min-width: 1024px) {
  .hero__logo {
    max-width: 400px;
  }

  .section__title {
    margin-bottom: var(--space-lg);
  }

  .btn--plaquette {
    width: 50% !important;
  }
}