/* =======================================
   Fired Up Slice Co. - Global Styles
   ======================================= */

:root {
  --red: #b22222;
  --gold: #f4b400;
  --charcoal: #111111;
  --bg-light: #f9f5f0;
  --bg-page: #0b0b0b;
  --text-main: #f5f5f5;
  --muted: #b3b3b3;
  --max-width: 1120px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.5);
  --transition-fast: 0.2s ease;
  --nav-bg: rgba(10, 10, 10, 0.96);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text-main);
  background: radial-gradient(circle at top, #26120f 0, #050505 55%, #000 100%);
  line-height: 1.6;
}

/* =======================================
   Layout Helpers
   ======================================= */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.main-content {
  padding: 5rem 0 4rem;
}

.section {
  padding: 3rem 0;
}

.section-header {
  margin-bottom: 2rem;
  text-align: left;
}

.section-kicker {
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-size: 2rem;
  margin: 0.5rem 0 0.25rem;
}

.section-subtitle {
  max-width: 520px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* =======================================
   Header / Navigation
   ======================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--nav-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0; /* tighter header */
}

/* Logo with image */

.site-logo {
  display: flex;
  align-items: center;
}

.site-logo img {
  height: 40px;
  width: auto;
  display: block;
  transition: opacity var(--transition-fast);
}

.site-logo img:hover {
  opacity: 0.85;
}

/* Nav links */

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.main-nav a {
  position: relative;
  text-decoration: none;
  font-size: 0.9rem;
  color: #f5f5f5;
  opacity: 0.85;
  transition: color var(--transition-fast), opacity var(--transition-fast);
  padding: 0.4rem 0; /* better tap targets, esp. mobile */
}

.main-nav a:hover,
.main-nav a.active {
  opacity: 1;
  color: var(--gold);
}

/* Underline hover / active */

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(244, 180, 0, 0.65);
  font-size: 0.8rem;
}

/* Mobile nav toggle */

.nav-toggle {
  display: none;
  font-size: 1.6rem;
  background: none;
  border: none;
  color: #fefefe;
}

/* =======================================
   Hero (Home Page)
   ======================================= */

.hero {
  padding-top: 4.5rem;
  padding-bottom: 5rem; /* extra space before next section */
}

.hero-inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  }
}

.hero-label {
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  line-height: 1.1;
  margin: 0.6rem 0;
}

.hero-lede {
  margin: 0.35rem 0 1rem;
  color: var(--muted);
  max-width: 460px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.25rem 0 0.75rem;
}

.hero-meta {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Hero image */

.hero-graphic {
  max-width: 360px;
  margin-inline: auto;
}

.hero-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  display: block;
}

/* =======================================
   Buttons
   ======================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.3rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast), background var(--transition-fast),
    color var(--transition-fast), border-color var(--transition-fast);
}

.btn-primary {
  background: var(--gold);
  color: #1b1206;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.65);
}

.btn-ghost {
  border: 1px solid rgba(244, 244, 244, 0.6);
  color: #f7f7f7;
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

.btn.full-width {
  width: 100%;
}

/* =======================================
   Cards & Grids
   ======================================= */

.card-grid {
  display: grid;
  gap: 1.5rem;
}

.card-grid-3 {
  /* base, enhanced in media query */
}

@media (min-width: 768px) {
  .card-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.card {
  background: radial-gradient(circle at top, #241411, #0b0605);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.35rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: transform 0.15s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.85);
  border-color: rgba(244, 180, 0, 0.4);
}

.card h3 {
  margin: 0 0 0.35rem;
}

.card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.card .price {
  margin-top: 0.6rem;
  font-weight: 700;
  color: var(--gold);
}

/* =======================================
   Menu List
   ======================================= */

.menu-list {
  display: grid;
  gap: 1rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  padding-bottom: 0.65rem;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item h3 {
  margin: 0;
  font-size: 1rem;
}

.menu-item p {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.menu-price {
  white-space: nowrap;
  font-weight: 600;
  color: var(--gold);
}

/* Menu images (make all same height) */

.menu-img {
  width: 100%;
  height: 260px;         /* adjust if you want taller/shorter */
  object-fit: cover;     /* crops nicely */
  border-radius: 18px;
  margin: 1.5rem 0;
  box-shadow: var(--shadow-soft);
  display: block;
}

/* =======================================
   Info Blocks / About / Specials
   ======================================= */

.info-grid {
  display: grid;
  gap: 1.75rem;
}

.info-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;   /* equal height columns */
}

.info-block {
  background: radial-gradient(circle at top left, #271711, #070404);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.7);
  height: 100%;           /* stretch to match column */
}

.info-block h3 {
  margin-top: 0;
}

/* Hours list reuse */

.hours-list {
  list-style: none;
  padding-left: 0;
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.hours-list li {
  margin-bottom: 0.25rem;
}

/* Tags */

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}

.tag {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  color: var(--muted);
}

/* About images (both same look & height) */

.about-img {
  width: 100%;
  border-radius: 18px;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;  /* same shape for both images */
  object-fit: cover;
  display: block;
}

/* Location image */

.location-img {
  width: 100%;
  border-radius: 14px;
  margin-top: 1rem;
  box-shadow: var(--shadow-soft);
  display: block;
}

/* =======================================
   Contact / Form
   ======================================= */

.form-card {
  background: radial-gradient(circle at top, #1c1410, #050303);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.4rem;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.form-row {
  margin-bottom: 0.9rem;
}

input,
textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(10, 10, 10, 0.96);
  color: #f5f5f5;
  font: inherit;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #747272;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(244, 180, 0, 0.4);
}

/* Logo in Navbar */
.logo img {
    height: 60px;         /* Adjust size here */
    width: auto;
    display: block;
}

.logo {
    display: flex;
    align-items: center;
    margin-right: 1.5rem;
}

@media (max-width: 768px) {
    .logo img {
        height: 75px;
    }
}
.nav-inner {
    display: flex;
    justify-content: space-between;   /* Logo left, nav right */
    align-items: center;
    padding: 0.75rem 0;
}
.logo img:hover {
    transform: scale(1.05);
    transition: 0.15s ease;
}


/* =======================================
   Footer
   ======================================= */

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.4rem 0;
  background: #050303;
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-inner a {
  color: var(--muted);
  text-decoration: none;
}

.footer-inner a:hover {
  color: var(--gold);
}

/* extra line for portfolio credit */
.footer-meta {
  font-size: 0.75rem;
  opacity: 0.7;
}

/* =======================================
   Responsive
   ======================================= */

@media (max-width: 768px) {
  .main-nav {
    position: absolute;
    inset-inline: 0;
    top: 56px;
    flex-direction: column;
    background: var(--nav-bg);
    padding: 0.5rem 1.25rem 1rem;
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: 0.22s ease;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: block;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .main-content {
    padding-top: 4.25rem;
  }

  .info-grid-2 {
    grid-template-columns: 1fr;
  }
}






