:root {
  --bg: #f8f6ef;
  --white: #fffdf8;
  --green: #2d5a27;
  --green-soft: #4f7a49;
  --gold: #b58b4b;
  --brown: #7a5a39;
  --text: #243024;
  --muted: #6e756b;
  --border: rgba(45, 90, 39, 0.12);
  --shadow: 0 10px 30px rgba(45, 90, 39, 0.08);
  --radius: 22px;
  --radius-sm: 14px;
  --transition: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

button,
input {
  font-family: inherit;
}

.container {
  width: min(1150px, calc(100% - 32px));
  margin: 0 auto;
}

/* HERO */
.hero {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background:
    linear-gradient(rgba(24, 36, 22, 0.45), rgba(24, 36, 22, 0.55)),
    url('https://images.unsplash.com/photo-1552566626-52f8b828add9?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: white;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.brand-badge {
  display: inline-block;
  background: rgba(255, 248, 230, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff7df;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  font-size: 0.9rem;
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 800;
  letter-spacing: 1px;
}

.tagline {
  margin-top: 8px;
  font-size: 1.2rem;
  color: #f7e8c5;
  font-weight: 400;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform var(--transition), background var(--transition), color var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: white;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* INFO */
.info-bar {
  margin-top: -40px;
  position: relative;
  z-index: 5;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card {
  background: rgba(255, 253, 248, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(181, 139, 75, 0.15);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.info-icon {
  font-size: 1.4rem;
}

.info-card h3 {
  color: var(--green);
  font-size: 1rem;
  margin-bottom: 4px;
}

.info-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.info-link,
.social-links a {
  color: var(--brown);
  font-weight: 600;
  font-size: 0.92rem;
}

.social-links {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* STICKY NAV */
.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  margin-top: 28px;
  background: rgba(248, 246, 239, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(45, 90, 39, 0.06);
  border-bottom: 1px solid rgba(45, 90, 39, 0.08);
}

.nav-wrapper {
  padding: 14px 0;
}

.search-box {
  margin-bottom: 14px;
}

.search-box input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: white;
  outline: none;
  font-size: 0.98rem;
  color: var(--text);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.search-box input:focus {
  border-color: var(--gold);
}

.filters {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  -ms-overflow-style: none;
}

.filters::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  border: 1px solid var(--border);
  background: white;
  color: var(--green);
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  font-weight: 600;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--green);
  color: white;
  border-color: var(--green);
}

/* MENU */
.menu-section {
  padding: 38px 0 80px;
}

.menu-category {
  margin-bottom: 56px;
}

.section-heading {
  margin-bottom: 20px;
}

.section-heading h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: var(--green);
  margin-bottom: 6px;
}

.section-heading p {
  color: var(--muted);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(45, 90, 39, 0.08);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(45, 90, 39, 0.12);
}

.menu-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.menu-card-content {
  padding: 18px;
}

.menu-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.menu-top h3 {
  font-size: 1.05rem;
  color: var(--green);
  font-weight: 700;
}
.price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f4ecdb;
  color: var(--brown);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* GRILLADES TABLE */
.grillades-table-wrapper {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(45, 90, 39, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.grillades-table {
  width: 100%;
  border-collapse: collapse;
}

.grillades-table thead {
  background: var(--green);
  color: white;
}

.grillades-table th,
.grillades-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(45, 90, 39, 0.08);
}

.grillades-table tbody tr:hover {
  background: #fcfaf4;
}

.grillades-table td:not(:first-child),
.grillades-table th:not(:first-child) {
  text-align: center;
  font-weight: 600;
}

/* EMPTY STATE */
.empty-state {
  text-align: center;
  padding: 40px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(45, 90, 39, 0.08);
}

.empty-state h3 {
  color: var(--green);
  margin-bottom: 8px;
}

.empty-state p {
  color: var(--muted);
}

.hidden {
  display: none !important;
}

/* ANIMATION */
.fade-section {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.fade-out {
  opacity: 0;
  transform: translateY(12px);
}

/* FLOATING WHATSAPP */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  background: #1f7a3c;
  color: white;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(31, 122, 60, 0.25);
}

/* FOOTER */
.footer {
  background: #233422;
  color: #f0eadf;
  text-align: center;
  padding: 24px 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .info-grid,
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 58vh;
  }

  .info-grid,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-card img {
    height: 210px;
  }

  .grillades-table {
    min-width: 640px;
  }

  .grillades-table-wrapper {
    overflow-x: auto;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 20px, 1150px);
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .menu-card-content {
    padding: 16px;
  }

  .menu-top h3 {
    font-size: 1rem;
  }

  .price {
    font-size: 0.86rem;
    padding: 6px 9px;
  }
}