@import url("https://fonts.googleapis.com/css2?family=Miniver&family=Outfit:wght@100..900&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", serif;
}

:root {
  --white-color: #fff;
  --dark-color: #252525;
  --primary-color: #3b141c;
  --secondary-color: #f3961c;
  --light-pink-color: #faf4f5;
  --medium-gray-color: #ccc;

  --font-size-s: 0.9rem;
  --font-size-n: 1rem;
  --font-size-m: 1.12rem;
  --font-size-l: 1.5rem;
  --font-size-xl: 2rem;
  --font-size-xxl: 2.3rem;

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  --border-radius-s: 8px;
  --border-radius-m: 30px;
  --border-radius-circle: 50%;

  --site-max-width: 1300px;
}
html {
  scroll-behavior: smooth;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
}
img {
  width: 100%;
}
.section-content {
  margin: 0 auto;
  padding: 0 20px;
  max-width: var(--site-max-width);
}
.section-title {
  text-align: center;
  padding: 60px 0 65px;
  text-transform: uppercase;
}
.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 5px;
  background-color: var(--secondary-color);
  margin: 8px auto 0;
  border-radius: var(--border-radius-s);
}

/* Header section */

header {
  position: fixed;
  width: 100%;
  z-index: 5;
  background: var(--primary-color);
}

/* Navbar Section */

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}
.navbar .nav-menu {
  display: flex;
  gap: 10px;
}
.navbar .nav-logo .logo-text {
  color: var(--white-color);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
}
.navbar .nav-menu .nav-link {
  padding: 10px 18px;
  color: var(--white-color);
  border-radius: var(--border-radius-m);
  font-size: var(--font-size-m);
  transition: 0.3s ease;
}
.navbar .nav-menu .nav-link:hover {
  background: var(--secondary-color);
  color: var(--dark-color);
}
.navbar :where(#menu-close-button, #menu-open-button) {
  display: none;
}

/* Hero Section */

.hero-section {
  background: var(--primary-color);
  min-height: 100vh;
}
.hero-section .section-content {
  display: flex;
  color: var(--white-color);
  min-height: 100vh;
  align-items: center;
  margin-left: 20px;
  justify-content: space-between;
}
.hero-section .hero-details{
  max-width: 700px;
}

.hero-section .hero-details .title {
  font-size: var(--font-size-xxl);
  color: var(--secondary-color);
  font-family: "Miniver", sans-serif;
}
.hero-section .hero-details .subtitle {
  margin: 8px 0;
  max-width: 700px;
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
}
.hero-section .hero-details .description {
  font-size: var(--font-size-m);
  max-width: 680px;
  margin: 24px 0 40px;
}
.hero-section .hero-details .buttons {
  display: flex;
  gap: 20px;
}
.hero-section .hero-image-wrapper {
  max-width: 450px;
  margin-right: 60px;
  margin-top: 50px;
}
.hero-section .hero-details .button {
  padding: 10px 26px;
  border: 2px solid transparent;
  background: var(--secondary-color);
  color: var(--primary-color);
  border-radius: var(--border-radius-m);
  font-weight: var(--font-weight-medium);
  transition: 0.3s ease;
}
.hero-section .hero-details .buttons {
  display: flex;
  gap: 20px;
}
.hero-section .hero-details .button:hover,
.hero-section .hero-details .contact-us {
  background: transparent;
  border-color: var(--white-color);
  color: var(--white-color);
}
.hero-section .hero-details .contact-us:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  border-color: var(--secondary-color);
}

/* About section */

.about-section {
  padding: 120px 0;
  background-color: var(--light-pink-color);
}
.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: var(--border-radius-circle);
}

