/* Kumar Kitchen Website Theme Styles */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #2d2d2d;
  background: #fffdfa;
  margin: 0;
  padding: 0;
}
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1, h2, h3 {
  color: #b23c17;
  margin-top: 0;
  font-weight: 700;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.2rem; }

.btn {
  display: inline-block;
  padding: 0.75em 1.5em;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(178,60,23,0.08);
  margin: 0.5em 0.5em 0 0;
}
.btn-primary {
  background: #b23c17;
  color: #fff;
}
.btn-primary:hover {
  background: #d44e1c;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 16px rgba(178,60,23,0.16);
}
.btn-secondary {
  background: #fff;
  color: #b23c17;
  border: 2px solid #b23c17;
}
.btn-secondary:hover {
  background: #ffe5d0;
  color: #b23c17;
  transform: translateY(-2px) scale(1.04);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  padding: 3rem 0 2rem 0;
}
.hero-content {
  flex: 1 1 350px;
}
.hero-image {
  flex: 1 1 350px;
  min-width: 300px;
}
.hero-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(178,60,23,0.12);
}

.about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem 0;
}
.about-image {
  flex: 1 1 300px;
}
.about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(178,60,23,0.10);
}
.about-content {
  flex: 2 1 400px;
}

.menu-highlights {
  padding: 2.5rem 0 2rem 0;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.menu-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(178,60,23,0.07);
  padding: 1.2rem;
  text-align: center;
  transition: transform 0.18s, box-shadow 0.18s;
}
.menu-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.7em;
}
.menu-item:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 24px rgba(178,60,23,0.14);
}
.price {
  display: block;
  color: #b23c17;
  font-weight: 700;
  margin-top: 0.5em;
}

.gallery {
  padding: 2.5rem 0 2rem 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}
.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  height: 140px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.gallery-grid img:hover {
  transform: scale(1.04) translateY(-3px);
  box-shadow: 0 4px 16px rgba(178,60,23,0.13);
}

.specials {
  background: #ffe5d0;
  border-radius: 14px;
  padding: 2rem 1.5rem;
  margin: 2rem 0;
}
.specials ul {
  list-style: disc inside;
  padding-left: 1em;
}
.specials li {
  margin-bottom: 0.7em;
  font-size: 1.08em;
}

.testimonials {
  padding: 2.5rem 0 2rem 0;
}
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.testimonial {
  background: #fffdfa;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(178,60,23,0.07);
  padding: 1.2rem 1rem;
  flex: 1 1 250px;
  min-width: 220px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.testimonial:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 6px 24px rgba(178,60,23,0.13);
}
.author {
  display: block;
  margin-top: 0.7em;
  color: #b23c17;
  font-weight: 600;
}

.stats {
  background: #fff3e6;
  border-radius: 14px;
  margin: 2rem 0;
  padding: 2rem 1.5rem;
}
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
}
.stat {
  flex: 1 1 180px;
  text-align: center;
}
.stat-number {
  font-size: 2rem;
  color: #b23c17;
  font-weight: 700;
}
.stat-label {
  display: block;
  margin-top: 0.3em;
  color: #444;
}
.social-link {
  color: #b23c17;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.18s;
}
.social-link:hover {
  color: #d44e1c;
}

.cta-section {
  text-align: center;
  padding: 2.5rem 1rem 2rem 1rem;
  background: #fffdfa;
  border-radius: 14px;
  margin: 2rem 0;
}

.contact-info {
  background: #ffe5d0;
  border-radius: 14px;
  padding: 2rem 1.5rem;
  margin: 2rem 0 3rem 0;
}
.contact-info ul {
  list-style: none;
  padding: 0;
}
.contact-info li {
  margin-bottom: 0.7em;
  font-size: 1.08em;
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Responsive Design */
@media (max-width: 900px) {
  .hero, .about {
    flex-direction: column;
    gap: 1.5rem;
  }
  .stats-grid {
    flex-direction: column;
    gap: 1.2rem;
  }
  .testimonials-grid {
    flex-direction: column;
    gap: 1.2rem;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.2rem; }
  main { padding: 0 0.5rem; }
  .menu-grid, .gallery-grid {
    grid-template-columns: 1fr;
  }
  .stats, .specials, .contact-info, .cta-section {
    padding: 1.2rem 0.5rem;
  }
}
