/* --- Imports & Fonts (Matches Homepage) --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --primary-gold: #bf9225;
  --bg-white: #ffffff;
  --text-dark: #191e2a;
  --text-gray: #666666;
  --radius: 15px;

  --bg-cream: #f9f8f4;
  --border-light: #e5e7eb;
  --badge-bg: #bf9225;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.menu-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.top-header {
  background-color: var(--bg-white);
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
}

.back-home {
  font-weight: 600;
  color: var(--primary-gold);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
}

.back-home i {
  color: var(--primary-gold);
  font-size: 14px;
}

.back-home:hover {
  color: var(--primary-gold);
  opacity: 1;
}

.back-home:hover i {
  color: var(--primary-gold);
  transform: none;
}
@media (max-width: 768px) {
  .back-home {
    font-size: 13px;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .back-home {
    font-size: 13px;
    gap: 6px;
  }

  .back-home i {
    font-size: 13px;
  }

  .back-home span {
    display: inline;
  }
}

.btn {
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background-color: var(--primary-gold);
  color: #fff;
}

.btn-primary:hover {
  opacity: 0.9;
}

.menu-hero {
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
              url('images/menu.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  min-height: 338.5px;
  padding: 150px 20px 70px;
  margin-bottom: 40px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.menu-hero h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
}

.menu-hero h1 i {
  color: var(--primary-gold);
}

.menu-hero p {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 60px;
}

.menu-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.badge {
  background-color: var(--badge-bg);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
  display: inline-block;
}

.menu-card .menu-card-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  gap: 12px;
}

.menu-card .badge {
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background-color: var(--primary-gold) !important;
  color: #fff !important;
  position: static !important;
  transform: none !important;
}

.menu-card .price-info {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  text-align: right !important;
  margin-left: auto !important;
  position: static !important;
}

.price-info {
  text-align: right;
  line-height: 1.2;
}

.price {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-gold);
}

.per-head {
  display: block;
  font-size: 0.7rem;
  color: #9ca3af;
}

.menu-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.menu-section {
  margin-bottom: 18px;
}

.menu-section-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.menu-section-title i {
  font-size: 0.9rem;
  width: 16px;
  text-align: center;
}

.menu-section ul {
  padding-left: 5px;
}

.menu-section ul li {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 4px;
  padding-left: 15px;
  position: relative;
}

.menu-section ul li::before {
  content: "•";
  color: #d1d5db;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.cta-banner {
  padding: 0 20px 60px 20px;
}

.cta-content {
  background-color: var(--primary-gold);
  border-radius: var(--radius);
  padding: 50px 20px;
  text-align: center;
  color: #fff;
  max-width: 1280px;
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(191, 146, 37, 0.25);
}

.cta-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-content p {
  margin-bottom: 30px;
  font-size: 1rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn-light {
  background-color: #fff;
  color: var(--primary-gold);
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-light:hover {
  background-color: #f0f0f0;
}

.btn-outline-light {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 28px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.menu-section-title i.icon-soup {
    color: #eab308;
}

.menu-section-title i.icon-hot {
    color: #ef4444;
}

.menu-section-title i.icon-dessert {
    color: #a855f7;
}

.menu-section-title i.icon-drink {
    color: #3b82f6;
}

.menu-section-title i.icon-default {
    color: #bf9225;
}

@media (max-width: 1024px) {
  .menu-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .menu-grid {
      grid-template-columns: 1fr;
  }
  
  .top-header {
      padding: 15px 20px;
  }

  .cta-content h2 {
      font-size: 1.5rem;
  }
  
  .cta-buttons {
      flex-direction: column;
      align-items: center;
  }
  
  .btn-light, .btn-outline-light {
      width: 100%;
      max-width: 300px;
      text-align: center;
  }
}