/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #fff;
  color: #333;
  line-height: 1.6;
}

/* ============================================================
   HEADER SECTION — FULLY RESPONSIVE (Desktop + Mobile)
============================================================ */
.main-header {
  background: linear-gradient(to right, #005c00, #ff8c00);
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between; /* logo left, nav right */
  padding: 15px 60px;
  max-width: 1300px;
  margin: 0 auto;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  height: 55px;
}
.logo h1 {
  font-size: 1.7em;
  color: white;
  font-weight: 600;
}

/* NAVIGATION */
nav {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
}

nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 30px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 14px;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #ffd700;
  border-bottom: 2px solid #ffd700;
}

/* DASHBOARD BUTTON */
.dashboard-btn {
  background: #007a00;
  color: white !important;
  padding: 8px 15px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.dashboard-btn:hover {
  background: #005c00;
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.hamburger span {
  background: white;
  height: 3px;
  width: 26px;
  border-radius: 3px;
  transition: all 0.4s ease;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== MOBILE RESPONSIVE MENU ===== */
@media (max-width: 900px) {
  .header-container {
    flex-wrap: wrap;
    padding: 12px 25px;
  }

  nav {
    width: 100%;
    justify-content: center;
  }

  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background: linear-gradient(to right, #005c00, #ff8c00);
    padding: 20px 0;
    border-radius: 12px;
    margin-top: 15px;
    animation: slideDown 0.3s ease;
  }

  nav.active ul {
    display: flex;
  }

  nav ul li {
    margin: 10px 0;
  }

  .hamburger {
    display: flex;
    position: absolute;
    right: 25px;
    top: 20px;
  }

  @keyframes slideDown {
    from {opacity: 0; transform: translateY(-15px);}
    to {opacity: 1; transform: translateY(0);}
  }
}

/* ============================================================
   HERO SECTION
============================================================ */
.hero {
  background: url('assets/images/hero-bg.jpg') center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: white;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-content h1 {
  font-size: 3em;
  margin-bottom: 10px;
}
.hero-content p {
  font-size: 1.2em;
  margin-bottom: 20px;
}
.hero-btns a {
  text-decoration: none;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  margin: 5px;
  font-weight: 600;
  transition: 0.3s;
}
.hero-btns .btn-primary {
  background: #ff8c00;
}
.hero-btns .btn-secondary {
  background: #007a00;
}
.hero-btns a:hover {
  opacity: 0.85;
}

/* ============================================================
   MENU PAGE
============================================================ */
.page.menu {
  padding: 70px 20px;
  background: #fafafa;
  text-align: center;
}

.menu-heading {
  font-size: 2.6em;
  color: #004d00;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.menu-subtitle {
  color: #555;
  font-size: 1.1em;
  margin-bottom: 40px;
}

.menu-tabs {
  margin-bottom: 30px;
}

.menu-tabs .tab {
  background: #eee;
  border: none;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: bold;
}

.menu-tabs .tab.active, 
.menu-tabs .tab:hover {
  background: #007a00;
  color: #fff;
}

.menu-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.menu-card {
  background: #fff;
  width: 280px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fadeIn 1s ease forwards;
}
.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
.img-container {
  overflow: hidden;
  height: 200px;
}
.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.menu-card:hover img {
  transform: scale(1.08);
}
.menu-info {
  padding: 15px;
  text-align: left;
}
.menu-info h3 {
  color: #007a00;
  margin: 0;
  font-size: 1.2em;
}
.menu-info p {
  color: #555;
  font-size: 0.95em;
  margin: 8px 0 12px;
  line-height: 1.4;
  min-height: 50px;
}
.menu-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu-footer .price {
  color: #e68a00;
  font-weight: bold;
  font-size: 1.1em;
}
.order-btn {
  background: #007a00;
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 20px;
  transition: 0.3s;
}
.order-btn:hover {
  background: #005c00;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}

/* ============================================================
   SPECIALTIES, REVIEWS, ORDER FORM (unchanged but responsive)
============================================================ */
.specialties, .reviews {
  padding: 60px 20px;
  text-align: center;
}

.special-grid, .review-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.special-card, .review-card {
  background: white;
  width: 280px;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
}
.special-card:hover, .review-card:hover {
  transform: translateY(-5px);
}

.review-card {
  background: #f7f7f7;
}
.review-card h3 {
  color: #ff9900;
}
.review-card span {
  font-style: italic;
  color: #555;
  display: block;
  margin-top: 10px;
}

/* ORDER FORM */
.page.order {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}
.order-form {
  max-width: 600px;
  margin: 40px auto;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.order-form input, .order-form select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1em;
}
.order-form button {
  background: #007a00;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
.order-form button:hover {
  background: #005c00;
}
/* ===== FOOTER STYLING ===== */
.site-footer {
  background: linear-gradient(to right, #004d00, #ff8c00);
  color: white;
  padding: 50px 20px 20px;
  text-align: center;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.footer-about img {
  height: 60px;
  margin-bottom: 10px;
}

.footer-about h3 {
  color: #fff;
  margin-bottom: 10px;
}

.footer-about p {
  font-size: 0.95em;
  color: #f0f0f0;
}

.footer-links h4, 
.footer-contact h4 {
  margin-bottom: 10px;
  font-size: 1.2em;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin: 8px 0;
}

.footer-links ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 0.95em;
  transition: 0.3s;
}
.footer-links ul li a:hover {
  color: #ffd700;
}

.footer-social {
  margin-top: 10px;
}
.footer-social a {
  color: white;
  margin: 0 8px;
  font-size: 1.3em;
  transition: 0.3s;
}
.footer-social a:hover {
  color: #ffd700;
}

.footer-bottom {
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 10px;
  font-size: 0.9em;
  color: #f5f5f5;
}

/* ===== FOOTER RESPONSIVE ===== */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-about, .footer-links, .footer-contact {
    width: 100%;
  }

  .footer-social a {
    font-size: 1.4em;
  }
}
