* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}


html {
  scroll-behavior: smooth;
}


body {
  background: #f8f8f8;
  color: #222;
  line-height: 1.6;
}


/* Header */
header {
  background: #222;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}


.navbar {
  max-width: 1100px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.navbar h1 {
  font-size: 24px;
}


.navbar ul {
  display: flex;
  list-style: none;
}


.navbar ul li {
  margin-left: 20px;
}


.navbar ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}


.navbar ul li a:hover {
  color: #ff9800;
}


.menu-btn {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}


/* Hero */
.hero {
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
              url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4") center/cover;
  color: white;
  text-align: center;
  padding: 110px 20px;
}


.hero h2 {
  font-size: 42px;
  margin-bottom: 10px;
}


.hero p {
  font-size: 18px;
  margin-bottom: 25px;
}


.btn {
  background: #ff9800;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}


/* General Section */
section {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
}


section h2 {
  font-size: 34px;
  margin-bottom: 15px;
}


/* Divider */
.staff-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 45px;
  color: #ff9800;
  font-size: 24px;
}


.staff-divider span {
  width: 60px;
  height: 3px;
  background: #ff9800;
  border-radius: 10px;
}


/* Menu Section */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}


.menu-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transition: 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
}


.menu-card.show {
  opacity: 1;
  transform: translateY(0);
}


.menu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.18);
}


.menu-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.4s ease;
}


.menu-card:hover img {
  transform: scale(1.08);
}


.menu-info {
  padding: 22px;
  text-align: center;
}


.menu-info h3 {
  color: #ff9800;
  font-size: 24px;
  margin-bottom: 10px;
}


.menu-info p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}


.menu-info strong {
  font-size: 22px;
  color: #222;
}


/* Staff Section */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 850px;
  margin: auto;
}


.card {
  background: white;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  text-align: center;
  transition: 0.3s;
}


.card:hover {
  transform: translateY(-7px);
}


.staff-img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #ff9800;
  margin-bottom: 20px;
}


#staff h3 {
  color: #ff9800;
  font-size: 24px;
  margin-bottom: 8px;
}


.staff-name {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #222;
}


.staff-text {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}


/* About & Contact */
#about p,
#contact p {
  max-width: 700px;
  margin: 10px auto;
  font-size: 17px;
}


footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 20px;
}


/* Tablet */
@media (max-width: 900px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }


  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* Mobile */
@media (max-width: 768px) {
  .menu-btn {
    display: block;
  }


  .navbar ul {
    display: none;
    flex-direction: column;
    background: #222;
    position: absolute;
    top: 63px;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 15px 0;
  }


  .navbar ul.show {
    display: flex;
  }


  .navbar ul li {
    margin: 12px 0;
  }


  .hero h2 {
    font-size: 30px;
  }


  .hero {
    padding: 85px 20px;
  }
}


/* Small Mobile */
@media (max-width: 600px) {
  .menu-grid,
  .cards {
    grid-template-columns: 1fr;
  }


  .menu-card img {
    height: 240px;
  }


  .staff-img {
    width: 170px;
    height: 170px;
  }


  section h2 {
    font-size: 30px;
  }
}


/* About Section */
.about-container {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 30px;
}


.about-image {
  flex: 1;
}


.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}


.about-content {
  flex: 1;
  text-align: left;
}


.about-content h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #ff9800;
}


.about-content p {
  margin-bottom: 20px;
  color: #555;
  line-height: 1.8;
  font-size: 17px;
}


.about-features {
  display: flex;
  gap: 20px;
  margin-top: 25px;
}


.feature-box {
  background: white;
  padding: 20px;
  border-radius: 15px;
  flex: 1;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}


.feature-box:hover {
  transform: translateY(-5px);
}


.feature-box h4 {
  margin-top: 10px;
  color: #222;
}


/* Mobile */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
  }


  .about-content {
    text-align: center;
  }


  .about-features {
    flex-direction: column;
  }
}


/* Contact Section */
.contact-container {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}


.contact-info {
  flex: 1;
  display: grid;
  gap: 20px;
}


.contact-box {
  background: white;
  padding: 25px;
  border-radius: 15px;
  text-align: left;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}


.contact-box:hover {
  transform: translateY(-5px);
}


.contact-box h3 {
  color: #ff9800;
  margin-bottom: 10px;
}


.contact-box p {
  color: #555;
  line-height: 1.7;
}


.contact-form {
  flex: 1;
}


.contact-form form {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}


.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 18px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 16px;
  outline: none;
}


.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff9800;
}


.contact-form button {
  background: #ff9800;
  color: white;
  border: none;
  padding: 14px 25px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}


.contact-form button:hover {
  background: #e68900;
}


/* Mobile */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
  }


  .contact-box {
    text-align: center;
  }
}


#submit-btn {
  position: relative;
}


#submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}


#form-message {
  margin-top: 15px;
  font-weight: bold;
  font-size: 16px;
}


/* Footer */
footer {
  background: #1c1c1c;
  color: white;
  margin-top: 60px;
}


.footer-container {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}


.footer-box h3 {
  color: #ff9800;
  margin-bottom: 20px;
  font-size: 24px;
}


.footer-box p {
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 10px;
}


.footer-box a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin-bottom: 12px;
  transition: 0.3s;
}


.footer-box a:hover {
  color: #ff9800;
  padding-left: 5px;
}


.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 20px;
}


.footer-bottom p {
  color: #aaa;
  font-size: 15px;
}


/* Mobile */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.menu-info strong {
  display: inline-block;
  background: #ff9800;
  color: white;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 20px;
  margin-top: 10px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.review-card {
  background: white;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.review-card:hover {
  transform: translateY(-7px);
}

.stars {
  color: #ff9800;
  font-size: 24px;
  margin-bottom: 15px;
}

.review-card p {
  color: #555;
  line-height: 1.8;
  font-size: 16px;
}

.review-card h3 {
  margin-top: 20px;
  color: #222;
  font-size: 18px;
}

@media (max-width: 900px) {
  .review-grid {
    grid-template-columns: 1fr;
  }
}