@keyframes smoothScale {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}

@keyframes sliderReveal {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes scroll {
  0% {
      transform: translateX(0);
  }

  100% {
      transform: translateX(calc(-250px * 9));
  }
}

:root {

    /**
     * COLORS
     */
  
    --gold-crayola: hsl(38, 61%, 73%);
    --quick-silver: hsla(0, 0%, 65%, 1);
    --davys-grey: hsla(30, 3%, 34%, 1);
    --smoky-black-1: hsla(40, 12%, 5%, 1);
    --smoky-black-2: hsla(30, 8%, 5%, 1);
    --smoky-black-3: hsla(0, 3%, 7%, 1);
    --eerie-black-1: hsla(210, 4%, 9%, 1);
    --white-alpha-20: hsla(0, 0%, 100%, 0.2);
  
    /* font-family */
    --fontFamily-forum: 'Forum', cursive;
    --fontFamily-dm_sans: 'DM Sans', sans-serif;
  
    /* font-size */
    --fontSize-display-1: 6rem;
    --fontSize-headline-1: 4rem;
    --fontSize-title-1: 2.2rem;
    --fontSize-title-2 : 1rem;
    --fontSize-title-3 : 0.9rem;
    --fontSize-body-1: 1rem;
    --fontSize-body-2: 1.6rem;
    --fontSize-body-3: 1rem;
    --fontSize-label-1: 1rem;
  
    /* font-weight */
    --weight-regular: 400;
    --weight-bold: 700;
  
    /* line-height */
    --lineHeight-1: 1em;
    --lineHeight-2: 1.2em;
    --lineHeight-3: 1.5em;
    --lineHeight-4: 1.6em;
    --lineHeight-5: 1.85em;
    --lineHeight-6: 1.4em;
}
  
  *,
  *::before,
  *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }
    
  body {
    background-color: var(--eerie-black-1);
    color: white;
    font-family: var(--fontFamily-dm_sans);
    font-size: var(--fontSize-body-3);
    font-weight: var(--weight-regular);
    line-height: var(--lineHeight-5);
    margin: 0;
    padding: 0;
  } 

/* a11y */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--gold-crayola);
  color: white;
  padding: 10px 20px;
  border-radius: 50%;
  text-decoration: none;
}

.back-to-top::after {
  content: "\25b2"; /* Code unicode pour la flèche vers le haut */
}

.skip-link {
  background-color: var(--gold-crayola);
  color: black;
  font-size: var(--fontSize-body-1);
  text-decoration: none;
}

.skip-link:not(:focus):not(:active) {
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  height: 1px;
  width: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
}

a,
img,
data,
span,
input,
button,
select,
textarea { display: block; }
  
a {
  color: inherit;
  text-decoration: none;
}
  
  img { height: auto; }
  
  input,
  button,
  select,
  textarea {
    background: none;
    border: none;
    font: inherit;
  }
  
  input,
  select,
  textarea {
    width: 100%;
    outline: none;
  }
  
button { cursor: pointer; }
  
body.nav-active { overflow: hidden; }
  
::-webkit-scrollbar { width: 5px; }
  
::-webkit-scrollbar-track { background-color: transparent; }
  
::-webkit-scrollbar-thumb { background-color: var(--gold-crayola); }
    
  /*-----------------------------------*\
    #TYPOGRAPHIE
  \*-----------------------------------*/
.headline-1 {
  color: var(--gold-crayola);
  font-family: var(--fontFamily-forum);
  font-weight: var(--weight-regular);
  line-height: var(--lineHeight-2);
  font-size: var(--fontSize-headline-1);
}

.title-1{
  color: hsl(38, 61%, 73%);
  position: relative;
  font-size: var(--fontSize-title-1);
}

.display-1 {
    font-size: var(--fontSize-display-1);
    line-height: var(--lineHeight-1);
    color: var(--gold-crayola);
    font-weight: var(--weight-regular);
    font-family: var(--fontFamily-forum);
}

