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

body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background: #111;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header & Navbar */
header {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  z-index: 1000;
  transition: background 0.3s ease;
}

header .logo img {
  height: 55px;
}

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

nav ul li {
  display: inline-block;
}

nav ul li a {
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  color: orangered;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  color: #ff4d00;
  border-bottom: 2px solid #ff4d00;
  padding-bottom: 5px;
}

nav ul li .order-now {
  background: #ff4d00;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 5px;
  transition: background 0.3s ease;
}

nav ul li .order-now:hover {
  background: #e64400;
}

/* Hero Section */
.hero {
  height: 100vh;
  width: 100%;
  background: url('images/hero.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
}

.hero-inner {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 900px;
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.hero-sub {
  font-size: 1.2rem;
  margin-bottom: 25px;
  font-weight: 400;
}

/* Buttons */
.btn-cta {
  display: inline-block;
  background: #ff4d00;
  color: #fff;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-cta:hover {
  background: #e64400;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    gap: 15px;
  }

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

  .hero-sub {
    font-size: 1rem;
  }
}
.popular-items {
  padding: 72px 0 40px;
}

.popular-items h2 {
  width: min(1100px, 92%);
  margin: 0 auto 26px;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #fff;
  text-align: left;            /* matches your screenshot */
}

.popular-container {
  width: min(1100px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 32px;
  justify-items: center;       /* centers cards inside the grid cells */
}

.popular-card {
  width: 100%;
  max-width: 340px;
  background: #191919;         /* subtle panel tone */
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.popular-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.popular-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 10px 12px 4px;
}

.popular-card p {
  color: #cfcfcf;
  font-size: .95rem;
  line-height: 1.5;
  padding: 0 14px 16px;
}

/* Responsive grid steps */
@media (max-width: 980px) {
  .popular-container { grid-template-columns: repeat(2, minmax(240px, 1fr)); }
}
@media (max-width: 620px) {
  .popular-container { grid-template-columns: 1fr; }
  .popular-items h2 { text-align: center; }
}

/* ---------- About Us (two columns, clean image right) ---------- */
.about-section {
  padding: 80px 0;
}

.about-container {
  width: min(1100px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr .8fr;   /* text left, image right */
  gap: 56px;
  align-items: center;
}

.about-text {
  color:#fff;
}

.about-text h2 {
  color: #ff4d00;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 18px;
}

.about-text p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: black;
}

.about-image {
  justify-self: end;           /* keeps the image tucked to the right edge */
}

.about-image img {
  width: 420px;                /* similar to your screenshot size */
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0,0,0,.45);
}

/* Stack on mobile */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-image { justify-self: center; }
  .about-text h2 { text-align: left; }
}
/* ========== Footer ========== */
footer { background-color: var(--panel); padding: 20px; text-align: center; font-size: 0.9rem; color: #aaa; }
footer a { color: var(--brand); text-decoration: none; }

/* ========== Bottom Info Band (LOCATION • HOURS • FIND US • CONTACT) ========== */
.info-band { background: darkred; color: white; padding: 70px 20px; margin-top: 80px; }
.info-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.info-col h3 {
  font-size: 1.6rem; letter-spacing: 1px; margin: 0 0 14px; font-weight: 700; color: var(--band-text);
}
.info-col p, .info-col a, .info-col li { color: var(--band-text); font-size: 1.05rem; text-decoration: none; }
.info-col a:hover { text-decoration: underline; }

/* hours list inside band */
.info-band .hours { list-style: none; margin: 0; padding: 0; }
.info-band .hours li { padding: 6px 0; }

/* social icons */
.info-icons { display: flex; gap: 16px; align-items: center; }
.info-icons img { width: 22px; height: 22px; filter: brightness(0) invert(1); opacity: 0.95; }
.info-icons a:hover img { opacity: 1; }

/* Small map inside bottom info band */
.map-embed-small { margin-top: 12px; border-radius: 8px; overflow: hidden; }
.map-embed-small iframe { width: 100%; height: 160px; border: 0; }
/* Menu items layout */
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fafafa;
  color: #333;
  line-height: 1.6;
}

/* Section Headings */
.menu-section h2 {
  text-align: center;
  font-size: 2rem;
  margin: 2rem 0;
  font-weight: 600;
  color: #222;
}

.menu-category {
  margin: 2rem auto;
  max-width: 1200px;
  padding: 0 1rem;
}

.menu-category h3 {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  color: #444;
  border-bottom: 2px solid #ddd;
  padding-bottom: 0.5rem;
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

/* Individual Item */
.menu-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.menu-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.menu-item h4 {
  font-size: 1.1rem;
  margin: 0.8rem 0 0.4rem;
  font-weight: 600;
  color: #222;
}

.menu-item p {
  font-size: 0.9rem;
  color: #666;
  padding: 0 1rem 1rem;
}
