:root {
  --background: #FAF0B6;         /* Rich golden-yellow background */
  --section-bg: #FFFBE6;         /* Former body background becomes section bg */
  --foreground: #4E4637;
  --highlight: #FCD875;
  --accent: #A6C2A1;
  --btn-bg: #FCD875;
  --btn-text: #3E362E;

  --font-header: 'Playfair Display', serif;
  --font-body: 'Karla', sans-serif;

  --border-radius: 16px;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --space: 1.5rem;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

header {
  text-align: center;
  padding: var(--space);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
  font-size: 1.05rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background-color: var(--background-alt);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  font-family: var(--font-body);
  transition: transform 0.2s ease;
}

.menu-item:hover {
  transform: scale(1.02);
  background-color: var(--highlight);
}

.menu-item span {
  font-weight: 500;
}

.menu-item strong {
  font-weight: bold;
  color: var(--foreground);
}

/* On small screens: single column */
@media (max-width: 600px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}


h1, h2, h3 {
  font-family: var(--font-header);
  color: var(--foreground);
}

.section {
  background-color: var(--section-bg);
  margin: var(--space) auto;
  padding: var(--space);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  max-width: 1000px;
  text-align: center;
}

.hours {
  list-style: none;
  padding: 0;
  margin-top: var(--space);
  font-size: 1.05rem;
}

button {
  background-color: var(--btn-bg);
  color: var(--btn-text);
  border: none;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 1rem;
}

button:hover {
  background-color: var(--highlight);
  opacity: 0.95;
}

.card {
  background: #fff;
  padding: var(--space);
  margin: var(--space) auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  max-width: 350px;
}

.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space);
}

.hours li {
  transition: all 0.3s ease;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.hours li.today-highlight {
  background-color: rgba(252, 216, 117, 0.2);
  border-radius: 8px;
  padding: 0.25rem 0.5rem;
}

.hours li.dimmed {
  color: rgba(78, 70, 55, 0.5);
}

.footer-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

/* Mailing List Form */
.mailing-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.mailing-list input[type="email"],
.mailing-list button {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  height: 48px;
  border-radius: var(--border-radius);
  box-sizing: border-box;
}

.mailing-list input[type="email"] {
  border: 1px solid rgba(78, 70, 55, 0.2);
  max-width: 300px;
  width: 100%;
}

.mailing-list button {
  background-color: var(--btn-bg);
  color: var(--btn-text);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.mailing-list button:hover {
  background-color: var(--highlight);
}

/* Contact Icons (stacked below form) */
.contact-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 2.2rem;
  margin: 2rem 0 1rem 0;
}

.contact-icons a {
  color: #D29E28;
  text-shadow: 0 1px 2px rgba(50, 35, 5, 0.4),
               0 0 6px rgba(255, 220, 100, 0.4);
  transition: transform 0.3s ease, color 0.3s ease;
}

.contact-icons a:hover {
  color: var(--highlight); /* soft sage green */
  transform: scale(1.2);
}

/* Footer Location Line */
.footer-location {
  margin: 1rem 0 0.25rem;
  font-size: 1rem;
}

.location-link {
  color: var(--foreground);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.location-link i {
  color: var(--accent);
  font-size: 1.2rem;
  text-shadow: 0 0 4px rgba(252, 216, 117, 0.2);
}

.location-link:hover {
  color: var(--highlight);
  text-shadow: 0 0 6px rgba(252, 216, 117, 0.3);
}

.order-btn {
  background-color: var(--highlight);
  color: var(--text);
  padding: 0.85rem 2rem;
  font-size: 1.2rem;
  border: none;
  border-radius: 999px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  font-family: 'Karla', sans-serif;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.order-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.order-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  transform: skewX(-25deg);
  transition: left 0.6s ease-in-out;
  pointer-events: none;
}

.order-btn:hover::after {
  left: 125%;
}

.order-btn:hover::after {
  left: 125%;
}

footer p {
  font-size: 0.9rem;
}