/* Schultzy's Place — stylesheet */
/* Mobile-first, warm diner palette: reds, creams, warm browns */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  /* Subtle linen/paper texture via CSS layered gradients */
  background-color: #fdf6e3;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(160, 120, 60, 0.025) 60px,
      rgba(160, 120, 60, 0.025) 61px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 40px,
      rgba(160, 120, 60, 0.018) 40px,
      rgba(160, 120, 60, 0.018) 41px
    );
  color: #3b2a1a;
  font-size: 16px;
  line-height: 1.6;
}

/* Red top strip — classic diner accent */
body::before {
  content: '';
  display: block;
  height: 5px;
  background-color: #8b1a1a;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Rokkitt', serif;
  line-height: 1.2;
}

/* ===== NAV ===== */
nav {
  background-color: #8b1a1a;
  position: sticky;
  top: 5px; /* offset for the red top strip */
  z-index: 100;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav .nav-brand {
  font-family: 'Rokkitt', serif;
  color: #fdf6e3;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

nav ul li a {
  color: #f5deb3;
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.2s;
}

@media (max-width: 480px) {
  nav ul {
    gap: 0.85rem;
  }
  nav ul li a {
    font-size: 0.78rem;
  }
}

nav ul li a:hover {
  color: #ffffff;
}

/* ===== HERO ===== */
#hero {
  background-color: #8b1a1a;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0,0,0,0.04) 2px,
      rgba(0,0,0,0.04) 4px
    );
  color: #fdf6e3;
  padding: 3rem 1.25rem 2.5rem;
  text-align: center;
  border-bottom: 5px solid #5a1010;
}

#hero h1 {
  font-size: 2.8rem;
  letter-spacing: 0.02em;
  color: #fdf6e3;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.25);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

#hero .tagline {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.05rem;
  color: #f5deb3;
  font-style: italic;
  margin-bottom: 1.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

#hero .one-liner {
  font-size: 0.95rem;
  color: #e8c99a;
  margin-bottom: 2rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.hours-box {
  display: inline-block;
  background-color: rgba(0,0,0,0.25);
  border: 2px solid #f5deb3;
  border-radius: 4px;
  padding: 1rem 1.5rem;
  text-align: left;
  min-width: 240px;
}

.hours-box h3 {
  font-family: 'Source Sans 3', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: #f5deb3;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.hours-box table {
  width: 100%;
  border-collapse: collapse;
}

.hours-box td {
  font-size: 0.95rem;
  color: #fdf6e3;
  padding: 0.2rem 0;
}

.hours-box td:last-child {
  text-align: right;
  font-weight: 600;
}

/* ===== SECTION COMMON ===== */
section {
  padding: 3rem 1.25rem;
}

section h2 {
  font-size: 2rem;
  color: #8b1a1a;
  margin-bottom: 1.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid #8b1a1a; /* red rule under section headings */
  display: inline-block;
  letter-spacing: 0.01em;
}

/* ===== MENU ===== */
#menu {
  background-color: #fdf6e3;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
}

.menu-category {
  background-color: #fff9ef;
  border: 1px solid #e0c99a;
  border-radius: 4px;
  padding: 1.5rem;
}

.menu-category h3 {
  font-size: 1.25rem;
  color: #5a1010;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #8b1a1a; /* red rule on category headings */
  padding-bottom: 0.4rem;
}

.menu-item {
  padding: 0.55rem 0;
  border-bottom: 1px dashed #ddd0b8;
}

.menu-item:last-of-type {
  border-bottom: none;
}

.menu-item .item-name {
  font-weight: 700;
  color: #3b2a1a;
  font-size: 0.95rem;
}

.menu-item .item-desc {
  font-size: 0.85rem;
  color: #6b5040;
  margin-top: 0.1rem;
}

.menu-item.signature .item-name::after {
  content: " — House Specialty";
  font-size: 0.75rem;
  font-weight: 600;
  color: #8b1a1a;
  font-style: italic;
}

.menu-note {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: #6b5040;
  font-style: italic;
  border-top: 1px solid #e0c99a;
  padding-top: 0.75rem;
}

.menu-price-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #5a1010;
  background-color: #fff3dd;
  border-left: 4px solid #c8a06a;
  padding: 0.75rem 1rem;
  border-radius: 0 4px 4px 0;
}

.specials-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #5a1010;
  background-color: #fff3dd;
  border-left: 4px solid #8b1a1a;
  padding: 0.75rem 1rem;
  border-radius: 0 4px 4px 0;
}

/* ===== ABOUT ===== */
#about {
  background-color: #f0e6cc;
  border-top: 4px solid #c8a06a;
  border-bottom: 4px solid #c8a06a;
}

#about p {
  max-width: 640px;
  font-size: 1rem;
  color: #3b2a1a;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ===== AWARDS ===== */