.about-section .about-details .text {
  line-height: 30px;
  margin: 50px 0 30px;
  text-align: center;
  font-size: var(--font-size-m);
}
.about-section .about-details .section-title {
  padding: 0;
}
.about-section .social-link-list {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.about-section .social-link-list .social-link {
  color: var(--primary-color);
  font-size: var(--font-size-l);
  transition: 0.3s ease;
}
.about-section .social-link-list .social-link:hover {
  color: var(--secondary-color);
}

/* Discount section */

.discount-section {
  background-color: var(--secondary-color);
  color: var(--white-color);
  padding-bottom: 30px;
  text-align: center;
}
.discount-section .section-title {
  font-size: var(--font-size-xxl);
  color: var(--primary-color);
  padding: 30px;
}
.discount-section .section-title::after {
  background-color: var(--primary-color);
}
.discount-section .text {
  font-size: var(--font-size-l);
  font-weight: var(--font-weight-bold);
  margin-bottom: 20px;
  color: var(--primary-color);
}

.discount-button .discount-form {
  display: flex;
  justify-content: center;
  align-items: center;
}
.discount-section .discount-form input {
  padding: 10px 20px;
  border: none;
  border-radius: var(--border-radius-s);
  margin-right: 10px;
}
.discount-section .discount-form input:focus {
  outline: none;
}
.discount-section .discount-form .btn {
  padding: 10px 20px;
  border: none;
  border-radius: var(--border-radius-s);
  background-color: var(--primary-color);
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
}
.discount-section .discount-form .btn:hover {
  background-color: var(--white-color);
  color: var(--dark-color);
}

/* Menu section  */

.menu-section {
  background-color: var(--dark-color);
  padding: 50px 20px;
  color: var(--white-color);
  padding-bottom: 80px;
}
.menu-section .menu-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.menu-section .menu-list .menu-item {
  padding: 30px;
  border-radius: var(--border-radius-s);
  background-color: var(--white-color);
  color: var(--dark-color);
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  transition:all 0.3s ease-in-out;
}

.menu-section .menu-list .menu-item:hover {
  background-color: var(--white-color);
  box-shadow: 0 0 10px rgba(236, 229, 229, 0.89);
  color: var(--dark-color);
  transform: scale(1.03);
  cursor: pointer;
}
.menu-section .menu-list .menu-item:hover .menu-image {
  transform: scale(1.15);
}
.menu-section .menu-list .menu-item .menu-image {
  width: 100%;
  height: 250px;
  object-fit: contain;
  border-radius: var(--border-radius-s);
  transition:all 0.3s ease-in-out;
}
.menu-section .menu-list .menu-item .text {
  font-size: var(--font-size-m);
  color: var(--primary-color);
}

.menu-section .menu-list .menu-item .name {
  font-size: var(--font-size-l);
  font-weight: var(--font-weight-bold);
}

/* Testimonials Section */

.testimonials-section {
  padding: 50px 0 100px;
  background-color: var(--light-pink-color);
}
.testimonials-section .wrapper {
  overflow: hidden;
  margin: 0 30px 30px;
}
.testimonials-section .testimonial .user-image {
  width: 200px;
  height: 200px;
  margin-bottom: 20px;
  object-fit: cover;
  border-radius: var(--border-radius-circle);
}

.testimonials-section .testimonial .name {
  font-style: var(--font-size-m);
  color: var(--primary-color);
  /* margin-bottom: 10px; */
}
.testimonials-section .testimonial .feedback {
  text-align: center;
  line-height: 25px;
  margin-bottom: 40px;
}
.testimonials-section .testimonial {
  display: flex;
  gap: 20px;
  padding: 40px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.testimonials-section .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--secondary-color);
  opacity: 1;
}

.testimonials-section .swiper-slide-button {
  margin-top: -80px;
  color: var(--secondary-color);
  transition: all 0.3s ease-in-out;
}
.testimonials-section .swiper-slide-button:hover {
  color: var(--primary-color);
}

/* Gallery Section */

.gallery-section {
  padding: 50px 0 100px;
}
.gallery-section .gallery-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.gallery-section .gallery-list .gallery-item {
  position: relative;
  overflow: hidden;
  width: 300px;
  height: 250px;
  border-radius: var(--border-radius-s);
  transform: none;
}
.gallery-section .gallery-item .gallery-image {
  width: 300px;
  height: 250px;
  object-fit: cover;
  border-radius: var(--border-radius-s);
  transition: all 0.3s ease-in-out;
}
.gallery-section .gallery-item .gallery-item-details {
  display: none;
}
.gallery-section .gallery-item:hover .gallery-image {
  transform: scale(1.2);
}

.gallery-section .gallery-item:hover .gallery-item-details {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: var(--white-color);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  flex-direction: column;
  gap: 20px;
}
.gallery-section .gallery-item:hover .gallery-item-details .name {
  color: var(--secondary-color);
  font-size: var(--font-size-l);
}

/* Map Section */
.map-section {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
.map {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: brightness(60%);
}
.map-form {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
  width: 50%;
  height: 100%;
  display: flex;
  text-align: center;
  align-items: center;
  flex-direction: column;
  justify-content: start;
}
.map-form :where(.text-field, .input-field) {
  width: 70%;
  height: 50px;
  background-color: var(--white-color);
  border-radius: var(--border-radius-s);
  padding: 10px;
  margin: 10px 0;
  border: 1px solid var(--medium-gray-color);
  transition: 0.3s ease;
}
.map-form .section-title {
  color: var(--white-color);
  padding: 40px;
}

.map-form .text-field {
  height: 80px;
  resize: none;
}
.map-form :where(.text-field, .input-field):focus {
  outline: none;
  border-color: var(--secondary-color);
}
.map-form .btn {
  width: 70%;
  height: 50px;
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-s);
  padding: 10px;
  margin: 20px;
  transition: 0.3s ease;
}
.map-form .btn:hover {
  background-color: var(--white-color);
  color: var(--dark-color);
  border: 1px solid var(--primary-color);
}


.footerr-section {
  background-color: var(--dark-color);
  color: var(--white-color);
  padding: 40px 0;
  font-size: var(--font-size-s);
  /* text-align: center; */
}
.footerr-section .section-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  gap: 100px;
}
.footerr-section .section-content .about {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 20px;
  align-items: flex-start;
}

