@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-orange: #ff6b00;
  --primary-orange-hover: #e65c00;
  --bg-white: #ffffff;
  --bg-off-white: #f9f9f9;
  --text-dark: #1f1f1f;
  --text-light: #666666;
  --border-color: #eaeaea;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Outfit', sans-serif;
}

body {
  background-color: var(--bg-off-white);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }

/* Navbar */
header {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: var(--shadow-sm);
}
nav {
  max-width: 1200px; margin: 0 auto; padding: 1rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
}
.logo { font-size: 1.5rem; font-weight: 800; display: flex; align-items: center; gap: 0.5rem; color: var(--primary-orange); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { font-weight: 500; font-size: 1rem; color: var(--text-dark); position: relative; }
.nav-links a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -4px; left: 0; background-color: var(--primary-orange); transition: width 0.3s ease; }
.nav-links a:hover { color: var(--primary-orange); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--primary-orange); }

.btn-order {
  background-color: var(--primary-orange); color: var(--bg-white);
  padding: 0.75rem 1.5rem; border-radius: 9999px; font-weight: 600;
  display: flex; align-items: center; gap: 0.5rem; border: none; cursor: pointer; transition: all 0.3s ease;
}
.btn-order:hover { background-color: var(--primary-orange-hover); transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--bg-white); }

/* Hero Section */
.hero { max-width: 1200px; margin: 4rem auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-content h1 { font-size: 4rem; margin-bottom: 1rem; }
.hero-content h1 span { color: var(--primary-orange); }
.hero-content p { color: var(--text-light); font-size: 1.125rem; margin-bottom: 2rem; }
.hero-buttons { display: flex; gap: 1rem; }
.btn-secondary { background-color: var(--bg-white); color: var(--text-dark); padding: 0.75rem 1.5rem; border-radius: 9999px; font-weight: 600; border: 1px solid var(--border-color); cursor: pointer; transition: all 0.3s ease; }
.btn-secondary:hover { border-color: var(--primary-orange); color: var(--primary-orange); }

.hero-image { position: relative; }
.hero-image img { width: 100%; border-radius: 24px; box-shadow: var(--shadow-lg); object-fit: cover; }
.floating-badge { position: absolute; top: 2rem; right: -2rem; background: var(--bg-white); padding: 1rem; border-radius: 16px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 1rem; animation: float 3s ease-in-out infinite; }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0px); } }

/* Features Section */
.features { max-width: 1200px; margin: 0 auto 6rem; padding: 0 2rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; }
.feature-card { 
  text-align: center; 
  padding: 2.5rem; 
  background: var(--bg-white); 
  border-radius: 20px; 
  box-shadow: var(--shadow-sm); 
  border: 1px solid var(--border-color); 
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(30px);
}
.feature-card.reveal {
  opacity: 1;
  transform: translateY(0);
}
.feature-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); border-color: #ffe0cc; }
.feature-icon { width: 80px; height: 80px; background: rgba(255, 107, 0, 0.1); color: var(--primary-orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.feature-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.feature-card p { color: var(--text-light); }

/* Popular Dishes Section */
.popular-dishes { max-width: 1200px; margin: 0 auto 6rem; padding: 0 2rem; }
.section-title { text-align: center; margin-bottom: 4rem; }
.section-title h2 { font-size: 2.5rem; color: var(--text-dark); margin-bottom: 1rem; }
.section-title p { color: var(--text-light); font-size: 1.125rem; }
.dishes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.5rem; }
.dish-card { 
  background: var(--bg-white); 
  border-radius: 24px; 
  overflow: hidden; 
  box-shadow: var(--shadow-sm); 
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); 
  border: 1px solid var(--border-color);
  opacity: 0;
  transform: translateY(40px) scale(0.95);
}

.dish-card.reveal {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.dish-card:hover { 
  transform: translateY(-12px) scale(1.02); 
  box-shadow: 0 20px 40px -10px rgba(255, 107, 0, 0.2);
  border-color: var(--primary-orange); 
}

.dish-img-wrapper { height: 250px; overflow: hidden; position: relative; }
.dish-img-wrapper::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.05));
}

.dish-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.dish-card:hover .dish-img-wrapper img { transform: scale(1.1) rotate(1deg); }
.dish-info { padding: 2rem; text-align: center; }
.dish-info h4 { font-size: 1.4rem; margin-bottom: 0.5rem; transition: color 0.3s ease; }
.dish-card:hover .dish-info h4 { color: var(--primary-orange); }
.dish-rating { display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-weight: 600; color: var(--text-dark); margin-bottom: 1rem; }
.dish-info span { display: block; font-size: 1.5rem; font-weight: 800; color: var(--primary-orange); transition: transform 0.3s ease; }
.dish-card:hover .dish-info span { transform: scale(1.1); }

/* Call to Action Banner */
.cta-banner { max-width: 1200px; margin: 0 auto 6rem; padding: 0 2rem; }
.cta-content { background: linear-gradient(135deg, var(--primary-orange), #ff8a33); border-radius: 32px; padding: 5rem 3rem; text-align: center; color: var(--bg-white); box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.cta-content::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%); transform: rotate(30deg); }
.cta-content h2 { font-size: 3rem; margin-bottom: 1rem; position: relative; z-index: 1; }
.cta-content p { font-size: 1.25rem; margin-bottom: 3rem; opacity: 0.9; max-width: 600px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
.cta-btn { background: var(--bg-white); color: var(--primary-orange); margin: 0 auto; padding: 1rem 2.5rem; font-size: 1.125rem; font-weight: 700; position: relative; z-index: 1; }
.cta-btn:hover { background: var(--bg-off-white); color: var(--primary-orange-hover); transform: translateY(-3px); }

/* Footer */
footer { 
  background-color: var(--bg-white); 
  border-top: 1px solid var(--border-color); 
  padding: 4rem 2rem; 
  text-align: center; 
  margin-top: auto; 
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.footer-social a {
  width: 48px;
  height: 48px;
  background: var(--bg-off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}
.footer-social a:hover {
  background: var(--primary-orange);
  color: white;
  border-color: var(--primary-orange);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
footer p { color: var(--text-light); font-size: 0.9rem; }

/* Responsive */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-buttons { justify-content: center; }
  .floating-badge { display: none; }
  .nav-links { display: none; }
}
