html, body {
    margin: 0;
    padding: 0;
}
.blurone{

    background-color: #592614;
}
#restaurantOne {
    font-family:"noka";
    background-image: url(../assets/images/rest-one-bg.png);

}

#restOne-Header{

    height: 70px;
    display: flex;
    align-items: center;
    background-color: #FFEADE;
}
  
.one{
    
    background-color: #D96725;
}

/* Sidebar Menu */
#sidebar-menu-One{

    background-color: #D9B29C;
    border-left: 10px #D96725 solid;

}

#sidebar-menu-One li{
    color: #592614;
}

#restOne-hr{
    border: 2px #592614 solid;
}

#restOne-BotNav {
    background-color: #D9B29C;

}


/* Individual navigation bar color variables */
#restOne-BotNav {
    --hover-bg-color: #592614;
    --hover-icon-color: #D9B29C;
    --active-bg-color: #592614;
    --active-icon-color: #D9B29C;
}


#restOne-feature {
    height: 550px;
    flex-shrink: 0;
    width: 100%;
    background-image: url(../assets/images/restOne-header.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center
}
.rest-one-logo{
    margin-left: 1rem;
    width: 200px;
}


#restOne-feature h1{
    color: #FFEADE;
    font-size: 2rem;
    font-weight: 600;
    text-align: left;
    line-height: 2.5rem;

}
.restOne-button{
    width: 60%;
    padding: 1rem;
    background-color: #FFEADE;
    border-right: 10px solid #D96725 ;
    font-weight: 600;
    font-size: 1.5rem;
    color: #592614;
    text-align: left;

}
#restOne-cta{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 3rem;
}

#restOne-about, #restOne-contact{
    margin-top: 3rem;
    padding: 1rem;
    width: 90%;
    background-color: #A65C32;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);


}
#restOne-about >h3,
#restOne-contact >h3{
    width: 80%;
    position: absolute;
    background-color: #FFEADE;
    left: -3rem;
    top: -2rem;
    font-size: 1.2rem;
    padding: 1rem 1rem;
    text-align: left;
    font-weight: 500;
    padding-left: 4rem;
    color: #592614;


}
#restOne-aboutInfo{
    margin-top: 2rem;
    color: #FFEADE;
    text-align: left;
    line-height: 1.3rem;
    font-weight: 300;
}
  
#restOne-chefImg{
    width: 40%;
    height: 40%;
    background-image: url(../assets/images/restOne-chef.png);
    right: 0;
    top: -4rem;
}


#restOne-visit{
    padding: 1rem;
    background-image: url(../assets/images/restOne-visitHeader.png);
    color: #FFEADE;
    font-weight: 300;
    flex-direction: column;
}
.visit-header{

    display: flex;
    flex-direction: column;
}
#restOne-visit h1{
    font-size: 1.5rem;
    font-weight: 500;
}

#restOne-reserveBtn{
    font-weight: 600;
    background-color: #FFEADE;
    color: #592614;
    border-right: 10px solid #D96725 ;
    text-align: left;
    font-size: 1.3rem;
}

#restOne-contact{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #A65C32;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

}
#restOne-contact ul, #restOne-contact ul a{
    margin-top: 2rem;
    color: #FFEADE;
    line-height: 1.5rem;
    font-weight: 300;
    text-decoration: none;

}
#footerRestOne{
    color: #FFEADE;
    background-image: url(../assets/images/restOne-Subscribe.png);
}

#restOne-Footer{
    background-color: #FFEADE;
    height: 40px;
    color: #592614;
}

#restOne-signUpBtn{
    background-color: #D9B29C;
    color: #592614;
}

#footerRestOne input{
    border: #FFEADE solid 1px;
}
#footerRestOne input::placeholder{
    color: #FFEADE;
}

#restOne-Reserve label{
    color: #D9B29C;
}
#newsletter-one h2{
    color: #FFEADE;
}

.homeSect, .menuSect, .reserveSect {
    width: 100%;
}
.menu-info{
    margin: 2rem ;
    margin-bottom: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: left;
    gap: 1rem;
}

.menuSect h1{

    font-size: 1.8rem;
    color: #FFEADE;
    text-align: left;
}
.line-with-arrow {
    width: 200px;
    height: 2px;
    background-color: #FFEADE;
    position: relative;
}
  
