/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lato", "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #333;
}

/* ── Navbar ── */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2.5rem;
  background: #3b1010;
  color: #fff;
  font-family: "Bree Serif", serif;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  border-radius: 50%;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 2px;
}
.logo-sub {
  font-size: 0.7rem;
  font-weight: 600;
  color: #f4b400;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.nav-links a {
  text-decoration: none;
  color: #ddd;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: #f4b400; }

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #fff;
}

/* ── Hero ── */
.hero {
  background: url("../images/bandeja-paisa-colombia-scaled.jpg") no-repeat center center/cover;
  min-height: 92vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 2rem;
}
.hero-tagline {
  font-family: "Lato", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #f4b400;
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: "Oswald", sans-serif;
  font-size: 3.8rem;
  font-weight: 600;
  line-height: 1.1;
  text-shadow: 2px 3px 8px rgba(0,0,0,0.6);
  margin-bottom: 1rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 2rem;
  font-weight: 300;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.btn {
  background: #f4b400;
  padding: 0.75rem 1.8rem;
  border-radius: 30px;
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
  border: 2px solid #f4b400;
  cursor: pointer;
}
.btn:hover { background: #e0a200; transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }

.btn-dark {
  background: #3b1010;
  color: #fff;
  border-color: #3b1010;
}
.btn-dark:hover { background: #5a1f1f; }

/* ── Section shared ── */
section { padding: 5rem 2rem; }

.section-sub {
  color: #888;
  font-size: 1rem;
  margin-top: 0.4rem;
  margin-bottom: 2.5rem;
}

h2 {
  font-family: "Oswald", sans-serif;
  font-size: 2.4rem;
  color: #3b1010;
  text-align: center;
}

/* ── About ── */
.about {
  background: #fdf6ef;
}
.about-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  align-items: center;
  flex-wrap: wrap;
}
.about-text {
  flex: 1;
  min-width: 280px;
  text-align: left;
}
.about-text h2 { text-align: left; margin-bottom: 1rem; }
.about-text p { margin-bottom: 1rem; color: #555; }
.about-badges {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 160px;
}
.badge {
  background: #3b1010;
  color: #fff;
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  text-align: center;
}
.badge-number {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  color: #f4b400;
}
.badge-label {
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ddd;
}

/* ── Menu ── */
.menu { background: #fff; text-align: center; }

.menu-categories { max-width: 1100px; margin: 0 auto; }

.menu-category { margin-bottom: 3.5rem; }

.category-title {
  font-family: "Bree Serif", serif;
  font-size: 1.3rem;
  color: #5a1f1f;
  border-bottom: 2px solid #f4b400;
  display: inline-block;
  padding-bottom: 0.3rem;
  margin-bottom: 1.5rem;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  text-align: left;
}

.menu-card {
  background: #fff7f0;
  padding: 1.3rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  border-left: 4px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative;
}
.menu-card:hover {
  border-left-color: #f4b400;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.menu-card.featured {
  border-left-color: #f4b400;
  background: #fffbf0;
}
.badge-featured {
  background: #f4b400;
  color: #1a1a1a;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  display: inline-block;
}
.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.4rem;
}
.menu-card h4 {
  font-family: "Bree Serif", serif;
  font-size: 1.05rem;
  color: #3b1010;
}
.price {
  font-family: "Oswald", sans-serif;
  font-size: 1.1rem;
  color: #5a1f1f;
  font-weight: 600;
}
.menu-card p { font-size: 0.88rem; color: #666; }

/* ── Gallery ── */
.gallery { background: #fdf6ef; text-align: center; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 0.6rem;
  max-width: 1000px;
  margin: 2rem auto 0;
  border-radius: 12px;
  overflow: hidden;
}
.gallery-item {
  background-size: cover;
  background-position: center;
  transition: transform 0.3s;
  overflow: hidden;
}
.gallery-item:hover { transform: scale(1.03); }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* ── Contact ── */
.contact { background: #3b1010; color: #fff; }
.contact h2 { color: #fff; }
.contact .section-sub { color: #ccc; }
.contact-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
  align-items: flex-start;
}
.contact-info { flex: 1; min-width: 260px; text-align: left; }
.contact-info h2 { text-align: left; }
.contact-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: #ddd;
}
.contact-list strong { color: #fff; }

.contact-form {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  background: rgba(255,255,255,0.06);
  padding: 2rem;
  border-radius: 14px;
}
.contact-form h3 {
  font-family: "Bree Serif", serif;
  font-size: 1.3rem;
  color: #f4b400;
  margin-bottom: 0.2rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 0.9rem;
  font-family: "Lato", sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #aaa; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: #f4b400; }
.contact-form select option { background: #3b1010; }
.contact-form .btn { align-self: flex-start; }

/* ── Footer ── */
footer {
  background: #1a0606;
  color: #aaa;
  padding: 2.5rem 2rem;
}
.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.footer-links a:hover { color: #f4b400; }
.footer-copy { font-size: 0.8rem; color: #666; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #3b1010;
    position: absolute;
    top: 68px; right: 0;
    width: 200px;
    padding: 1rem;
    z-index: 99;
  }
  .nav-links.active { display: flex; }
  .menu-toggle { display: block; }

  .hero h1 { font-size: 2.4rem; }

  .about-inner { flex-direction: column; gap: 2rem; }
  .about-badges { flex-direction: row; flex-wrap: wrap; justify-content: center; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .g-tall { grid-row: span 1; }
  .g-wide { grid-column: span 2; }

  .contact-inner { flex-direction: column; gap: 2.5rem; }
  .contact-form .btn { width: 100%; text-align: center; }
}
