/* importing Google font*/
@import url("https://fonts.googleapis.com/css2?family=Miniver&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* stylings for site*/
ul {
  list-style: none;
}
a {
  text-decoration: none;
}

img {
  width: 120%;
}

.section-content {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1100px;
}
button {
  cursor: pointer;
  border: none;
  background: none;
}

.section-title {
  text-align: center;
  padding: 60px 0 80px;
  text-transform: uppercase;
  font-size: x-large;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 5px;
  display: block;
  margin: 10px auto 0;
  border-radius: 8px;
  background: #f3961c;
}

/*Navbar styling*/
header {
  background-color: #3b141c;
  position: fixed;
  width: 100%;
  z-index: 5;
  background: #3b141c;
}

header .navbar {
  display: flex;
  padding: 20px;
  align-items: center;
  justify-content: space-around;
}

.navbar .nav-logo .text-logo {
  color: whitesmoke;
  font-size: 2rem;
  font-weight: 600;
}
.navbar .nav-menu {
  display: flex;
  gap: 15px;
}

.navbar .nav-menu .nav-link {
  color: #fff;
  border-radius: 30px;
  padding: 10px 10px;
  font-size: medium;
  transition: 0.3s ease;
}

.navbar .nav-menu .nav-link:hover {
  color: #3b141c;
  background: #f3961c;
}

.navbar :where(#menu-close-button, #menu-open-button) {
  display: none;
}

#contact {
  scroll-margin-top: 80px; /* match header height */
}

/* Hero section styling */
.hero-section {
  background-color: #72b1db;
  min-height: 100vh;
  padding-top: 250px;
}
.hero-section .section-content {
  display: flex;
  align-items: center;
  min-height: 100hv;
  color: #fff;
  justify-content: space-between;
}

.hero-section .hero-details .title {
  font-size: xx-large;
  color: #012e3f;
  font-family: "miniver", sans-serif;
}

.hero-section .hero-details .subtitle {
  font-size: x-large;
  line-height: 30px;
  margin-top: 8px;
  max-width: 70%;
  font-weight: 600;
}

.hero-section .hero-details .description {
  font-size: medium;
  line-height: 30px;
  max-width: 70%;
  margin: 24px 0 40px;
}

.hero-section .hero-details .buttons {
  display: flex;
  gap: 20px;
}

.hero-section .hero-details .button {
  padding: 10px 26px;
  border: 2px solid transparent;
  color: #3b141c;
  border-radius: 30px;
  background: #f3961c;
  font-weight: 600;
  transition: 0.3s ease;
}

.hero-section .hero-details .button:hover,
.hero-section .hero-details .contact-us {
  color: #fff;
  border-color: #fff;
  background: transparent;
}

.hero-section .hero-details .contact-us:hover {
  color: #3b141c;
  border-color: #f3961c;
  background: #f3961c;
}

.hero-section .hero-img-wrapper .hero-image {
  max-width: 500px;
  margin-right: 70px;
  object-fit: cover;
  border-radius: 40%;
}
/* About section styling */
.about-section {
  padding: 80px 0;
  background: antiquewhite;
}

.about-section .section-content {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
}

.about-section .about-image-wrapper .about-image {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 50%;
}

.about-section .about-details .section-title {
  padding: 0;
}

.about-section .about-details {
  max-width: 50%;
}
.about-section .about-details .text {
  line-height: 30px;
  margin: 50px 0 30px;
  text-align: center;
  font-size: medium;
}

.about-section .social-link-list {
  display: flex;
  gap: 25px;
  justify-content: center;
}

.about-section .social-link-list .social-link {
  color: #3b141c;
  font-size: large;
  transition: 0.2s ease;
}

.about-section .social-link-list .social-link:hover {
  color: #f3961c;
}

/* Menu section styling */

.menu-section {
  background: darkslategray;
  color: #fff;
  padding: 50px 0 100px;
}

.menu-section .menu-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 110px;
  justify-content: space-between;
}

