/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* Navigation */
.navbar {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #f97316, #dc2626);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.nav-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1f2937;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #4b5563;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #ea580c;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: #ea580c;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: #4b5563;
  margin: 3px 0;
  transition: 0.3s;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: #f97316;
  color: white;
}

.btn-primary:hover {
  background: #ea580c;
  transform: translateY(-2px);
}

.btn-secondary {
  background: #f97316;
  color: white;
}

.btn-secondary:hover {
  background: #ea580c;
}

.btn-hero {
  background: #fbbf24;
  color: #1f2937;
  font-size: 1.2rem;
  padding: 16px 48px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
}

.btn-hero:hover {
  background: #f59e0b;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(251, 191, 36, 0.6);
}

.btn-gradient {
  background: linear-gradient(135deg, #f97316, #dc2626);
  color: white;
  font-size: 1.1rem;
  padding: 14px 32px;
}

.btn-gradient:hover {
  background: linear-gradient(135deg, #ea580c, #b91c1c);
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: #ea580c;
  font-weight: 700;
}

.btn-white:hover {
  background: #f9fafb;
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline:hover {
  background: white;
  color: #ea580c;
}

.btn-green {
  background: #10b981;
  color: white;
}

.btn-green:hover {
  background: #059669;
}

.btn-blue {
  background: #3b82f6;
  color: white;
}

.btn-blue:hover {
  background: #2563eb;
}

.btn-purple {
  background: #8b5cf6;
  color: white;
}

.btn-purple:hover {
  background: #7c3aed;
}

.full-width {
  width: 100%;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #f97316, #dc2626, #fbbf24);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  margin-bottom: 2rem;
  font-weight: 500;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 128px;
  background: linear-gradient(to top, white, transparent);
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #f97316, #dc2626, #fbbf24);
  padding: 120px 0 80px;
  color: white;
  text-align: center;
}

.page-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  max-width: 600px;
  margin: 0 auto;
}

/* Section Styles */
.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #1f2937;
}

.section-title.white {
  color: white;
}

.section-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  text-align: center;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.section-subtitle.white {
  color: #d1d5db;
}

.section-header {
  margin-bottom: 4rem;
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* About Section */
.about {
  padding: 80px 0;
  background: white;
}

.about-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.about-main {
  font-size: 1.25rem;
  color: #374151;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about-secondary {
  font-size: 1.1rem;
  color: #6b7280;
  margin-bottom: 3rem;
}

.about-closing {
  text-align: center;
  margin-top: 3rem;
}

.about-closing p {
  font-size: 1.25rem;
  font-weight: 500;
  color: #374151;
}

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

.feature-card {
  text-align: center;
  padding: 2rem;
  border: 2px solid #fed7aa;
  border-radius: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.feature-card:hover {
  border-color: #fb923c;
  box-shadow: 0 20px 40px rgba(251, 146, 60, 0.1);
  transform: translateY(-5px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  color: white;
}

.feature-icon.chicken {
  background: linear-gradient(135deg, #f97316, #dc2626);
}

.feature-icon.fast {
  background: linear-gradient(135deg, #fbbf24, #f97316);
}

.feature-icon.quest {
  background: linear-gradient(135deg, #dc2626, #f97316);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1f2937;
}

.feature-description {
  color: #6b7280;
  line-height: 1.6;
}

/* Menu Preview */
.menu-preview {
  padding: 80px 0;
  background: linear-gradient(135deg, #fef3e2, #fef7ed);
}

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

.menu-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.menu-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.menu-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
}

.menu-badge.popular {
  background: #dc2626;
}

.menu-badge.spicy {
  background: #ea580c;
}

.menu-badge.new {
  background: #10b981;
}

.menu-badge.sweet {
  background: #8b5cf6;
}

.menu-badge.premium {
  background: #6366f1;
}

.menu-badge.kids {
  background: #06b6d4;
}

.menu-badge.classic {
  background: #6b7280;
}

.menu-badge.healthy {
  background: #059669;
}

.menu-badge.comfort {
  background: #d97706;
}

.menu-badge.fresh {
  background: #16a34a;
}

.menu-badge.homemade {
  background: #be185d;
}

.menu-content {
  padding: 1.5rem;
}

.menu-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.menu-description {
  color: #6b7280;
  margin-bottom: 1rem;
  line-height: 1.5;
}

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

.menu-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ea580c;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: #1f2937;
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-card {
  background: #374151;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #4b5563;
}

.form-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #d1d5db;
}

.form-input,
.form-textarea {
  padding: 0.75rem;
  border: 1px solid #4b5563;
  border-radius: 0.5rem;
  background: #4b5563;
  color: white;
  font-size: 1rem;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #9ca3af;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.contact-info-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: white;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: #f97316;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.contact-details h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-details p {
  color: #d1d5db;
}

.hours-section {
  margin-top: 2rem;
}

.hours-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hours-list {
  color: #d1d5db;
}

.hours-list p {
  margin-bottom: 0.25rem;
}

/* Menu Page Styles */
.menu-section {
  padding: 80px 0;
}

.menu-category {
  margin-bottom: 4rem;
}

.category-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2rem;
  color: #1f2937;
}

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

.menu-item-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.menu-item-card:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px) scale(1.02);
}

.menu-item-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-item-content {
  padding: 1rem;
}

.menu-item-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.menu-item-description {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

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

.menu-item-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ea580c;
}

/* About Page Styles */
.story-section {
  padding: 80px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.story-text {
  font-size: 1.1rem;
  color: #374151;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.story-image {
  position: relative;
  height: 400px;
  border-radius: 1rem;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.values-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fef3e2, #fef7ed);
}

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

.value-card {
  text-align: center;
  padding: 2rem;
  border: 2px solid #fed7aa;
  border-radius: 1rem;
  background: white;
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: #fb923c;
  box-shadow: 0 20px 40px rgba(251, 146, 60, 0.1);
  transform: translateY(-5px);
}

.value-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  color: white;
}

.value-icon.quality {
  background: linear-gradient(135deg, #f97316, #dc2626);
}

.value-icon.speed {
  background: linear-gradient(135deg, #fbbf24, #f97316);
}

.value-icon.community {
  background: linear-gradient(135deg, #dc2626, #f97316);
}

.value-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1f2937;
}

.value-description {
  color: #6b7280;
  line-height: 1.6;
}

.team-section {
  padding: 80px 0;
}

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

.team-card {
  text-align: center;
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.team-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.team-image {
  height: 250px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-content {
  padding: 1.5rem;
}

.team-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.team-role {
  color: #ea580c;
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-description {
  color: #6b7280;
  line-height: 1.6;
}

.location-section {
  padding: 80px 0;
  background: #1f2937;
  color: white;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.location-icon {
  width: 48px;
  height: 48px;
  background: #f97316;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.location-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.location-content p {
  color: #d1d5db;
}

.location-image {
  position: relative;
  height: 400px;
  border-radius: 1rem;
  overflow: hidden;
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact Page Styles */
.contact-main {
  padding: 80px 0;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: #f97316;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.contact-info-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #1f2937;
}

.contact-info-content p {
  color: #374151;
  margin-bottom: 0.25rem;
}

.contact-info-content span {
  color: #6b7280;
  font-size: 0.875rem;
}

.quick-contact {
  padding: 80px 0;
  background: linear-gradient(135deg, #fef3e2, #fef7ed);
}

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

.quick-contact-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.quick-contact-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.quick-contact-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  color: white;
}

.quick-contact-icon.delivery {
  background: linear-gradient(135deg, #10b981, #059669);
}

.quick-contact-icon.general {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.quick-contact-icon.urgent {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.quick-contact-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1f2937;
}

.quick-contact-description {
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.map-section {
  padding: 80px 0;
}

.map-container {
  position: relative;
  height: 400px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.map-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
}

.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-info {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.map-info i {
  font-size: 3rem;
  color: #f97316;
  margin-bottom: 1rem;
}

.map-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.map-info p {
  color: #6b7280;
}

.faq-section {
  padding: 80px 0;
  background: #1f2937;
  color: white;
}

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

.faq-item {
  margin-bottom: 1.5rem;
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: white;
}

.faq-answer {
  color: #d1d5db;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #f97316, #dc2626);
  padding: 80px 0;
  color: white;
  text-align: center;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: #000;
  color: white;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f97316;
  margin-bottom: 1rem;
}

.footer-description {
  color: #9ca3af;
  line-height: 1.6;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-list {
  list-style: none;
}

.footer-list li {
  margin-bottom: 0.5rem;
}

.footer-list a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-list a:hover {
  color: #f97316;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #f97316;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1rem;
  text-align: center;
  color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    gap: 1rem;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

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

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

  .story-image {
    order: -1;
  }

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

  .team-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .quick-contact-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .menu-items-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .nav-container {
    padding: 1rem 1.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .feature-card,
  .value-card,
  .quick-contact-card {
    padding: 1.5rem;
  }

  .menu-card,
  .menu-item-card {
    margin: 0 10px;
  }

  .contact-form-card {
    padding: 1.5rem;
  }

  .team-card {
    margin: 0 10px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card,
.menu-card,
.value-card,
.team-card,
.quick-contact-card {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.form-input:focus,
.form-textarea:focus {
  outline: 2px solid #f97316;
  outline-offset: 2px;
}

.nav-link:focus {
  outline: 2px solid #f97316;
  outline-offset: 4px;
  border-radius: 4px;
}