#awards {
  background-color: #8b1a1a;
  color: #fdf6e3;
  padding: 2.5rem 1.25rem;
  text-align: center;
}

.award-banner {
  display: inline-block;
  border: 3px solid #f5deb3;
  border-radius: 6px;
  padding: 1.75rem 2rem;
  max-width: 520px;
  width: 100%;
}

.award-banner .award-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #f5deb3;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.award-banner h2 {
  font-size: 1.7rem;
  color: #f5deb3;
  border: none;
  display: block;
  margin-bottom: 0.5rem;
  padding-bottom: 0;
}

.award-banner .award-year {
  font-family: 'Rokkitt', serif;
  font-size: 2.6rem;
  color: #ffffff;
  font-weight: 700;
  display: block;
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}

.award-banner .award-detail {
  font-size: 0.9rem;
  color: #e8c99a;
  line-height: 1.6;
  font-style: italic;
}

/* ===== REVIEWS ===== */
#reviews {
  background-color: #f0e6cc;
  border-top: 4px solid #c8a06a;
  border-bottom: 4px solid #c8a06a;
  text-align: center;
}

.review-rotator {
  max-width: 600px;
  margin: 0 auto;
  padding-top: 0.5rem;
}

.review-quote-mark {
  font-family: 'Rokkitt', serif;
  font-size: 5rem;
  color: #8b1a1a;
  line-height: 1;
  margin-bottom: -0.5rem;
  user-select: none;
}

.review-text {
  font-family: 'Rokkitt', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: #3b2a1a;
  line-height: 1.7;
  margin: 0 0 1rem 0;
  opacity: 1;
  transition: opacity 0.6s ease;
}

.review-attribution {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.88rem;
  color: #6b5040;
  opacity: 1;
  transition: opacity 0.6s ease;
}

/* ===== FIND US ===== */
#find-us {
  background-color: #fdf6e3;
}

.find-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.find-us-info h3 {
  font-size: 1.05rem;
  color: #5a1010;
  margin-bottom: 0.35rem;
  margin-top: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
}

.find-us-info h3:first-of-type {
  margin-top: 0;
}

.find-us-info p,
.find-us-info address {
  font-size: 0.95rem;
  color: #3b2a1a;
  font-style: normal;
  line-height: 1.6;
}

.find-us-info a {
  color: #8b1a1a;
  text-decoration: none;
  font-weight: 600;
}

.find-us-info a:hover {
  text-decoration: underline;
}

.cash-note {
  background-color: #fff3dd;
  border-left: 4px solid #c8a06a;
  padding: 0.75rem 1rem;
  border-radius: 0 4px 4px 0;
  font-size: 0.9rem;
  color: #3b2a1a;
  margin-top: 0.35rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.hours-table td {
  padding: 0.3rem 0;
  color: #3b2a1a;
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 600;
}

.hours-table tr:not(:last-child) td {
  border-bottom: 1px dashed #ddd0b8;
}

.map-container {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid #c8a06a;
}

.map-container iframe {
  width: 100%;
  height: 260px;
  border: none;
  display: block;
}

/* ===== FOOTER ===== */
footer {
  background-color: #3b2a1a;
  color: #c8a06a;
  text-align: center;
  padding: 1.5rem 1.25rem;
  font-size: 0.82rem;
  line-height: 1.6;
}

footer strong {
  color: #f5deb3;
}

/* ===== RESPONSIVE — TABLET & UP ===== */
@media (min-width: 600px) {
  #hero h1 {
    font-size: 3.4rem;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .find-us-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* ===== RESPONSIVE — DESKTOP ===== */
@media (min-width: 900px) {
  nav {
    padding: 0.75rem 2.5rem;
  }

  section {
    padding: 4rem 2.5rem;
  }

  #hero {
    padding: 4.5rem 2.5rem 3.5rem;
  }

  #hero h1 {
    font-size: 4.4rem;
  }

  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .award-banner {
    padding: 2rem 3rem;
  }

  #awards {
    padding: 3.5rem 2.5rem;
  }

  .find-us-grid {
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
  }

  .map-container iframe {
    height: 340px;
  }
}

/* ===== MAX WIDTH CENTERING ===== */
.container {
  max-width: 1080px;
  margin: 0 auto;
}

/* ===== DAILY SPECIALS SECTION ===== */
#specials {
  background-color: #3b2a1a;
  color: #fdf6e3;
  padding: 3rem 1.5rem;
}

#specials h2 {
  color: #c8a06a;
  font-family: 'Rokkitt', serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.specials-intro {
  font-style: italic;
  color: #c8a06a;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.specials-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.specials-list li {
  border-left: 3px solid #8b1a1a;
  padding-left: 1rem;
  font-size: 1.05rem;
  line-height: 1.5;
}

.specials-empty {
  font-style: italic;
  color: #c8a06a;
  font-size: 1rem;
}