.footerr-section .section-content .contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 15px;
  align-items: flex-start;
}
.footerr-section .section-content .contact-info-list .contact-info {
  display: flex;
  gap: 10px;
  font-size: var(--font-size-n);
  margin-top: 15px;
  align-items: center;
}
.footerr-section .section-content .timing {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 20px;
  align-items: flex-start;
}
.footerr-section .section-content .timing .timing-info-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 15px;
}
.footerr-section .section-content .timing .timing-info {
  
  display: flex;
  gap: 20px;
  font-size: var(--font-size-n);
  margin: 4px;
  align-items: center;
}
.footerr-section .section-content .social-icons {
  display: flex;
  gap: 40px;
  margin: 20px;
  align-items: flex-start;
}

.footerr-section .section-content .social-icons a {
  color: var(--white-color);
  transition: 0.3s ease;
  font-size: var(--font-size-m);
}
.footerr-section .section-content .social-icons a:hover {
  color: var(--secondary-color);
}
.footerr-section .section-content .newsletter {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 20px;
  align-items: flex-start;
}
.footerr-section .section-content .newsletter p {
  font-size: var(--font-size-n);
  margin-top: 5px;
}

.footerr-section .section-content .newsletter .newsletter-form {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footerr-section .section-content .newsletter .newsletter-form input {
  padding: 10px 20px;
  border: none;
  border-radius: var(--border-radius-s);
  margin-right: 10px;
}
.footerr-section .section-content .newsletter .newsletter-form input:focus {
  outline: none;
}
.footerr-section .section-content .newsletter .newsletter-form .btn {
  padding: 10px 15px;
  border: none;
  border-radius: var(--border-radius-s);
  background-color: var(--secondary-color);
  color: var(--dark-color);
  transition: all 0.3s ease-in-out;
}
.footerr-section .section-content .newsletter .newsletter-form .btn:hover {
  background-color: var(--white-color);
  color: var(--dark-color);
}
.footerr-section .section-content .social-icons ul {
  display: flex;
  gap: 20px;
}
.footerr-section .section-content .social-icons ul i:hover {
  color: var(--secondary-color);
}

/* Dev info */
.dev-info {
  background-color: var(--primary-color);
  color: var(--white-color);
}
.dev-info .section-content {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 60px;
  padding: 20px;
  padding-bottom: 20px;
  font-size: var(--font-size-m);
  text-align: center;
  width: 100%;
  height: 70px;
}

/* ScrollButton  */

.scrollToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #8b4513;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s, transform 0.3s;
  opacity: 0.5;
}

.scrollToTopBtn a {
  color: var(--white-color);
}
.scrollToTopBtn:hover {
  opacity: 1;
  background-color: var(--secondary-color);
  transform: scale(1.1);
}

@media screen and (max-width: 900px) {
  :root {
    --font-size-m: 1rem;
    --font-size-l: 1.3rem;
    --font-size-xl: 1.5rem;
    --font-size-xxl: 1.8rem;
  }
  body.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.5);
  }

  .navbar :where(#menu-close-button, #menu-open-button) {
    display: block;
    font-size: var(--font-size-l);
  }
  .navbar #menu-close-button {
    position: absolute;
    right: 30px;
    top: 30px;
  }
  .navbar #menu-open-button {
    color: var(--white-color);
  }

  .navbar .nav-menu {
    display: block;
    position: fixed;
    width: 300px;
    height: 100%;
    left: -300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 0;
    background-color: var(--white-color);

    transition: left 0.2s ease;
  }

  body.mobile-menu .navbar .nav-menu {
    left: 0;
  }

  .navbar .nav-menu .nav-link {
    color: var(--dark-color);
    display: block;
    margin-top: 17px;
    font-size: var(--font-size-l);
  }

  .hero-section .section-content {
    gap: 50px;
    text-align: center;
    padding: 80px 20px 20px;
    flex-direction: column-reverse;
    justify-content: center;
  }
  .hero-section .hero-image-wrapper {
    max-width: 270px;
    margin-right: 0;
    height: 300px;
    margin-top: 50px;
  }

  .hero-section .hero-details :is(.subtitle, .description),
  .about-section .about-details {
    max-width: 100%;
  }
  .hero-section .hero-details .buttons {
    justify-content: center;
  }

  .about-section .section-content {
    flex-direction: column-reverse;
    gap: 50px;
  }

  .about-section .about-image-wrapper .about-image {
    width: 100%;
    height: 100%;
    max-width: 250px;
    aspect-ratio: 1;
  }
  
  .footerr-section .section-content {
    flex-direction: column;
    gap: 20px;
  }
  .map-section .map-form {
    width: 100%;
    height: 100%;
  }
  .info-container {
    width: 100%;
  }
  .info-container h2 {
    padding: 30px;
  }
  .info-container p {
    padding: 8px;
  }
}
@media screen and (max-width: 576px) {
  .testimonials-section .swiper-slide-button {
    display: none;
  }
}