/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: #333; background: #fff; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== VARIABLES ===== */
:root {
  --red: #c0392b;
  --dark-red: #922b21;
  --gold: #d4ac0d;
  --dark: #1a1a1a;
  --light: #f8f5f0;
  --gray: #666;
}

/* ===== CONTAINER ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ===== TOPBAR ===== */
.topbar {
  background: #111;
  color: #aaa;
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid #222;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left { display: flex; gap: 20px; align-items: center; }
.topbar-right { display: flex; gap: 20px; align-items: center; }
.topbar a { color: #ccc; transition: color 0.2s; }
.topbar a:hover { color: var(--gold); }
.topbar .fa { color: var(--gold); margin-right: 5px; }

@media (max-width: 768px) {
  .topbar-right { display: none; }
  .topbar { text-align: center; }
  .topbar-left { justify-content: center; width: 100%; }
}

/* ===== NAVBAR ===== */
.navbar {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 65px;
}
.brand { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #fff; }
.brand span { color: var(--gold); }
.nav-links { list-style: none; display: flex; gap: 30px; }
.nav-links a { color: #ccc; font-size: 0.9rem; letter-spacing: 0.5px; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 3px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--dark-red); }
.btn-outline { border: 2px solid #fff; color: #fff; margin-left: 10px; }
.btn-outline:hover { background: #fff; color: var(--dark); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 90vh;
  min-height: 500px;
  background: url('../images/menu.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); }
.hero-content { position: relative; z-index: 1; color: #fff; padding: 20px; }
.hero-sub { font-size: 1rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.hero-content h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 6vw, 5rem); margin-bottom: 15px; }
.hero-desc { font-size: 1.1rem; color: #ddd; margin-bottom: 30px; }
.hero-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ===== BANNER ===== */
.banner { background: var(--red); color: #fff; padding: 14px 0; text-align: center; }
.banner p { font-size: 0.95rem; }
.banner a { color: var(--gold); font-weight: 600; }
.banner a:hover { text-decoration: underline; }

/* ===== SECTION ===== */
.section { padding: 80px 0; }
.bg-light { background: var(--light); }
.section-heading { text-align: center; margin-bottom: 50px; }
.section-heading h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--dark); }
.label { display: inline-block; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; color: var(--red); font-weight: 600; margin-bottom: 8px; }

/* ===== TWO COLUMN ===== */
.two-col { display: flex; gap: 60px; align-items: center; }
.img-col { flex: 1; display: flex; flex-direction: column; gap: 15px; }
.img-col img { border-radius: 4px; width: 100%; object-fit: cover; height: 200px; }
.text-col { flex: 1; }
.text-col h2 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 15px; color: var(--dark); }
.text-col p { color: var(--gray); line-height: 1.8; margin-bottom: 15px; }

/* ===== CARDS ===== */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; }
.card { background: #fff; border-radius: 6px; padding: 30px 25px; text-align: center; box-shadow: 0 3px 15px rgba(0,0,0,0.08); transition: transform 0.2s; }
.card:hover { transform: translateY(-5px); }
.card-icon { font-size: 1.8rem; color: var(--gold); margin-bottom: 15px; }
.card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 10px; }
.card p { color: var(--gray); font-size: 0.9rem; line-height: 1.6; margin-bottom: 15px; }
.price { display: inline-block; background: var(--red); color: #fff; padding: 4px 12px; border-radius: 3px; font-size: 0.85rem; font-weight: 600; }

/* ===== CTA ===== */
.cta {
  position: relative;
  background: center/cover no-repeat;
  padding: 100px 20px;
  text-align: center;
}
.cta-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.7); }
.cta-content { position: relative; z-index: 1; color: #fff; }
.cta-content h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 15px; }
.cta-content p { color: #ddd; margin-bottom: 30px; font-size: 1.1rem; }

/* ===== LOCATION STRIP ===== */
.location-strip { background: var(--dark); color: #fff; padding: 50px 0; }
.loc-grid { display: flex; gap: 40px; flex-wrap: wrap; justify-content: space-around; }
.loc-item { display: flex; gap: 20px; align-items: flex-start; }
.loc-item .fa { font-size: 2rem; color: var(--gold); margin-top: 4px; }
.loc-item strong { display: block; font-size: 1rem; margin-bottom: 6px; color: var(--gold); }
.loc-item p { color: #ccc; font-size: 0.9rem; line-height: 1.6; }
.loc-item small { color: #999; }

/* ===== FOOTER ===== */
footer { background: #111; color: #aaa; text-align: center; padding: 40px 20px; }
.brand-footer { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: #fff; margin-bottom: 10px; }
.brand-footer span { color: var(--gold); }
footer p { font-size: 0.9rem; line-height: 2; }
.footer-links a { color: #aaa; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.copyright { margin-top: 15px; font-size: 0.8rem; color: #555; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 70px 20px;
  background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/menu.jpg');
  background-size: cover;
  background-position: center;
}
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: 3rem; }
.page-hero p { color: #ccc; margin-top: 10px; }
.breadcrumb { font-size: 0.85rem; color: #aaa; margin-bottom: 10px; }
.breadcrumb a { color: var(--gold); }

/* ===== MENU PAGE ===== */
.menu-nav { background: var(--light); border-bottom: 2px solid #e0d8cc; padding: 15px 0; position: sticky; top: 65px; z-index: 50; }
.menu-nav .container { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.menu-nav a { font-size: 0.82rem; padding: 6px 14px; background: #fff; border: 1px solid #ddd; border-radius: 20px; color: #555; transition: all 0.2s; }
.menu-nav a:hover { background: var(--red); color: #fff; border-color: var(--red); }
.menu-section { margin-bottom: 50px; scroll-margin-top: 170px; }
.menu-photos { display: flex; gap: 15px; margin-top: 25px; justify-content: center; }
.menu-photos img { border-radius: 6px; object-fit: cover; }
.menu-photos.single img { max-width: 350px; height: auto; }
.menu-photos.pair img { width: calc(50% - 8px); max-width: 300px; height: auto; }
@media (max-width: 600px) {
  .menu-photos.pair { flex-direction: column; align-items: center; }
  .menu-photos.pair img { width: 100%; max-width: 100%; }
}
.menu-section h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--dark); border-bottom: 2px solid var(--red); padding-bottom: 10px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.menu-section h2 .fa { color: var(--gold); font-size: 1.2rem; }
.menu-item { display: flex; justify-content: space-between; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid #eee; gap: 15px; }
.menu-item:last-child { border-bottom: none; }
.item-info { flex: 1; }
.item-info h4 { font-size: 0.95rem; font-weight: 600; color: var(--dark); margin-bottom: 4px; display: flex; align-items: center; gap: 6px; }
.item-info p { font-size: 0.85rem; color: var(--gray); line-height: 1.5; }
.item-price { text-align: right; white-space: nowrap; font-weight: 600; color: var(--red); font-size: 0.9rem; min-width: 80px; }
.spicy { color: var(--red); font-size: 0.8rem; }
.menu-note { background: var(--light); border-left: 4px solid var(--gold); padding: 12px 16px; font-size: 0.85rem; color: var(--gray); margin-bottom: 20px; border-radius: 0 4px 4px 0; }
.sm-lg { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; font-size: 0.8rem; }
.sm-lg span { display: flex; justify-content: space-between; gap: 20px; }
.size-label { color: #999; }
.download-menu { display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: #fff; padding: 12px 24px; border-radius: 4px; font-weight: 600; font-size: 0.9rem; transition: background 0.2s; }
.download-menu:hover { background: var(--dark-red); }

/* ===== ABOUT PAGE ===== */
.about-grid { display: flex; gap: 60px; align-items: flex-start; }
.about-text h2 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 20px; }
.about-text p { color: var(--gray); line-height: 1.9; margin-bottom: 20px; }
.about-imgs { flex: 0 0 340px; display: flex; flex-direction: column; gap: 15px; }
.about-imgs img { border-radius: 4px; width: 100%; object-fit: cover; height: 210px; }

/* ===== LOCATION PAGE ===== */
.location-grid { display: flex; gap: 50px; flex-wrap: wrap; }
.location-info { flex: 1; min-width: 280px; }
.location-info h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; margin-bottom: 20px; }
.info-block { display: flex; gap: 15px; align-items: flex-start; margin-bottom: 25px; }
.info-block .fa { font-size: 1.4rem; color: var(--red); margin-top: 3px; }
.info-block strong { display: block; margin-bottom: 5px; }
.info-block p { color: var(--gray); font-size: 0.9rem; line-height: 1.7; }
.map-wrap { flex: 1; min-width: 280px; }
.map-wrap img { width: 100%; border-radius: 6px; border: 3px solid #eee; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 10px; }
.hours-table td { padding: 7px 0; font-size: 0.9rem; border-bottom: 1px solid #eee; }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--red); }

/* ===== STICKY CALL BUTTON (mobile) ===== */
.call-sticky {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--red);
  color: #fff;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 999;
  transition: background 0.2s;
  align-items: center;
  gap: 8px;
}
.call-sticky:hover { background: var(--dark-red); color: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 65px; left: 0; right: 0; background: var(--dark); padding: 20px; gap: 15px; }
  .nav-links.open { display: flex; }
  .navbar { position: relative; }
  .two-col, .about-grid, .location-grid { flex-direction: column; }
  .about-imgs { flex: none; width: 100%; }
  .hero { height: 70vh; }
  .page-hero h1 { font-size: 2rem; }
  .loc-grid { flex-direction: column; gap: 30px; }
  .menu-nav { top: 0; }
  .call-sticky { display: flex; }
}
