/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-color: #9f1d35 #fff;
  /* scroll-behavior: smooth; */
}

body {
  font-family: Arial, sans-serif;
  line-height: 1;
  color: #333;
}

h2{
  text-align: center;
}
/* Containers */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  
}

/* Navbar */
header {
  background: #effafa;
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  position: sticky;
  top: 0%;
}

nav {
  display: grid;
  grid-template-columns: max-content max-content;
  align-items: center;
  justify-content: space-between;
}


nav .logo img {
  height: 100px;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #9f1d35;
  font-weight: bold;
}

.nav-links a:hover{
  /* background-color: #fc7f96; */
  color: #fc3055;
}

/* .nav-links li.active{
  color: white;
  background-color: #fc3055;
  font-weight: bolder;
} */

.nav-link.active{
  color: #fc3055;
  /* background-color: ; */
  font-weight: bolder;
}

.menu-toggle{
  display: none;
}

/* Hero Section */
.hero {
  background: #9f1d35;
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  max-width: 600px;
  margin: 0 auto 2rem;
}

.btn1 {
  display: inline-block;
  background: #fc3055;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

/* Sections */
.section {
  padding: 3rem 0;
  scroll-margin-top: calc(2rem + 150px + 6rem); /*taking into consideration the top and bottom section paddings (3rem each)*/
}


.light-bg {
  background: #f9f9f9;
}

.menu h1 {
    font-size: 3.48vw;
    margin-top: -1.74%;
    /* margin-bottom: 1.3%; */
  }
  
.menu h2 {
    font-size: 2.61vw;
  }
  
.established {
  font-style: italic;
  color: #9f1d35;
  font-size: 1.57vw;
}

.menu h1, .menu h2, .menu p {
  text-align: center;
}

hr {
    height: 2px;
    background-color: brown;
    border-color: brown;
}

.bottom-line {
  margin-top: 25px;
}

.menu h1 {
  font-family: Verdana;
  color: #9f1d35;
}

.menu h2{
  font-family: verdana;
  color: whitesmoke;
  background-color: #9f1d35;
  /* border-top-left-radius: 0.5vw;
  border-top-right-radius: 0.5vw; */
}



.menu {
    /* background-image: url('images/menuBG3.png'); */
    width: 95%;
    background-color:#dcae96;
    /* text-align: left; */
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    max-width: 1150px;
    max-height: 1550px;
    /* max-height: 1200px; */
  }
h1 #header-img{
    /* padding-right: -150px; */
    /* padding-left: -160px; */
    margin-bottom: -6.09%;
    margin-right: -2.61%;
    height: 13.04%;
    width: 13.04%;
  }

.item p {
    display: inline-block;
    /* margin-top: 1px;
    margin-bottom: 1px; */
    /* text-align: left; */
    font-family: Verdana;
    font-size: 1.57vw;
    /* line-height: 0; */
    color: #9f1d35;
  }

  .menu section{
    padding-bottom: 3px;
    
  }
  .menu section:last-of-type{
    margin-bottom: 1.74%;
    /* margin-top: -20px; */
  }

.wrapper{
    background-image: url('images/menuBG3.png');
    display: grid;
    grid-template-rows: repeat(4, max-content);

}

 .menu .dessert, .menu .breakfast, .menu .rollsWrap, .menu .snacksSides, .menu .delight, .menu .drink, .menu .deal {
    text-align: left;
    width: 75%;
  }

  .menu .price {
    text-align: right;
    width: 25%;
  }

.row1{
    grid-row: 1;
    margin-right: 2%;
    margin-left: 2%;
  }
  .row2{
    grid-row: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 8.70%;
    /* text-align: center; */
    margin-right: 2%;
    margin-left: 2%;
  }

  .menu section{
    margin-bottom: 1.74%;
    /* border:1px solid #9f1d35; */
  }

  .menu .row2 section{
    border: 1px solid #dcae96;
    /* border-radius: 5%; */

    /* margin-top: 10px; */
  }

  .menu .row1 section{
    margin-top: 1.74%;
    border: 1px solid #dcae96;
    /* border-radius: 5%; */

  }

  /* .menu .row1col1 section:last-of-type{
    border-radius: 30%;
  } */

  .menu .row1 section p {
    padding: 0.18% 0.87%;
  }
  .menu .row2 section p {
    padding: 0.18% 0.87%;
  }
  /* .row3{
    grid-row: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 7.83%;
    margin-right: 4.35%;
    margin-left: 4.35%;
  }
  .row4{
    grid-row: 4;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 7.83%;
    margin-right: 4.35%;
    margin-left: 4.35%;
  } */

/* Contact Form */

#contact p{
  text-align: center;
}
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  /* max-width: 500px; */
  width: 90%;
  margin: auto;
}

input, textarea {
  padding: 0.75rem;
  border: 1px solid #9f1d35;
  border-radius: 5px;
}

textarea {
  resize: none;
  height: 120px;
}

button {
  background-color: #9f1d35;
  color: white;
  border: none;
  padding: 0.75rem;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
}

.contact .contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact .card {
  background: rgb(250, 246, 246);
  padding: 1.5rem;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  text-align: center;
}

a{
    text-decoration: none;
    color: #333;
}

/* Footer */
footer {
  background: #9f1d35;
  color: white;
  text-align: center;
  padding: 1rem 0;
}

.btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.3rem 0.75rem;
  background: #9f1d35;
  color: #f9f9f9;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
}

.btn:hover {
  background: #fc3055;
  color: white;
}

@media only screen and (max-width: 760px){
  /* header{
    padding: 0;
  } */
  .menu-toggle{
    display: block;
    font-size: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding-bottom: 10px;

  }
  nav{
    display: grid;
    grid-template-rows: max-content max-content;
    justify-content: space-between;
    position: relative;
  }
  nav .logo{
    grid-row: 1;
    /* text-align: center; */
    
  }

  nav .logo img{
    height: 60px;
    padding-top: 10px;
    
  }
  .nav-links{
    display: none;
    
  }
  /* .nav-links.active{
    grid-row: 2;
    display: grid;
    grid-template-rows: repeat(3, max-content);
    justify-content: center;
    gap: 5px;
    margin-top: 5px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
  } */

  .nav-links{
    display: flex;
    flex-direction: column;
    justify-content: top;
    align-items: left;
    margin-top: 20px;
    gap: 10px;
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: 100vh;

    background-color: #9f1d35;
    transition: left 0.4s ease;
    z-index: 1000;
  }

  .nav-links.active{
    left: 0;
  }

  .nav-links li{
    /* margin-top: 35px; */
    list-style: none;
    background: none;
  }

  .nav-links li:first-of-type{
    margin-top: 20px;
  }

  .nav-links a{
    color: white;
    font-size: 1.3rem;
    letter-spacing: 2px;
  }

  /* .menu .row1 section p {
    padding: 1px 3px;
  }
  .menu .row2 section p {
    padding: 1px 3px;
  } */

  /* .contact .contact-cards{
    display: grid;
    grid-template-columns: max-content;
    justify-content: center;
    width: 100%;
  }

  .card{
    padding: 1.5rem;
  } */

  /* .nav-links li{
    background-color: #ffffff;
    width: 100%;
    text-align: center;
  }
  .nav-links a{
    letter-spacing: 2px;
  }
   */
  .section{
    padding: 3rem 0;
    scroll-margin-top: calc(120px + 6rem); /*taking into consideration the top and bottom section paddings (3rem each)*/
  }

  
}