.title-2 { 
  font-size: var(--fontSize-title-2);
  color: var(--quick-silver);
}  

.title-3 { 
  font-size: var(--fontSize-title-3);
  color: var(--gold-crayola);
}
 
.body-1 {
    font-size: var(--fontSize-body-1);
    line-height: var(--lineHeight-6);
}
  
.body-2 {
    font-size: var(--fontSize-body-2);
    line-height: var(--lineHeight-4);
}
    
.body-3 { font-size: var(--fontSize-body-3); }
  
.label-1 { font-size: var(--fontSize-label-1); }
  
  /*-----------------------------------*\
    #REUSED STYLE
  \*-----------------------------------*/
  
.container { padding-inline: 20px; }

.contact-label { font-weight: var(--weight-bold); }
  
.contact-number {
    color: var(--gold-crayola);
    max-width: max-content;
    margin-inline: auto;
}
  
.hover-underline {
    position: relative;
    max-width: max-content;
}
  
.hover-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    transform: scaleX(0.2);
    opacity: 0;
}
   
.contact-number::after { bottom: -5px; }
  
.text-center { text-align: center; }
  
.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(50%);
}
  
.section-subtitle {
    color: var(--gold-crayola);
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.4em;
    margin-top: -70px;
}

.section-subtitle::after {
    content: url('IMAGES/separator.svg');
    display: block;
    width: 100px;
    margin-inline: auto;
}
  
.btn {
  position: relative;
  color: var(--gold-crayola);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 3px;
  max-width: max-content;
  border: 2px solid var(--gold-crayola);
  padding: 10px 15px;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 200%;
  border-radius: var(--radius-circle);
  background-color: var(--gold-crayola);
  transition: var(--transition-2);
  z-index: -1;
} 

.btn .text-2 {
  position: absolute;
  top: 100%;
  left: 50%;
  color: var(--smoky-black-1);
}
.btn:is(:hover, :focus-visible)::before { bottom: -50%; }
  
.btn:is(:hover, :focus-visible) .text-1 { transform: translateY(-40px); }

.btn:is(:hover, :focus-visible) .text-2 {
  top: 50%;
  transform: translate(-50%, -50%);
}

.btn-secondary {
  background-color: var(--gold-crayola);
  color: var(--smoky-black-1);
  margin-inline: auto;
}