.line-with-arrow::after {
    content: '';
    position: absolute;
    right: 0px; /* Adjust the distance of the arrow */
    top: -5px;
    transform: translateY(-50%);
    border: solid #FFEADE;
    border-width: 2px 0 0 2px;
    padding: 5px;
    transform: rotate(130deg);
  }
  

.menu-info p{
    color: #D9B29C;
    text-align: left;
}

.scroll-x {
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-color: var(--color-fg) var(--color-bg);
}

.wrapper {
  --size: clamp(6rem, 1rem + 20vw, 12rem);
  --gutter: 2rem;
  --gap: 0.5rem;
  scroll-snap-type: x mandatory;
  display: grid;
  padding-block: var(--gutter);
  grid-template-columns:
    [full-start] 1fr
    [content-start]
    min(var(--size), 100% - var(--gutter) * 2)
    [content-end]
    1fr [full-end];
}

.items {
    cursor: pointer;
    grid-area: content;
    display: flex;
    gap: var(--gap);

    &::after {
    content: "";
    padding-inline-end: max(
      var(--gutter),
      (100vw - var(--size)) / 2 - var(--gutter)
    );
  }

  > * {
    display: grid;
    place-content: center;
    flex-shrink: 0;
    inline-size: var(--size);
    aspect-ratio: 4 / 5;
    scroll-snap-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: #FFEADE;
    background-color: var(--color-fg);
    border-radius: 0.5rem;
    text-align: left;
    
  }
}

@supports (animation-timeline: view()) {
  .items > * {
    --scale: 0.9;
    --offset: var(--gap);
    animation: scale linear both, fade linear both;
    animation-timeline: view(inline);
    animation-range: cover 30% cover 70%, cover 5% cover 95%;
  }

  @keyframes scale {
    from,
    to {
      scale: var(--scale);
    }
    50% {
      scale: 1.1;
      box-shadow: 0 5px 8px rgba(0, 0, 0, 0.5);

    }
    from {
      translate: var(--offset) 0;
    }

    to {
      translate: calc(var(--offset) * -1) 0;
    }
  }

  @keyframes fade {
    from,
    to {
      opacity: 0;
    }
    10%,
    90% {
      opacity: 1;
    }
  }
}

.items li{
    display: flex;
    justify-content: start;
    align-items: end;
    padding: 0.5rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

}

#item1{
    background-image: url(../assets/images/item1.jpg);
    
}
#item2{
    background-image: url(../assets/images/item2.jpg);
}
#item3{
    background-image: url(../assets/images/item3.jpg);
}
#item4{
    background-image: url(../assets/images/item4.jpg);
    background-position: bottom;
}
#item5{
    background-image: url(../assets/images/item5.jpg);
}
.cards-wrap{
    width: 100%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.cards {
    background-color: #262626;
    border: 1px solid #D9B29C; 
    margin: auto;
    width: 90%;
    height: 180px;
    border-radius: 25px;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.card-info{
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    justify-content: flex-start;
    border-radius:0 0 25px 25px;
    width: 100%;
    padding: 0.5rem 1rem;
    text-align: left;
    background-color: #D9B29C;
    color: #592614;
}

#card1{
    background-image: url(../assets/images/card1.jpg);
}
#card2{
    background-image: url(../assets/images/card2.jpg);
}
#card3{
    background-image: url(../assets/images/card3.jpg);
}

.cards h4{
    font-size: 1.3rem;
    font-weight: 600;
    color: #592614;
}

.cards p{
    font-weight: 600;
}

#reservation-form-One{
    background-color: #A65C32;
    color: #D9B29C;
}
#reserveOne-image{
    background-image: url(../assets/images/reserveOne-image.jpg);
}

#form-wrap-One h1{
    color: #FFEADE;
    background-color: #D96725;

}
#restOne-submit{
    background-color: #FFEADE;
    color: #592614;
    border-right: #D96725 10px solid;
}
#reservation-form-One input{
    border: #D9B29C 1px solid;
    height: 30px;
    color: #FFEADE;
    padding-left: 1rem;
}
.messageOne{
    border: #D9B29C 1px solid;
}

#reservation-form-One input::placeholder, .messageOne::placeholder{
    color: #D9B29C;
    font-family:"noka";
    font-weight: 400;

}

#restOne-Reserved{
    background-color: #D96725;
}
#restOne-Reserved h1, #restOne-Reserved h2{
    color: #FFEADE;
}
#reserve-info-One p{
    background-color: #FFEADE;
    padding: 0.5rem;
    border-radius: 5px;
    color: #592614;
}