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


  .main-header {
    background-color: #f7ce59; 
    text-align: center;
    padding: 10px 0;
  }
  
  .top-nav {
    margin-top: 10px;
  }
  
  .top-nav a {
    color: black;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
    font-family: 'IBM Plex Mono', monospace
  }

  .top-nav a:hover {
    text-decoration: underline;
  }

head {
    font-size: large;
    text-align: center;
    background-color: white;
    padding: 2px;
  
}

body {
  margin: 0;
  font-family: 'IBM Plex Mono', monospace;
  background-color: #fffdf5;
}


.nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.nav-left a {
  text-decoration: none;
  color: black;
  font-size: 18px;
  justify-content: space-between;
  margin-right: 24px;
  margin-left: 24px;
  text-align: center;

}



.nav-left a:hover {
  color: blue;
  text-decoration: underline;
}




.nav-center {
  font-size: 25px;
  font-weight: 550;
  text-align: center;
  justify-content: space-around;
}
  

.main {
  background-color: #f1c75b;
  text-align: center;
  padding: 30px;
}

.h1 {
  font-size:  150%; 
  font-weight: 200;
  margin-bottom: 20%;
}
.heroimage {
  width: 350px;
  height: auto;  
  margin:  auto; 
}
.hours {
  background-color: #f1c75b;
  text-align: center;
  padding: 45px;
}

.hours h2 {
  font-size: 32px;
  line-height: 1.5;
  font-weight: 500;
}

.about-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

.about-box {
  background-color: pink;
  padding: 30px;
  border-radius: 15px;
  margin: 40px auto;
  max-width: 1000px;
}

.about-text,
.about-image {
  flex: 1;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.about-text a {
  color: #b30059; 
  text-decoration: underline;
  font-weight: bold;
}
.about-text a:hover {
  color:  blue;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}



a {
  color: black;
  text-decoration: none;
  justify-content: space-between;
}

a:hover {
  color: blue;
}

/* menu section */



.menu-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px;
}

.menu-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.menu-section {
  flex: 1;
  min-width: 300px;
  background-color: pink;
  padding: 20px;
  border-radius: 10px;
  
}

.menu-section h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

.menu-section p {
  margin-bottom: 20px;
  line-height: 1.4;
}


/* reservation section */


.content {
  text-align: center;
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
}

.phone {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
}

.info {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.reservation-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
}

.reservation-form select,
.reservation-form input[type="date"] {
  padding: 10px;
  border-radius: 20px;
  border: 1px solid #ccc;
  min-width: 140px;
}

.reservation-form button {
  background: black;
  color: white;
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: bold;
}

.reservation-form button:hover {
  background: #333;
}



/* location */

.location-info {
  text-align: center;
  margin: 40px auto;
  font-family: monospace;
  font-size: large;
}

.location-image {
  text-align: center;
  margin: 30px;
}

.location-image img {
  width: 80%;
  max-width: 600px;
  border-radius: 10px;
}


/* footer */


footer {
  margin-top: 50px;
  text-align: center;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 30px;
}

.footer-nav a {
  text-decoration: none;
  color: black;
  font-weight: bold;
}

.footer-nav a:hover {
  text-decoration: underline;
}
