/* [project]/app/globals.css [app-client] (css) */
:root {
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
  --cream: #fdf6ee;
  --espresso: #2c1a0e;
  --brown: #6b3f1f;
  --caramel: #c8813a;
  --caramel-light: #e8a85a;
  --muted: #7a5c44;
  --line: #e8d9c8;
  --white: #fff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  min-height: 100%;
}

body {
  background: var(--cream);
  color: var(--espresso);
  text-rendering: optimizelegibility;
  font-family: Georgia, Times New Roman, serif;
  line-height: 1.6;
}

nav {
  z-index: 10;
  background: var(--espresso);
  color: var(--cream);
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2.5rem;
  display: flex;
  position: sticky;
  top: 0;
}

.nav-brand {
  letter-spacing: .02em;
  color: var(--caramel-light);
  font-size: 1.3rem;
  font-style: italic;
}

.nav-links {
  gap: 2rem;
  list-style: none;
  display: flex;
}

.nav-links a {
  color: var(--cream);
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .85;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .875rem;
  text-decoration: none;
  transition: opacity .2s;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--caramel-light);
}

.hero {
  text-align: center;
  min-height: 92vh;
  color: var(--cream);
  background: linear-gradient(160deg, #2c1a0e 0%, #5a2d0c 50%, #8b4513 100%);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: "";
  background: radial-gradient(70% 60% at 50% 40%, #c8813a2e 0%, #0000 70%);
  position: absolute;
  inset: 0;
}

.hero-eyebrow {
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--caramel-light);
  margin-bottom: 1.25rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .8rem;
  position: relative;
}

.hero h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-style: italic;
  line-height: 1.05;
  position: relative;
}

.hero h1 span {
  color: var(--caramel-light);
}

.hero p {
  opacity: .85;
  max-width: 34rem;
  margin-bottom: 2.5rem;
  font-size: 1.15rem;
  position: relative;
}

.btn {
  background: var(--caramel);
  color: var(--white);
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 2px;
  padding: .85rem 2.25rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .875rem;
  text-decoration: none;
  transition: background .2s, transform .15s;
  display: inline-block;
  position: relative;
}

.btn:hover {
  background: var(--caramel-light);
  transform: translateY(-1px);
}

section {
  padding: 5rem 2rem;
}

.section-label {
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: .75rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .75rem;
  display: block;
}

.about {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: 960px;
  margin: 0 auto;
  display: grid;
}

.about-text h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-style: italic;
  line-height: 1.2;
}

.about-text p {
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.about-visual {
  color: #ffffff26;
  -webkit-user-select: none;
  user-select: none;
  background: linear-gradient(135deg, #5a2d0c, #8b4513);
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  height: 340px;
  font-size: 5rem;
  display: flex;
}

.menu-section {
  background: var(--espresso);
  color: var(--cream);
  text-align: center;
}

.menu-section h2 {
  margin-bottom: .5rem;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-style: italic;
}

.menu-section > p {
  color: #fdf6eea6;
  margin-bottom: 3rem;
}

.menu-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 980px;
  margin: 0 auto;
  display: grid;
}

.menu-card {
  text-align: left;
  background: #ffffff0d;
  border: 1px solid #ffffff14;
  border-radius: 4px;
  padding: 2rem 1.5rem;
}

.menu-card-icon {
  margin-bottom: 1rem;
  font-size: 2rem;
  display: block;
}

.menu-card h3 {
  color: var(--caramel-light);
  margin-bottom: .4rem;
  font-size: 1.1rem;
  font-style: italic;
}

.menu-card p {
  color: #fdf6ee99;
  margin-bottom: .75rem;
  font-size: .9rem;
  line-height: 1.5;
}

.menu-card .price {
  color: var(--caramel-light);
  font-family: Arial, Helvetica, sans-serif;
  font-size: .95rem;
  font-weight: bold;
}

.features-section {
  text-align: center;
}

.features-section h2 {
  margin-bottom: .5rem;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-style: italic;
}

.features-section > p {
  color: var(--muted);
  margin-bottom: 3rem;
}

.features-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 920px;
  margin: 0 auto;
  display: grid;
}

.feature {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 4px;
  padding: 2rem;
}

.feature-icon {
  margin-bottom: 1rem;
  font-size: 2.25rem;
  display: block;
}

.feature h3 {
  margin-bottom: .5rem;
  font-size: 1.1rem;
  font-style: italic;
}

.feature p {
  color: var(--muted);
  font-size: .95rem;
}

.hours-section {
  text-align: center;
  background: #f5ece0;
}

.hours-section h2 {
  margin-bottom: 2rem;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-style: italic;
}

.hours-table {
  text-align: left;
  grid-template-columns: 1fr auto;
  gap: .6rem 3rem;
  font-size: 1rem;
  display: inline-grid;
}

.hours-table .day {
  color: var(--muted);
}

.hours-table .time {
  color: var(--espresso);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.divider {
  border: none;
  border-top: 1px solid var(--line);
  grid-column: 1 / -1;
  margin: .25rem 0;
}

.contact-section {
  background: var(--espresso);
  color: var(--cream);
  text-align: center;
  padding: 5rem 2rem 4rem;
}

.contact-section h2 {
  margin-bottom: .5rem;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-style: italic;
}

.contact-section > p {
  color: #fdf6eea6;
  margin-bottom: 2.5rem;
}

.contact-info {
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 3rem;
  display: flex;
}

.contact-item {
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  display: flex;
}

.contact-item-icon {
  font-size: 1.5rem;
}

.contact-item span {
  letter-spacing: .04em;
  color: #fdf6eebf;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .875rem;
}

.contact-item strong {
  color: var(--caramel-light);
  font-family: Arial, Helvetica, sans-serif;
  font-size: .95rem;
}

footer {
  color: #fdf6ee73;
  text-align: center;
  letter-spacing: .04em;
  background: #1a0f07;
  padding: 1.5rem 2rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .8rem;
}

@media (max-width: 680px) {
  nav {
    padding: .9rem 1.25rem;
  }

  .nav-links {
    gap: 1.1rem;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-visual {
    height: 200px;
    font-size: 3.5rem;
  }
}

/*# sourceMappingURL=app_globals_0yg4wg8.css.map*/