/* change your font here if needed*/
html,
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
  background-color: black;
  scroll-margin-top: 100px;
}

/* below you can change the text color or the button color */
a.button {
  background-color: #11c1ea;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  z-index: 2;
}

/* navbar and responsive navbar */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: transparent;
  color: white;
}

#navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  z-index: 999;
}

#navbar.scrolled {
  background-color: black !important;
  transition: background-color 200ms linear;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 4.5rem;
  font-size: 20px;
}

.nav-links li a {
  background: none;
  border: none;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.burger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

/* responsive navbar */
@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: row;
    background: black;
    position: absolute;
    bottom: 3px;
    right: 0;
    width: 100%;
    height: 16vh;
    gap: 1rem;
    align-items: center;     
    justify-content: center; 
    padding: 0;               
    margin: 0; 
  }
  
  .nav-links li a {
    font-size: 16px;     
    padding: 10px 2px;
  }

  .nav-links.active {
    display: flex;    
  }

  .burger {
    display: block;
    z-index: 999;
  }
}
/* here you can customize the hero section of the template */
span.restaurant-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  width: 100vw;
  height: 100vh;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  background-repeat: no-repeat;
  overflow: hidden;
}

span.restaurant-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(
    0,
    0,
    0,
    0.6
  ); /* here, you can choose to have your restaurant background tinted or not */
  z-index: 1;
}

span.restaurant-bg h1 {
  position: relative;
  z-index: 2;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  color: white;
}

span.restaurant-bg p {
  position: relative;
  z-index: 2;
  font-size: 1.5rem;
  text-align: center;
  color: white;
  margin-top: 1rem;
}

/* here is the about section, customize it as you'd like */
#about {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 2rem;
  color: white;
  border-radius: 16px;
}

.about-container {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 50%;
}

.about-text h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #11c1ea;
}

.about-text p {
  font-size: 1.15rem;
  color: white;
  line-height: 1.6;
  text-align: left;
}

.about-image {
  flex: 1 1 40%;
}

.about-image img {
  width: 100%;
  height: 37.5rem;
  border-radius: 16px;
}
/* responsive codes for the about section */
@media screen and (max-width: 768px) {
  .about-container {
    flex-direction: column;
    align-items: center;
  }

  .about-text,
  .about-image {
    flex: 1 1 100%;
    text-align: center;
  }

  .about-image img {
    width: 80%;
    height: auto;
  }
}

/* menu cards */
#menu {
  background-color: #222222;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cards-style {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.others-text h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #11c1ea;
  text-align: center;
}

.others-text p {
  font-size: 1.15rem;
  color: white;
  line-height: 2.5rem;
  text-align: center;
}

.others-text h2 {
  font-family: "Dancing Script", cursive;
  font-size: 2.5rem;
}

.others-text span.menu-card {
  display: inline-block;
  width: 360px;
  height: auto;
  background-color: #333;
  border-radius: 16px;
  padding: 1rem;
  margin: 1rem;
  color: white;
}

.menu-text span.menu-card li {
  font-size: 20px;
  margin-bottom: 0.5rem;
}

.menu-list {
  list-style-position: inside;
  padding-left: 0;
}

.menu-list li {
  margin: 0.5rem 0;
}

.menu-list .item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  border-bottom: 1px dashed #444; /* optional divider */
  padding-bottom: 4px;
}

@media screen and (max-width: 768px) {
  .cards-style {
    flex-direction: column;
    align-items: center;
  }

  .others-text span.menu-card {
    width: 100%;
    max-width: 280px;
  }
}

#misc {
  background-color: #000000;
  color: white;
  padding: 2rem;
}
.misc-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.misc-container h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #11c1ea;
}

.misc-container p {
  font-size: 1.15rem;
  color: white;
  line-height: 1.6;
  text-align: center;
}

.misc-images {
  column-count: 3;
  column-gap: 1rem;
}

.misc-images img {
  width: 100%;
  margin-bottom: 1rem;
  display: block;
  break-inside: avoid;
  transition: 1s ease;
}
.misc-images img:hover {
  transform: scale(1.05);
  filter: brightness(0.8);
  border-radius: 8px;
}

@media screen and (max-width: 768px) {
  .misc-images {
    column-count: 2;
  }
}

#contact {
  text-align: center;
  padding: 4rem 1rem;
  color: #111;
  background-color: #222222;
  margin-top: 100px;
}

#contact h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #11c1ea;
}

#contact .subtext {
  font-size: 1rem;
  color: white;
  margin-bottom: 2.5rem;
}

.contact-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 200px;
  max-width: 250px;
}

.icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.card h3 {
  font-size: 1rem;
  letter-spacing: 2px;
  color: #11c1ea;
  margin: 0.5rem 0;
}

.card p {
  color: white;
  font-size: 0.95rem;
}

@media screen and (max-width: 768px) {
  .contact-cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    max-width: 100%;
    text-align: center;
  }
}

#footer {
  background-color: #000000;
  color: white;
  text-align: center;
  padding: 1rem;
  position: relative;
}

.footer-container h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #11c1ea;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.footer-container a {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
}

footer {
  font-size: 0.9rem;
  color: white;
  margin-top: 3rem;
}