.btn-secondary .text-2 { color: white; }
.btn-secondary::before { background-color: var(--smoky-black-1); }

  .section {
    position: relative;
    padding-block: 70px;
    overflow: hidden;
    z-index: 1;
  }
    
  .grid-list {
    display: grid;
    gap: 40px;
  }

  .btn-text {
    color: var(--gold-crayola);
    padding-block-end: 4px;
    margin-inline: auto;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: var(--weight-bold);
  }
  
  .btn-text:is(:hover, :focus-visible) { 
    color: white;
    padding-block-end: 4px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
   }

  .w-100 { width: 100%; }
  
  .input-field {
    background-color: var(--eerie-black-1);
    color: white;
    height: 56px;
    padding: 10px 20px;
    border: 1px solid var(--white-alpha-20);
    margin-block-end: 20px;
    outline: none;
  }
  
  .input-field::placeholder { color: inherit; }
  
  .input-field:focus { border-color: var(--gold-crayola); }
  
  /*-----------------------------------*\
    #HEADER
  \*-----------------------------------*/
  
  .header .btn { 
    display: none; 
  }

  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 4;
    border-block-end: 1px solid transparent;
  }
  
  .header.active {
    padding-block: 5px;
    background-color: var(--smoky-black-2);
    border-color: var(--smoky-black-3);
  }
  
  .header.hide {
    transform: translateY(-100%);
    transition-delay: 250ms;
  }
  
  .header .container {
    padding-inline: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
  }
  
  .nav-open-btn {
    padding: 12px;
    padding-inline-end: 0;
  }
  
  .nav-open-btn .line {
    width: 30px;
    height: 2px;
    background-color: white;
    margin-block: 4px;
    transform-origin: left;
  }
  
  .navbar {
    position: fixed;
    background-color: var(--smoky-black-1);
    top: 0;
    left: -360px;
    bottom: 0;
    max-width: 360px;
    width: 100%;
    padding-inline: 30px;
    padding-block-end: 50px;
    overflow-y: auto;
    visibility: hidden;
    z-index: 2;
  }
  
  .navbar.active {
    visibility: visible;
    transform: translateX(360px);
  }
  
  .navbar .close-btn {
    color: white;
    border: 1px solid currentColor;
    padding: 4px;
    border-radius: 50%;
    margin-inline-start: auto;
    margin-block: 30px 20px;
  }
  
  .navbar .close-btn:is(:hover, :focus-visible) { color: var(--gold-crayola); }
  
  .navbar .logo {
    max-width: max-content;
    margin-inline: auto;
    margin-block-end: 60px;
  }
  
  .navbar-list {
    border-block-end: 1px solid var(--white-alpha-20);
    margin-block-end: 100px;
  }
  
  .navbar-item { border-block-start: 1px solid var(--white-alpha-20); }
  
  .navbar-link {
    position: relative;
    text-transform: uppercase;
    padding-block: 10px;
    max-width: unset;
  }
  
  .navbar-link::after { display: none; }
  
  
  .navbar-link:is(:hover, :focus-visible, .active) .span {
    color: var(--gold-crayola);
    transform: translateX(20px);
  }
  
  .navbar-link .separator {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(45deg);
    opacity: 0;
  
  }
  
  .navbar-link:is(:hover, :focus-visible, .active) .separator { opacity: 1; }
  
  .navbar-title { margin-block-end: 15px; }
  
  .navbar-text { margin-block: 10px; }
  
  .navbar .body-3 { color: var(--quick-silver); }
  
  
  .sidebar-link:is(:hover, :focus-visible) { color: var(--gold-crayola); }
  
  .navbar .text-center  {
    margin-block: 30px;
    margin-inline: auto;
  }
  
  .navbar .contact-label { margin-block-end: 10px; }
  
  .navbar::-webkit-scrollbar-thumb { background-color: var(--white-alpha-20); }
  
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--eerie-black-1);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
  }
  
  .overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  /*-----------------------------------*\
    #HERO
  \*-----------------------------------*/

  .hero {
    position: relative;
    padding-block: 120px;
    min-height: 100vh;
    overflow: hidden;
    z-index: 1;
  }
  
  .hero .slider-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
    padding-block-start: 100px;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
  }
  
  .hero .slider-item.active {
    opacity: 1;
    visibility: visible;
  }
  
  .hero .slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
    
  .hero-text { margin-block: 10px 40px; }
  
  .hero .btn { margin-inline: auto; }
  
  .hero-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 2;
    background-color: var(--gold-crayola);
    width: 110px;
    height: 110px;
    padding: 12px;
    transform: scale(0.6);
  }
  
  .hero-btn img {
    margin-inline: auto;
    margin-block-end: 6px;
  }
  
  .hero-btn .span {
    color: black;
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    line-height: var(--lineHeight-3);
  }
  
  .hero-btn::after {
    inset: 0;
    border: 1px solid var(--gold-crayola);
  }
  
  .slider-reveal {
    transform: translateY(30px);
    opacity: 0;
  }
  
  .hero .slider-item.active .slider-reveal {
    animation: sliderReveal 1s ease forwards;
  }
  
  /*-----------------------------------*\
    #ABOUT
  \*-----------------------------------*/
  
  .about .section-text { 
    margin-left: 30px;
    margin-top: 10px;
   }
    
  .about .container {
    display: grid;
    gap: 50px;
  }
  
  .about-banner {
    position: relative;
  }

/*-----------------------------------*\
  #DETAILS SALLES
\*-----------------------------------*/

