* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  background: #fff;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

nav {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #8b4513, #d2691e);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  line-height: 1.1;
}

.logo span {
  display: block;
}

ul.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

ul.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

ul.nav-links a:hover {
  color: #8b4513;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.hero {
  height: 100vh;
  width: 100%;
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("image/Backg-2.jpg") no-repeat center center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 0 1rem;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.2s both;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #8b4513, #d2691e);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  animation: fadeInUp 1s ease 0.4s both;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(139, 69, 19, 0.4);
}

section {
  /* max-width: 1200px; */
  margin: 6rem auto 4rem auto;
  padding: 0 2rem;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #8b4513;
}

#about {
  background: #fcf8f1;
  border-radius: 20px;
  padding: 3rem 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

#about h2 {
  font-weight: 700;
  font-size: 2.8rem;
  color: #8b4513;
  text-align: center;
  margin-bottom: 1rem;
}

#about h3 {
  color: #8b4513;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

#about p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1.5rem;
  text-align: left;
}

#about .cta-button {
  display: block;
  margin: 0 auto;
  width: fit-content;
  background: #8b4513;
  color: white;
  padding: 1rem 3rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

#about .cta-button:hover {
  background: #d2691e;
}

#about img {
  margin-top: 2rem;
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Menu */
.menu-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.menu-item {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 1.5rem;
  transition: transform 0.3s;
}

.menu-item:hover {
  transform: translateY(-10px);
}

.menu-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1rem;
}

.menu-item h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #8b4513;
}

.price {
  font-weight: 700;
  font-size: 1.2rem;
  color: #d2691e;
}

/* Gallery */
.gallery {
  background: #fcf8f1;
  border-radius: 20px;
  padding: 3rem 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  height: 180px;
  border-radius: 20px;
  background-position: center;
  background-size: cover;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

/* Contact */
.contact {
  background: linear-gradient(135deg, #8b4513, #d2691e);
  color: white;
  border-radius: 20px;
  padding: 3rem 2rem;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-item i {
  font-size: 1.5rem;
  margin-right: 1rem;
  width: 30px;
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  font-family: inherit;
}

.submit-btn {
  background: white;
  color: #8b4513;
  border: none;
  width: 100%;
  padding: 1rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.1rem;
}

.submit-btn:hover {
  background: #f0f0f0;
}

footer {
  background: #2c2c2c;
  color: white;
  text-align: center;
  padding: 3rem 0;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.social-links a {
  color: white;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #d2691e;
}

@media (max-width: 768px) {
  ul.nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2rem;
    gap: 1.5rem;
    transition: left 0.3s ease;
    z-index: 9999;
  }

  ul.nav-links.active {
    left: 0;
  }

  .menu-toggle {
    display: block;
    color: #8b4513;
  }

  #about {
    padding: 2rem 1rem;
    margin: 6rem 1rem 4rem 1rem;
  }

  #about h2 {
    font-size: 2.2rem;
  }

  #about h3,
  #about p {
    font-size: 1rem;
    text-align: left;
  }

  #about .cta-button {
    margin: 0 auto;
  }

  #about img {
    width: 100%;
    max-width: 100%;
  }

  #menu {
    width: 100% !important;
    padding: 2rem 1rem !important;
  }

  #menu .section-title {
    font-size: 2.2rem;
  }

  #gallery {
    width: 100% !important;
    padding: 2rem 1rem !important;
  }

  #gallery .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 600px) {
  #visit-us {
    padding: 2rem 1rem;
    max-width: 95%;
  }

  #menu {
    padding: 2rem 1rem !important;
  }

  #menu .section-title {
    font-size: 1.8rem;
  }

  #gallery {
    padding: 2rem 1rem !important;
  }

  #gallery .section-title {
    font-size: 1.8rem;
  }
}
