@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Oswald:wght@200..700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-color: #f1f1f1;
  --bg-secondary: #fbfb;
  --dark-gray: #333;
  --light-brown: #c7a17a;
  --black: #1f2226;
}
body {
  font-family: "Open Sans", sans-serif;
}
h1,
h2,
h3 {
  font-family: "Oswald", sans-serif;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
/*utility classes */
.container {
  max-width: 80%;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
/*header start */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
    height: 120px;
  background-color: #fff;
  width: 100%;
  border-bottom: 1px solid #cccccc;
  z-index: 1200;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#header .navbar {
  display: flex;
  align-items: center;
  height: 120px;
  width: 100%;
  padding: 0 50px;
  box-sizing: border-box;
  gap: 20px;
}

#header .navbar .logo {
  width: 100px;
  display: block;
}

#header .nav-toggle {
  display: inline-flex;
  background: transparent;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  padding: 10px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  transition: all 0.3s ease;
  margin-left: auto;
}

#header .nav-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  background-color: var(--black);
  border-radius: 10px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#header .nav-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

#header .nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

#header .nav-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

#header .nav-links {
  position: fixed;
  top: 0;
  left: -280px;
  height: 100%;
  width: 260px;
  background-color: #fff;
  box-shadow: 10px 0 24px rgba(0, 0, 0, 0.12);
  padding: 120px 24px 32px;
  transition: left 0.3s ease;
  z-index: 1210;
}

#header .nav-links.open {
  left: 0;
}

#header .nav-links ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

#header .nav-links ul li a {
  color: var(--dark-gray);
  font-size: 20px;
  margin: 0;
  padding: 12px 0;
  width: 100%;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-transform: capitalize;
  border-bottom: 1px solid #f1f1f1;
}

#header .nav-links ul li:last-child a {
  border-bottom: none;
}

#header .nav-links ul li a:hover {
  color: var(--light-brown);
  font-weight: 700;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);
  z-index: 1190;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.show {
  display: block;
  opacity: 1;
}

@media (max-width: 960px) {
  #header .navbar {
    height: 88px;
    padding: 0 20px;
  }
}
/* header end */
/* home start */
#home {
  background-color: var(--bg-color);
  padding-top: 120px;
  padding-bottom: 60px;
  min-height: 100vh;
  box-sizing: border-box;
}

#home .home-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 180px);
  gap: 40px;
  align-items: center;
}

#home .home-text {
  text-align: left;
}

#home .home-text h3 {
  font-size: 24px;
  color: var(--light-brown);
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

#home .home-text h1 {
  font-size: 80px;
  color: var(--black);
  margin: 20px 0;
  line-height: 1.2;
  font-weight: 700;
}

#home .home-text p {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

#home .home-text .established {
  font-size: 16px;
  color: var(--light-brown);
  font-weight: 700;
  margin-bottom: 30px;
}

#home .home-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

#home .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

#home .btn-primary {
  background-color: var(--light-brown);
  color: white;
}

#home .btn-primary:hover {
  background-color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#home .btn-secondary {
  background-color: transparent;
  color: var(--black);
  border: 2px solid var(--light-brown);
}

#home .btn-secondary:hover {
  background-color: var(--light-brown);
  color: white;
  transform: translateY(-2px);
}

#home .home-image {
  grid-column: 2;
  justify-self: end;
  width: min(100%, 560px);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

#home .home-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
}

#home .home-image:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  #home .home-content {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 30px;
  }

  #home .home-image {
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
  }

  #home .home-text h1 {
    font-size: 50px;
  }

  #home .home-buttons {
    flex-direction: column;
  }

  #home .btn {
    width: 100%;
    justify-content: center;
  }
}
/* home end */

/* menu section start */
#menu-section {
  background-color: var(--bg-color);
  padding-top: 120px;
  padding-bottom: 60px;
  min-height: 100vh;
  box-sizing: border-box;
}

#menu-section .menu-title {
  text-align: center;
  font-size: 60px;
  color: var(--black);
  margin-bottom: 50px;
  font-weight: 700;
}

#menu-section .menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

#menu-section .menu-item {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

#menu-section .menu-item:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

#menu-section .menu-item-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

#menu-section .menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

#menu-section .menu-item:hover .menu-item-image img {
  transform: scale(1.05);
}

#menu-section .menu-item-content {
  padding: 20px;
  text-align: center;
}

#menu-section .menu-item-name {
  font-size: 22px;
  color: var(--black);
  margin-bottom: 10px;
  font-weight: 700;
}

#menu-section .menu-item-price {
  font-size: 24px;
  color: var(--light-brown);
  font-weight: 700;
  margin: 0;
}
/* menu section end */

