/* Warm Scroll Theme */
:root {
  --primary: #8B4513;
  --accent: #D2691E;
  --bg: #faf6f1;
  --text: #3d3d3d;
  --text-light: #6b6b6b;
}

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

body {
  font-family: 'Source Sans Pro', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Navigation */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.nav-cta {
  color: white;
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  border: 2px solid white;
  border-radius: 2rem;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: white;
  color: var(--primary);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  color: white;
  position: relative;
}

.hero-content {
  max-width: 800px;
  padding: 2rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-primary:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1.25rem;
}

/* Sections */
section {
  padding: 5rem 0;
}

section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--primary);
}

/* About */
.about p {
  max-width: 800px;
  margin: 0 auto 1.5rem;
  text-align: center;
  font-size: 1.1rem;
}

.highlights {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  list-style: none;
  margin-top: 2rem;
}

.highlights li {
  background: white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  font-weight: 600;
  color: var(--primary);
}

/* Menu */
.menu {
  background: var(--primary);
  color: white;
}

.menu h2 {
  color: white;
}

.menu-desc {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  opacity: 0.9;
}

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

.menu-item {
  background: rgba(255,255,255,0.1);
  padding: 1.5rem;
  border-radius: 0.5rem;
  backdrop-filter: blur(10px);
}

.item-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.item-price {
  float: right;
  color: var(--accent);
  font-weight: 600;
  background: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  color: var(--primary);
}

.item-desc {
  margin-top: 0.75rem;
  opacity: 0.9;
  font-size: 0.95rem;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.review-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-left: 4px solid var(--accent);
}

.review-card p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--text);
}

.review-card footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stars {
  color: #ffc107;
  font-size: 1.25rem;
}

.reviews-summary {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Contact */
.contact {
  background: linear-gradient(135deg, var(--primary) 0%, #D2691E 100%);
  color: white;
}

.contact h2 {
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.contact-info p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.contact-info a {
  color: white;
  text-decoration: underline;
}

.contact-cta {
  text-align: center;
}

.contact-cta .btn-primary {
  background: white;
  color: var(--primary);
}

.contact-cta .btn-primary:hover {
  background: var(--bg);
}

/* Footer */
.footer {
  background: var(--text);
  color: white;
  text-align: center;
  padding: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .highlights {
    flex-direction: column;
    align-items: center;
  }

  .menu-item {
    text-align: center;
  }

  .item-price {
    float: none;
    display: block;
    margin-top: 0.5rem;
  }
}