/* Cafe Styles */
:root {
  --primary-color: #92400e;
  --secondary-color: #78350f;
  --text-main: #451a03;
  --text-muted: #78350f;
  --bg-main: #fef3c7;
  --font-family: 'Prompt', sans-serif;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
}

.navbar {
  padding: 1.5rem 0;
  background: transparent;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 100;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.75rem;
  font-weight: 600;
  color: white;
}

.logo span {
  color: #fcd34d;
}

.nav-links a {
  margin-left: 1.5rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

.nav-links .btn-outline {
  border-color: rgba(255,255,255,0.5);
  color: white;
}

.nav-links .btn-outline:hover {
  background: white;
  color: var(--text-main);
}

.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(69, 26, 3, 0.6);
  z-index: -1;
}

.hero-content h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 500;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  opacity: 0.9;
}

.menu-section {
  background-color: var(--bg-main);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.menu-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.menu-img {
  font-size: 3rem;
  background: #fef3c7;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.menu-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.menu-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.price {
  font-weight: 600;
  color: var(--primary-color);
}