/* about section start */
#about-section {
  background-color: var(--bg-color);
  padding-top: 120px;
  padding-bottom: 60px;
  min-height: 100vh;
  box-sizing: border-box;
}

#about-section .about-title {
  text-align: center;
  font-size: 60px;
  color: var(--black);
  margin-bottom: 50px;
  font-weight: 700;
}

#about-section .about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

#about-section .about-text {
  line-height: 1.8;
}

#about-section .about-text h2 {
  font-size: 28px;
  color: var(--black);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 700;
}

#about-section .about-text p {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
}

#about-section .about-list {
  list-style: none;
  margin-left: 20px;
}

#about-section .about-list li {
  font-size: 16px;
  color: #555;
  margin: 10px 0;
  padding-left: 25px;
  position: relative;
}

#about-section .about-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--light-brown);
  font-weight: bold;
}

#about-section .about-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

#about-section .about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  #about-section .about-content {
    grid-template-columns: 1fr;
  }
}
/* about section end */

/* testimonials section start */
#testimonials-section {
  background-color: white;
  padding-top: 120px;
  padding-bottom: 60px;
  min-height: 100vh;
  box-sizing: border-box;
}

#testimonials-section .testimonials-title {
  text-align: center;
  font-size: 60px;
  color: var(--black);
  margin-bottom: 50px;
  font-weight: 700;
}

#testimonials-section .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

#testimonials-section .testimonial-card {
  background-color: var(--bg-color);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

#testimonials-section .testimonial-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

#testimonials-section .testimonial-text {
  font-size: 16px;
  color: #555;
  font-style: italic;
  margin-bottom: 20px;
  flex-grow: 1;
}

#testimonials-section .testimonial-author {
  font-size: 16px;
  color: var(--black);
  font-weight: 700;
  margin-bottom: 15px;
}

#testimonials-section .testimonial-rating {
  display: flex;
  gap: 8px;
}

#testimonials-section .testimonial-rating i {
  color: var(--light-brown);
  font-size: 14px;
}
/* testimonials section end */

/* contact section start */
#contact-section {
  background-color: var(--bg-color);
  padding-top: 120px;
  padding-bottom: 60px;
  min-height: 100vh;
  box-sizing: border-box;
}

#contact-section .contact-title {
  text-align: center;
  font-size: 60px;
  color: var(--black);
  margin-bottom: 50px;
  font-weight: 700;
}

#contact-section .contact-content {
  display: grid;
  grid-template-columns: minmax(320px, 820px);
  justify-content: center;
  margin: 0 auto;
  padding: 0 20px;
}

#contact-section .contact-info {
  background-color: white;
  width: 100%;
  margin: 0 auto;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

#contact-section .contact-info h2 {
  font-size: 28px;
  color: var(--black);
  margin-bottom: 30px;
  font-weight: 700;
}

#contact-section .info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

#contact-section .info-item i {
  font-size: 24px;
  color: var(--light-brown);
  min-width: 30px;
  margin-top: 5px;
}

#contact-section .info-item h3 {
  font-size: 18px;
  color: var(--black);
  margin-bottom: 8px;
  font-weight: 700;
}

#contact-section .info-item p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

#contact-section .social-links {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #ddd;
}

#contact-section .social-links h3 {
  font-size: 18px;
  color: var(--black);
  margin-bottom: 15px;
  font-weight: 700;
}

#contact-section .socials {
  display: flex;
  gap: 15px;
}

#contact-section .social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-brown);
  color: white;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 18px;
}

#contact-section .social-icon:hover {
  background-color: var(--black);
  transform: translateY(-2px);
}

#contact-section .contact-form {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

#contact-section .contact-form h2 {
  font-size: 28px;
  color: var(--black);
  margin-bottom: 30px;
  font-weight: 700;
}

#contact-section .form-group {
  margin-bottom: 20px;
}

#contact-section .form-group label {
  display: block;
  font-size: 14px;
  color: var(--black);
  font-weight: 700;
  margin-bottom: 8px;
}

#contact-section .form-group input,
#contact-section .form-group textarea {
  width: 100%;
  padding: 12px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: "Open Sans", sans-serif;
  transition: border-color 0.3s ease;
}

#contact-section .form-group input:focus,
#contact-section .form-group textarea:focus {
  outline: none;
  border-color: var(--light-brown);
}

#contact-section .btn {
  background-color: var(--light-brown);
  color: white;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

#contact-section .btn:hover {
  background-color: var(--black);
}

@media (max-width: 768px) {
  #contact-section .contact-content {
    grid-template-columns: 1fr;
    padding: 0 12px;
  }

  #contact-section .contact-info {
    padding: 24px;
  }
}
/* contact section end */
