* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #fff8f0;
  color: #222;
}

header {
   background: linear-gradient(90deg, #111, #2b1b12);
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  max-width: 1400px;
  margin: auto;
  min-height: 140px;
  padding: 10px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar h1 {
  font-size: 26px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 34px;
  cursor: pointer;
}

.hero {
  min-height: 85vh;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
  url("https://images.unsplash.com/photo-1633945274405-b6c8069047b0?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.hero h2 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 20px;
}

.btn {
  background: #ffcc00;
  padding: 13px 25px;
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
  color: black;
  border-radius: 7px;
  font-weight: bold;
}

.section {
  padding: 60px 20px;
  text-align: center;
}

.section h2 {
  margin-bottom: 30px;
  color: #8b0000;
  font-size: 34px;
}

.menu-box,
.staff-box {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

.item {
  background: white;
  width: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.item h3,
.item p,
.item span {
  margin: 12px;
}

.item span {
  display: block;
  font-weight: bold;
  color: green;
  font-size: 20px;
}

.staff {
  background: white;
  width: 250px;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.staff img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.about-box {
  max-width: 800px;
  margin: auto;
  line-height: 1.8;
  font-size: 18px;
}

.contact p {
  font-size: 18px;
  margin: 10px;
}

.footer {
  background: #111;
  color: white;
  padding: 40px 25px 20px;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.footer a {
  color: #ffcc00;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  margin-top: 25px;
  border-top: 1px solid #333;
  padding-top: 15px;
}

/* MOBILE NAVBAR */
@media (max-width: 768px) {
  .navbar {
  min-height: 90px;
  padding: 10px 15px;
}

  .navbar h1 {
    font-size: 23px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    background: #8b0000;
    margin-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.3);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    text-align: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }

  .navbar {
    flex-wrap: wrap;
  }

  .hero h2 {
    font-size: 34px;
  }

  .hero p {
    font-size: 17px;
  }

  .item,
  .staff {
    width: 100%;
    max-width: 350px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 80px;
}

.contact-box {
  background: white;
  max-width: 500px;
  margin: 20px auto;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-box h3 {
  margin-bottom: 15px;
  color: #8b0000;
}

.contact-box p {
  font-size: 18px;
  margin: 10px 0;
  line-height: 1.6;
}

.footer h3 {
  color: #ffcc00;
}

.reviews {
  background: #fff;
}

.reviews-box {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.review {
  background: #fff8f0;
  width: 300px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.review p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.review h4 {
  margin-top: 10px;
  color: #8b0000;
}

.contact {
  background: #fff8f0;
}

.contact-wrapper {
  max-width: 1000px;
  margin: auto;
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-card {
  background: white;
  width: 450px;
  padding: 30px;
  border-radius: 15px;
  text-align: left;
  box-shadow: 0 5px 18px rgba(0,0,0,0.12);
}

.contact-card h3 {
  color: #8b0000;
  font-size: 26px;
  margin-bottom: 5px;
}

.contact-card h4 {
  color: #444;
  margin-bottom: 20px;
}

.contact-card p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.contact-card a {
  color: #8b0000;
  font-weight: bold;
  text-decoration: none;
}

.contact-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.whatsapp {
  background: #25d366;
  color: white !important;
}

.contact-card form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 13px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
}

.contact-card textarea {
  resize: none;
}

.contact-card button {
  background: #8b0000;
  color: white;
  padding: 13px;
  border: none;
  border-radius: 8px;
  font-size: 17px;
  font-weight: bold;
  cursor: pointer;
}

.contact-card button:hover {
  background: #650000;
}

@media (max-width: 768px) {
  .contact-card {
    width: 100%;
  }

  .contact-buttons {
    flex-direction: column;
  }

  .contact-buttons .btn {
    text-align: center;
  }
}