.menu-section .menu-list .menu-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  justify-content: space-between;
  width: calc(100% / 3 - 110px);
}

.menu-section .menu-list .menu-item .menu-image {
  max-width: 85%;
  aspect-ratio: 1;
  margin-bottom: 10px;
  object-fit: contain;
}

.menu-section .menu-list .menu-item .name {
  margin: 12px 0;
  font-size: large;
  font-weight: 600;
}

.menu-section .menu-list .menu-item .text {
  font-size: medium;
  line-height: 1.5;
}

.quantity {
  display: block; /* Forces new line */
  font-weight: bold; /* Optional: make it stand out */
  color: #c9a270;
}

/* contact us section  stylin g */

.contact-section {
  padding: 50px 0 100px;
  background: rgb(233, 196, 202);
}

.contact-section .section-content {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  justify-content: space-between;
}

.contact-section .contact-info-list .contact-info {
  display: flex;
  gap: 20px;
  margin: 20px 0;
  align-items: center;
}

.contact-section .contact-info-list .contact-info i {
  font-size: medium;
}

/* Footer section styling */
.footer-section {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  background: #3b141c;
  z-index: 1000;
}

.footer-section .section-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-section :where(.Copyright-text, .social-link, .policy-link) {
  color: #fff;
  transition: 0.2s ease;
}

.footer-section .social-link-list {
  display: flex;
  gap: 25px;
}

.footer-section .social-link-list .social-link {
  font-size: large;
}

.footer-section .social-link-list .social-link:hover,
.footer-section .policy-text .policy-link:hover {
  color: #f3961c;
}

.footer-section .policy-text .seperator {
  color: #fff;
  margin: 0 5px;
}
/* Responsive media query for ax width 1024px */
@media screen and (max-width: 1024px) {
  .menu-section .menu-list {
    gap: 60px;
  }
  .menu-section .menu-list .menu-item {
    width: calc(100% / 3 - 60px);
  }
}

/* Responsive media query for ax width 900px */
@media screen and (max-width: 900px) {
  body.show-mobile-menu header::before {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.2);
  }

  .navbar :where(#menu-close-button, #menu-open-button) {
    display: block;
    font-size: 1.3rem;
  }

  .navbar #menu-close-button {
    position: absolute;
    color: blue;
    right: 30px;
    top: 30px;
  }

  .navbar #menu-open-button {
    color: #fff;
  }

  .navbar .nav-menu {
    display: block;
    position: fixed;
    left: -300px;
    top: 0;
    width: 300px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
    background: #fff;
    transition: left 0.2s ease;
  }

  body.show-mobile-menu .navbar .nav-menu {
    left: 0;
  }

  .navbar .nav-menu .nav-link {
    color: blue;
    margin-top: 5px;
    font-size: 1.1rem;
  }

  .hero-section .section-content {
    gap: 50px;
    text-align: center;
    padding: 30px 20px 20px;
    flex-direction: column-reverse;
    justify-content: center;
  }
  .hero-section .hero-details :is(.subtitle, .description),
  .about-section .about-details {
    max-width: 100%;
  }
  .hero-section .hero-details .buttons {
    justify-content: center;
  }

  .hero-section .hero-image-wrapper {
    max-width: 270px;
    margin-right: 0;
  }
  .about-section .section-content {
    flex-direction: column;
    gap: 70px;
  }
  .about-section .about-image-wrapper .about-image {
    width: 100%;
    height: 100%;
    max-width: 250px;
    aspect-ratio: 1;
  }
  .menu-section .menu-list {
    gap: 30px;
  }
  .menu-section .menu-list .menu-item {
    width: calc(100% / 2 - 30px);
  }
}

@media screen and (max-width: 640px) {
  .menu-section .menu-list {
    gap: 60px;
  }
  .menu-section .menu-list .menu-item {
    width: 100%;
  }
  .footer-section .section-content {
    flex-direction: column;
    gap: 20px;
  }
}
