/* =========================
   GLOBAL RESET & BASE
========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #000; /* full black background */
  color: #fff;
  line-height: 1.6;
}

a {
  color: #ff3b30;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* =========================
   HEADER / NAV
========================= */
header {
  background-color: #111;
  color: #fff;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  border-bottom: 2px solid #ff3b30;
  z-index: 20;
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-text {
  font-weight: 700;
  font-size: 1.2rem;
  color: #ff3b30;
}

nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

nav a {
  font-size: 0.95rem;
}

nav a:hover {
  color: #ff6a55;
}

/* =========================
   HERO – BASE LAYOUT
   (Background is controlled
   by the modifier classes
   below: .hero--smoke, etc.)
========================= */
.hero {
  text-align: center;
  padding: 90px 20px 100px;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  /* dark overlay so text stays readable */
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-inner {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  z-index: 1; /* above overlay */
}

.hero-logo {
  max-width: 220px;
  margin: 0 auto 25px;
  display: block;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #ff3b30;
  text-shadow: 2px 2px 6px #000;
}

.hero p.subheading {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

/* CTA BUTTON */
.btn-primary {
  display: inline-block;
  background-color: #ff3b30;
  color: white;
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #d92a20;
}

/* =========================
   HERO BACKGROUND OPTIONS
   Choose ONE class in HTML:
   hero--smoke  / hero--grill  / hero--embers
========================= */

/* OPTION 1: SMOKY PHOTO BACKGROUND
   (Good for real BBQ vibe) */
.hero--smoke {
  background-image: url("https://images.unsplash.com/photo-1556911220-e15b29be8cbd?q=80&w=1600");
  background-size: cover;
  background-position: center;
}

/* OPTION 2: DARK GRILL LINES
   (Pure CSS, no image) */
.hero--grill {
  background-image: linear-gradient(
      135deg,
      rgba(255, 59, 48, 0.4),
      transparent 40%
    ),
    repeating-linear-gradient(90deg, #111 0, #111 6px, #000 6px, #000 18px);
  background-size: cover;
  background-position: center;
}

/* OPTION 3: GLOWING EMBERS
   (Dark background with orange “coal” dots) */
.hero--embers {
  background-color: #050505;
  background-image: radial-gradient(
      circle at 10% 20%,
      rgba(255, 94, 58, 0.45) 0,
      transparent 55%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 59, 48, 0.5) 0,
      transparent 60%
    ),
    radial-gradient(
      circle at 60% 30%,
      rgba(255, 200, 150, 0.35) 0,
      transparent 55%
    );
  background-size: cover;
  background-position: center;
}

/* OPTION 4: STACKED WOOD BACKGROUND */
.hero--wood {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("firewood-pallet.jpg"); /* ← your exact path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* =========================
   SECTIONS
========================= */
section {
  padding: 70px 20px;
  background-color: #000;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 12px;
  color: #ff3b30;
}

.section-subtitle {
  text-align: center;
  color: #bbb;
  margin-bottom: 30px;
}

/* =========================
   CARDS / BOXES
========================= */
.about-card,
.location-box,
.menu-card,
.contact-card {
  background-color: #111;
  border: 2px solid #ff3b30;
  border-radius: 8px;
  padding: 20px;
  color: #fff;
  box-shadow: 0 0 12px rgba(255, 59, 48, 0.2);
}

/* If you want white cards with black text instead,
   uncomment this block and it will override the above:

.about-card,
.location-box,
.menu-card,
.contact-card {
  background-color: #fff;
  color: #000;
}
*/

/* =========================
   ABOUT
========================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.badge {
  display: inline-block;
  background-color: #ff3b30;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

/* =========================
   LOCATION
========================= */
.location-box {
  text-align: center;
}

.location-status {
  font-weight: 600;
  color: #ff3b30;
  margin-bottom: 8px;
}

/* =========================
   MENU
========================= */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.menu-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #ff3b30;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}

.menu-item .price {
  font-weight: bold;
  color: #ff3b30;
}

.menu-note {
  font-size: 0.85rem;
  color: #ccc;
  margin-top: 8px;
}

/* =========================
   CONTACT
========================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.contact-label {
  font-weight: 600;
}

.social-link {
  color: #ff3b30;
  font-weight: 600;
}

/* =========================
   FOOTER
========================= */
footer {
  background-color: #111;
  color: #999;
  text-align: center;
  padding: 20px;
  border-top: 2px solid #ff3b30;
  font-size: 0.9rem;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 70px 15px 70px;
  }

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