/* -------------------------------------------------
   The Brutumus Fuse Box — Fusion Ramen, Canyon Lake TX
   ------------------------------------------------- */

:root {
  --charcoal: #17171b;
  --charcoal-2: #201f24;
  --charcoal-3: #2a2930;
  --amber: #ffb703;
  --amber-soft: #ffd166;
  --cta: #e8291c;
  --cta-hover: #ff3c2c;
  --cream: #f7f3ec;
  --cream-dim: #d9d3c6;
  --text-muted: #b9b4ab;
  --radius: 999px;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  font-size: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Segoe UI', system-ui, -apple-system, Helvetica, Arial, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { font-family: Georgia, 'Times New Roman', serif; margin: 0 0 12px; line-height: 1.15; }

a { color: inherit; text-decoration: none; }

/* ---------- Buttons ---------- */

.btn-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cta);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 14px 30px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(232, 41, 28, 0.45);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.btn-order:hover, .btn-order:focus-visible {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(232, 41, 28, 0.55);
}

.btn-order--nav { padding: 10px 24px; font-size: 0.92rem; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: var(--radius);
  border: 2px solid var(--amber);
  color: var(--amber-soft);
  font-weight: 700;
  transition: background 0.15s ease, color 0.15s ease;
}

.btn-secondary:hover { background: var(--amber); color: var(--charcoal); }

/* ---------- Navbar ---------- */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(23, 23, 27, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 183, 3, 0.15);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cream);
  font-weight: 700;
  font-size: 1.15rem;
  margin-right: auto;
  white-space: nowrap;
}

.brand-mark { color: var(--amber); font-size: 1.3rem; }
.brand-text em { color: var(--amber-soft); font-style: normal; }

.nav-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--cream-dim);
  font-size: 0.95rem;
  transition: color 0.15s ease;
}

.nav-links a:hover { color: var(--amber-soft); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--cream);
  display: block;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #1c1a17 0%, #241f1c 40%, #1a1a1f 100%),
              url("../images/photo-05.jpg");
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  color: var(--cream);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(255, 183, 3, 0.14), transparent 55%),
              linear-gradient(180deg, rgba(15,15,17,0.55) 0%, rgba(15,15,17,0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 100px 24px 90px;
  text-align: center;
}

.hero-eyebrow {
  color: var(--amber-soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 20px;
}

.hero-tagline {
  font-size: 1.15rem;
  color: var(--cream-dim);
  max-width: 560px;
  margin: 0 auto 34px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--cream-dim);
  font-size: 0.95rem;
}

.stars { color: var(--amber); letter-spacing: 2px; }

/* ---------- Section basics ---------- */

section { padding: 88px 0; }

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--cta);
  margin-bottom: 10px;
}

.section-sub {
  color: #6b6660;
  max-width: 620px;
  margin: 0 auto 40px;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- About ---------- */

.about { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.about-image img {
  border-radius: 18px;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-copy h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }

.about-copy p { color: #4c4842; margin-bottom: 16px; }

/* ---------- Menu ---------- */

.menu {
  background: var(--charcoal);
  color: var(--cream);
}

.menu h2 { color: var(--cream); }

.menu .section-sub { color: var(--text-muted); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  margin-top: 20px;
}

.menu-category {
  background: var(--charcoal-2);
  border: 1px solid rgba(255, 183, 3, 0.14);
  border-radius: 16px;
  padding: 28px 30px;
}

.menu-category h3 {
  color: var(--amber-soft);
  font-size: 1.3rem;
  border-bottom: 1px solid rgba(255, 183, 3, 0.25);
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.menu-list { list-style: none; margin: 0; padding: 0; }

.menu-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.menu-list li:last-child { border-bottom: none; padding-bottom: 0; }

.item-name { font-weight: 700; color: var(--cream); }
.item-desc { color: var(--text-muted); font-size: 0.92rem; }

/* ---------- Gallery ---------- */

.gallery { background: var(--cream); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  transition: transform 0.25s ease;
}

.gallery-grid img:hover { transform: scale(1.03); }

/* ---------- Reviews ---------- */

.reviews { background: #efe9dd; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 30px;
}

.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 26px;
  margin: 0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.review-card .stars { margin-bottom: 12px; display: block; }

.review-card p {
  font-size: 0.98rem;
  color: #3d3a35;
  margin: 0 0 16px;
}

.review-card cite { font-weight: 700; color: var(--cta); font-style: normal; }

/* ---------- Hours & Map ---------- */

.hours { background: var(--charcoal); color: var(--cream); }

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hours h2 { color: var(--cream); }

.hours-list {
  list-style: none;
  margin: 20px 0 26px;
  padding: 0;
  max-width: 360px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--cream-dim);
}

.hours-address { color: var(--cream-dim); margin-bottom: 4px; }

.hours-phone a {
  color: var(--amber-soft);
  font-weight: 700;
  font-size: 1.1rem;
}

.hours-phone { margin-bottom: 26px; }

.hours-map {
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hours-map iframe { width: 100%; height: 100%; }

/* ---------- Footer ---------- */

.footer {
  background: var(--charcoal-2);
  color: var(--cream-dim);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
}

.footer-brand { display: flex; flex-direction: column; gap: 6px; }
.footer-brand .brand-text { color: var(--cream); font-weight: 700; font-size: 1.1rem; }
.footer-brand .brand-mark { color: var(--amber); font-size: 1.2rem; }
.footer-brand p { color: var(--text-muted); margin: 6px 0 0; }

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a:hover { color: var(--amber-soft); }

.footer-cta p { margin: 0 0 8px; }
.footer-cta a:hover { color: var(--amber-soft); }
.footer-cta .btn-order { margin-top: 8px; }

.footer-bottom {
  text-align: center;
  color: #6a6660;
  font-size: 0.85rem;
  margin: 40px 0 0;
}

/* ---------- Modal ---------- */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 12, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.modal-backdrop[hidden] { display: none; }

.modal {
  background: var(--cream);
  border-radius: 18px;
  padding: 40px 36px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.modal h2 { font-size: 1.5rem; margin-bottom: 14px; color: var(--charcoal); }
.modal p { color: #4c4842; margin-bottom: 26px; }
.modal p a { color: var(--cta); text-decoration: underline; font-weight: 700; }

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: #8a8580;
}

.modal-close:hover { color: var(--cta); }

.modal-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cta);
  color: #fff;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius);
  box-shadow: 0 6px 18px rgba(232, 41, 28, 0.45);
}

.modal-phone:hover { background: var(--cta-hover); }

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .about-grid, .hours-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 700px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(23,23,27,0.98);
    flex-direction: column;
    padding: 16px 24px;
    display: none;
    gap: 14px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .btn-order--nav { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { padding: 70px 20px 60px; }
}