.salles-content {
  margin-top: 250px;
}

.list {
  list-style: none;
  padding: 0;
}

.list li {
  margin-bottom: 20px;
  margin-top: 30px;
}

.img { 
  display: block; 
  margin: 0; 
  height: 550px;
  width: 400px;
}

.item-content {
  display: flex;
  flex-direction: row;
  margin-left: 20px;
  margin-bottom: 20px;
}

.item-content img {
  max-width: 100% ; 
  height: auto; 
  margin-right: 20px; 
}

.text-container {
  background-color: var(--smoky-black-1);
  padding: 10px;
  border: 1px solid var(--gold-crayola);
  margin-left: 40px;
  display: inline-block;
  border-radius: 20px;
  max-width: 600px;
} 
.item-content .btn {
  display: inline-block;
  margin-top: 10px;
  background-color: var(--gold-crayola);
  color: var(--smoky-black-1);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
}

.item-content .btn-secondary {
  background-color: var(--smoky-black-1);
  color: var(--gold-crayola);
  border: 2px solid var(--gold-crayola);
}

.item-content .btn-secondary:hover {
  background-color: var(--gold-crayola);
  color: var(--smoky-black-1);
}

.item-content .text-1, .text-2 {
  display: block;
}


/*-----------------------------------*\
  #THEME SALLES
\*-----------------------------------*/

.salle-content {
  margin-top: 250px;
}

.list-salle {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.list-salle li {
  margin-bottom: 20px;
  margin-top: 30px;
}

.item-content-salle {
  display: flex;
  flex-direction: row;
  margin-left: 20px;
  margin-bottom: 20px;
  flex: 1 1 45%;
  margin: 10px;
  transition: transform 0.3s ease;
}

.item-content-salle:hover {
  transform: scale(1.05); /* Augmenter la taille au survol */
}

.text-container-salle {
  background-color: var(--smoky-black-1);
  padding: 10px;
  border: 1px solid var(--gold-crayola);
  border-radius: 15px;
  max-width: 500px;
} 
.item-content-salle .btn {
  display: inline-block;
  margin-top: 10px;
  background-color: var(--gold-crayola);
  color: var(--smoky-black-1);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
}

.item-content-salle .btn-secondary {
  background-color: var(--smoky-black-1);
  color: var(--gold-crayola);
  border: 2px solid var(--gold-crayola);
}

.item-content-salle .btn-secondary:hover {
  background-color: var(--gold-crayola);
  color: var(--smoky-black-1);
}

.item-content-salle .text-1, .text-2 {
  display: block;
}

/* Affichage du tri sur la page */
select#order {
  background-color: #333; 
  color: white; 
  padding: 5px; 
  border: 1px solid #555; 
  border-radius: 5px; 
}
  /*-----------------------------------*\
    #MENU
  \*-----------------------------------*/
  
  .menu .section-title { margin-block-end: 5px; }
  
  .menu-card {
    display: flex;  
    margin-top: 50px;
  }
   
  .menu-card .span {
    margin-block: 5px;
  }

.title-1 .span {
  position: absolute;
  top: 0;
  right: 0;
}
  
.menu-card .card-text {
  color: var(--quick-silver);
  line-height: var(--lineHeight-4);
}
 
.container-menu {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 70px;
  margin-top: 30px;
  flex-wrap: wrap;

}

.galerie {
  display: flex;
  gap: 25px;
}

