:root {
  --primary: #f97316; /* Orange */
  --primary-dark: #ea580c;
  --secondary: #1f2937; /* Dark Gray */
  --accent: #10b981; /* Green */
  --bg: #f8fafc;
  --surface: #ffffff;
  --text-main: #111827;
  --text-muted: #6b7280;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg);
  color: var(--text-main);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  margin: 0;
  line-height: 1.2;
}

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

/* Navbar & Footer styles moved to Tailwind classes in layout */


/* Hero */
.hero {
  position: relative;
  background-color: #2c3e50;
  background-image: url('https://images.unsplash.com/photo-1543353071-873f17a7a088?q=80&w=2070&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 5rem 0;
  text-align: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}
.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}
.badge-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.badge-status.open { color: #4ade80; border-color: #4ade80; }
.badge-status.closed { color: #f87171; border-color: #f87171; }

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Features */
.features {
  padding: 4rem 0;
  background: var(--surface);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.feature-card {
  text-align: center;
  padding: 1.5rem;
}
.icon-box {
  width: 60px;
  height: 60px;
  background: #fff7ed;
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1rem;
}
.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Main Layout */
.main-content {
  padding: 4rem 1.5rem;
}
.section-header {
  margin-bottom: 2rem;
}
.section-heading {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}
.section-sub {
  color: var(--text-muted);
}
.text-center { text-align: center; }

/* Cards */
.card {
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
}
.card-header {
  padding: 1.25rem;
  border-bottom: 1px solid var(--border);
  background: #f9fafb;
}
.card-header h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary);
}
.card-body {
  padding: 1.5rem;
}

/* Featured Dish */
.dish-card.featured {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 3rem;
}
.dish-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dish-image-placeholder {
  background: #ffedd5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--primary);
}
.tag {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
  align-self: flex-start;
}
.dish-name {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}
.dish-desc {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.grid-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

/* Weekly List */
.weekly-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.weekly-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f3f4f6;
}
.weekly-list li:last-child { border-bottom: none; }
.weekly-list .day { font-weight: 600; color: var(--text-muted); }
.weekly-list .meal { font-weight: 500; color: var(--secondary); }

/* Forms */
.order-section {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.modern-form .form-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.input-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}
.input-wrapper {
  position: relative;
}
.input-wrapper i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}
.input-wrapper input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}
.input-wrapper input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.btn-primary {
  background: var(--primary);
  color: white;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  border: 1px solid white;
  color: white;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}
.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}
.btn-block {
  width: 100%;
  justify-content: center;
}
.order-success {
  margin-top: 1rem;
  padding: 1rem;
  background: #ecfdf5;
  color: #059669;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
}

/* Footer styles moved to Tailwind classes in layout */

/* Loyalty Badge */
.loyalty-badge {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  animation: fadeIn 0.3s ease-in;
}

/* Checkbox */
.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.75rem;
  background: #fff7ed;
  border: 1px solid #ffedd5;
  border-radius: var(--radius-sm);
}
.checkbox-wrapper input {
  width: 1.25rem;
  height: 1.25rem;
  accent-color: var(--primary);
  cursor: pointer;
}
.checkbox-wrapper .label-text {
  font-weight: 600;
  color: var(--primary-dark);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .dish-card.featured { grid-template-columns: 1fr; }
  .dish-image-placeholder { height: 200px; }
  .grid-layout { grid-template-columns: 1fr; }
  .footer-content { flex-direction: column; text-align: center; gap: 1.5rem; }
}