.img-menu {
  width: 100px;
  height: 450px;
  position: relative;
  background: url(IMAGES/soupe.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 60px;
  transition: width 0.5s;
}
.img-menu:nth-child(2) {
  background: url(IMAGES/boeuf.jpg);
  background-position: center;
  background-size: cover;
}
.img-menu:nth-child(3) {
  background: url(IMAGES/sushi.jpg);
  background-position: center;
  background-size: cover;
}
.img-menu:nth-child(4) {
  background: url(IMAGES/ramen.jpg);
  background-position: center;
  background-size: cover;
}
.img-menu:nth-child(5) {
  background: url(IMAGES/sashimi.jpg);
  background-position: center;
  background-size: cover;
}
.img-menu:nth-child(6) {
  background: url(IMAGES/plat.jpg);
  background-position: center;
  background-size: cover;
}

.img-menu:hover {
 width: 300px; 
}

.img-menu h3 {
  color: var(--gold-crayola);
  top: 0;
  left: 20px;
  position: absolute;
  opacity: 0;
  transition: opacity 0.5s, top 0.5s;
}

.img-menu:hover h3 {
  opacity: 1;
  top: 20px;
}
  /*-----------------------------------*\
    #BARRE DE RECHERHCE
  \*-----------------------------------*/

.search:focus-visible{
  outline:solid 2px white;
}

.input-field-wrapper {
  display: flex;
  align-items: center;
}

.search {
  width: 150px; /* Réduire la largeur de la barre de recherche */
  height: 30px;
}

.filtre {
  font-family: var(--fontFamily-forum);
  font-size: 1.3rem;
  padding: 5px 10px; 
  border: none;
}

  /*-----------------------------------*\
    #EN SAVOIR PLUS
  \*-----------------------------------*/
 .ensavoirplus {
  padding: 30px;
  margin-top: 200px;
 }
 
.box {
  border: 2px solid var(--gold-crayola);
  border-radius: 10px;
  margin-bottom:40px;
  padding:60px;  
}

.container-about {
  display: flex;
 align-items: center;
}

.title-about {
  display:flex;
  justify-content: flex-start;
  margin-left:30px;
}

.img-about{
  width:15vw;
  height:20vw;
  background-image:url(IMAGES/melissa_pro.png);
  background-size:cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 30px;
}

.txt{
  max-width:900px;
  margin-top: 20px ;
  margin-left: 15px;
  font-size: 1.2rem;
}

.txt-2 {
  margin-top: 20px ;
  margin-left: 15px;
  font-size: 1.2rem;
}

details {
  border: 1px solid var(--gold-crayola);
  padding: 0 1rem;
  background: var(--eerie-black-1);
}
details + details {
  border-top: none;
}
details[open] {
    padding-bottom: 1em;
}  
summary {
  padding: 1rem 2em 1rem 0;
  font-size: 1.25rem;
  font-weight: var(--weight-bold);
  cursor: pointer;
}

aside {
  text-align: left;
  justify-content: center;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

.address-link {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.address-link:hover {
  color: var(--gold-crayola);
}

  /*-----------------------------------*\
    #TEMOIN
  \*-----------------------------------*/
  
.comment {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.slider {
    margin: auto;
    overflow: hidden;
    position: relative;
}

.slider::before,
.slider::after {
    content: "";
    height: 100%;
    position: absolute;
    width: 100px;
    z-index: 2;
}

.slider::after {
  right: 0;
  top: 0;
  -webkit-transform: rotateZ(180deg);
  transform: rotateZ(180deg);
}

.slider::before {
  left: 0;
  top: 0;
}

.slider .slide-track {
  animation: scroll 60s linear infinite;
  display: flex;
  gap: 1rem;
}

.slider .slide {
  padding: 1.5rem;
  background-color:  var(--eerie-black-1);
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 1rem;
  border-radius: 4rem;
  border: 3px solid var(--gold-crayola); ;
}

.lineOne {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
    
}

.lineOne img {
  height: 3rem;
  width: auto;
  border-radius: 50%;
}

.lineOne div {
  display: flex;
  flex-direction: column;
}

.lineOne div h3 {
  font-size: 1.5rem;
  color: var(--gold-crayola); 
}

.lineTwo {
  width: 22rem;
}

.lineTwo p {
  font-size: 1rem;
  color: white;
}
  /*-----------------------------------*\
    #RESERVATION
  \*-----------------------------------*/
  
  .reservation-form { margin-block-start: 100px; }
  
  .form-text .link {
    color: var(--gold-crayola);
  }
  
  .form-right .headline-1 { margin-block-end: 40px; }
  
  .form-right .body-3 {
    color: var(--quick-silver);
    line-height: var(--lineHeight-3);
  }
  
.form-right .body-3:not(:last-child) { margin-block-end: 25px; }
 
.input-field[type="date"] {
    text-transform: uppercase;
    padding-inline-end: 10px;
  }
  
  .input-field[type="date"]::-webkit-calendar-picker-indicator { 
    opacity: 1;
    display: block;
    width: 24px; 
    height: 24px; 
    cursor: pointer;
  }

  .form-left .btn {
    max-width: 100%;
    width: 100%;
  }

  .form-right {
    background-repeat: repeat;
    background-position: top left;
  }

  .star-required {
    color: white;
  }

  /*-----------------------------------*\
    #FOOTER
  \*-----------------------------------*/
.footer {
  margin-top: -10px;
}

.footer-top {
  margin-block-end: 10px;
  width: 85%; 
  margin: 0 auto; /* cela centre la div horizontalement */
}
  
.footer-list {
  display: grid;
  gap: 20px;
  justify-content: center;
  text-align: center;
}
  
.footer-link {
  color: var(--quick-silver);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-inline: auto;
}
  
.footer-link:is(:hover, :focus-visible) { color: var(--gold-crayola); }

.footer-brand {
  position: relative;
}
  
.footer-brand :is(.body-3, .label-1) {
  color: var(--quick-silver);
}
  
.footer-brand .contact-link {
  margin-block: 6px;
}

.footer-brand address,
.footer-brand a,
.footer-brand p {
  margin-bottom: 10px; 
}
  
  /*-----------------------------------*\
    #MEDIA QUERIES
  \*-----------------------------------*/
  
  /**
   * responsive for larger than 575px screen
   */
  
  @media (min-width: 575px) {
  
:root {
  
/**
  * typography
*/
  
--fontSize-body-2: 2rem;  
}
  
/**
  * TOPBAR
*/
  
.topbar {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 10px;
  border-block-end: 1px solid var(--white-alpha-20);
  z-index: 4;
}

.topbar:has(~ .header.active) { transform: translateY(-100%); }
  
.topbar-item:not(.link),
.topbar .separator { display: none; }
  
.topbar .container,
.topbar-item {
  display: flex;
  align-items: center;
}
  
.topbar .container {
  justify-content: center;
  gap: 30px;
}

.topbar-item { gap: 6px; }
.topbar-item .span { font-size: var(--fontSize-label-1); }
.topbar .link:is(:hover, :focus-visible) { color: var(--gold-crayola); }
    
/**
  * HEADER
*/
  
.header { top: 51px; }
.header.active { top: 0; }
.header .btn {
  display: block;
  margin-inline-start: auto;
}
  
/**
  * HERO
*/
  
.hero-btn { transform: scale(0.7); }

/**
  * ABOUT
*/
  
.about .container { gap: 80px; }
.about-banner > .w-100 { padding-inline-start: 90px; }
.about .abs-img-1 { width: 285px; }
.about .contact-number { --fontSize-body-1: 2.4rem; }
  
/**
  * MENU
*/
  
.menu-card .span::before {
height: 6px;
flex-grow: 1;
border-block: 1px solid var(--white-alpha-20);
}

/**
  * FOOTER
*/
  
.footer-brand > * {
  max-width: 460px;
  margin-inline: auto;
}
  
.footer .input-wrapper { position: relative; }
  
.footer .input-field {
  margin-block-end: 0;
  padding-inline-end: 205px;
}
  
.footer-brand .btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  min-width: max-content;
}
}

  /**
   * responsive for larger than 768px screen
   */
  
  @media (min-width: 768px) {
  
    /**
     * REUSED STYLE
     */
  
    .grid-list { grid-template-columns: 1fr 1fr; }
  
    :is(.service, .event) .container { max-width: 820px; }
  
    :is(.service, .event) .grid-list li:last-child {
      grid-column: 1 / 3;
      width: calc(50% - 20px);
      margin-inline: auto;
    }
  
/**
  * HEADER
*/
  
.navbar-list { margin-inline: 30px; }
  
/**
  * RESERVATION
 */
  
.reservation .input-wrapper {
  column-gap: 20px;
  display: flex;
  align-items: center;
 }
  
.reservation .input-wrapper:nth-child(4) {
  grid-template-columns: repeat(3, 1fr);
}

.input-field-wrapper {
    display: flex;
    align-items: center;
}

/**
  * FOOTER
*/
  .footer-brand { grid-column: 1 / 3; }
  
}

.img-menu {
  max-width: 100%; 
  margin-bottom: 10px;
}

  @media (max-width: 768px) {
    .img { 
      height: 300px;
      width: 100%;
    }
  
    .item-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .text-container {
      margin-left: 0;
      max-width: 100%;
    }
  
    .item-content .btn {
      width: 100%;
      box-sizing: border-box;
    }
     
    .box {
      padding: 30px;
    }

    .img-about {
      width: 40vw;
      height: auto;
    }
  }

  /**
   * responsive for larger than 992px screen
   */
  
  @media (min-width: 992px) {
  
  :root {
    --section-space: 100px; 
}
  
/**
  * TOPBAR
*/
  
.topbar-item:not(.link) { display: flex; }
  
.topbar .item-2 { margin-inline-end: auto; }
  
    /**
     * ABOUT
     */
  
    .about .container {
      grid-template-columns: 0.7fr 1fr;
      gap: 30px;
    }
  
    /**
     * MENU
     */
  
    .menu .grid-list {
      position: relative;
      column-gap: 90px;
    }
  
    .menu .grid-list::before {
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      height: 100%;
      border-inline-start: 1px solid var(--white-alpha-20);
    }
  
    /**
     * RESERVATION
     */
  
    .reservation-form {
      display: grid;
      grid-template-columns: 1fr 0.5fr;
    }

    /**
     * FOOTER
     */
  
    .footer .grid-list {
      grid-template-columns: 0.45fr 1fr 0.45fr;
      align-items: center;
    }
  
    .footer-brand {
      grid-column: auto;
      order: 1;
      padding-block: 100px;
    }
  
    .footer-list:last-child { order: 2; }
  
  }
  
  /**
   * responsive for larger than 1200px screen
   */
  
  @media (min-width: 1200px) {

    /**
     * TOPBAR
     */
  
    .topbar .container { max-width: unset; }
  
    .topbar .separator { display: block; }
  
    /**
     * HEADER
     */
  
    .nav-open-btn,
    .navbar > *:not(.navbar-list),
    .header .overlay { display: none; }
  
    .header .container { max-width: unset; }
  
    .navbar,
    .navbar.active,
    .navbar-list { all: unset; }
  
    .navbar,
    .navbar.active { margin-inline: auto 20px; }
  
    .navbar-list {
      display: flex;
      gap: 30px;
    }
  
    .navbar-item { border-block-start: none; }
  
    .navbar .separator { display: none; }
  
    .navbar-link:is(:hover, :focus-visible, .active) .span {
      transform: unset;
    }
  
    .navbar-link {
      font-weight: var(--weight-bold);
      letter-spacing: 0.15em;
    }
  
    .navbar-link::after { display: block; }
  
    .navbar-link.active::after {
      transform: scaleX(1);
      opacity: 1;
    }
  
    .header .btn { margin-inline-start: 0; }
  
    /**
     * HERO
     */
  
    .hero { height: 880px; }
  
    .hero-btn {
      bottom: 50px;
      right: 50px;
      transform: scale(1);
    }
  
    /**
     * ABOUT
     */
  
    .about { padding-block: 170px 100px; } 
  }
  
