* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #d00000;
  --primary-dark: #9d0208;
  --secondary: #370617;
  --accent: #dc2f02;
  --red-deep: #6a040f;
  --red-bright: #e85d04;
  --light: #fff8f0;
  --dark: #1a1a2e;
  --gray: #6c757d;
  --light-gray: #f8f9fa;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
  --radius: 12px;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark);
  background: var(--light);
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* Top Bar */
.top-bar {
  background: var(--secondary);
  color: var(--white);
  padding: 8px 0;
  font-size: 14px;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar a {
  color: var(--accent);
  transition: var(--transition);
}

.top-bar a:hover {
  color: var(--white);
}

/* Header */
.header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
}

.logo {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -1px;
}

.logo span {
  color: var(--primary);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
  font-size: 15px;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.nav a:hover,
.nav a.active {
  color: var(--primary);
}

.nav .btn-whatsapp {
  background: #25d366;
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}

.nav .btn-whatsapp::after {
  display: none;
}

.nav .btn-whatsapp:hover {
  background: #1da851;
  transform: scale(1.05);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--dark);
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--red-deep) 50%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: var(--red-bright);
}

.hero-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  max-width: 540px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-badges span {
  background: rgba(255, 255, 255, 0.12);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  border: 2px solid var(--red-bright);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border: 3px solid var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-whatsapp-hero {
  background: #25d366;
  color: var(--white);
}

.btn-whatsapp-hero:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

/* Hero Slider */
.hero-slider {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 6px solid var(--primary);
}

.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.slider-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}

.slider-slide .slide-label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(208, 0, 0, 0.9);
  color: white;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid rgba(255,255,255,0.3);
}

.slider-dots {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.slider-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--primary);
  transform: scale(1.2);
  box-shadow: 0 0 12px rgba(208, 0, 0, 0.5);
}

/* Hero Image Slide Backgrounds */
.slide-biryani {
  background: linear-gradient(135deg, #ff6b35, #d00000);
}
.slide-tandoori {
  background: linear-gradient(135deg, #d00000, #6a040f);
}
.slide-chinese {
  background: linear-gradient(135deg, #dc2f02, #e85d04);
}
.slide-south {
  background: linear-gradient(135deg, #e85d04, #f48c06);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 40px;
}

/* Sections common */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.section-title h2 span {
  color: var(--primary);
}

.section-title p {
  color: var(--gray);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto;
}

.section-dark {
  background: var(--secondary);
  color: var(--white);
}

.section-dark .section-title h2 {
  color: var(--white);
}

.section-dark .section-title p {
  color: rgba(255, 255, 255, 0.7);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  padding: 36px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.service-card .icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--dark);
}

.service-card p {
  color: var(--gray);
  font-size: 15px;
}

/* About Preview */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--secondary), var(--primary-dark));
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  border: 6px solid var(--primary);
  position: relative;
  overflow: hidden;
}

.about-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><text x="50" y="50" font-size="80" text-anchor="middle" dominant-baseline="central" fill="white">🍽️</text></svg>');
  background-size: cover;
}

.about-image-placeholder p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 16px;
  font-weight: 600;
  background: rgba(208, 0, 0, 0.8);
  padding: 6px 20px;
  border-radius: 50px;
}

.about-text h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}

.about-text h2 span {
  color: var(--primary);
}

.about-text p {
  color: var(--gray);
  margin-bottom: 16px;
  font-size: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--dark);
}

.about-features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 800;
  font-size: 18px;
}

/* Menu Preview */
.menu-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.menu-category-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.menu-category-card .icon {
  font-size: 56px;
  margin-bottom: 12px;
}

.menu-category-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--dark);
}

.menu-category-card p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 16px;
}

.menu-category-card .items-count {
  display: inline-block;
  background: var(--light);
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  padding: 4px 14px;
  border-radius: 50px;
}

.menu-items-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
}

.menu-items-list span {
  background: var(--light-gray);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 13px;
  color: var(--gray);
}

/* Why Choose Us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 32px 24px;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
}

.why-card .icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.why-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.why-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* Contact Info */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.contact-card .icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.contact-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.contact-card p a {
  color: var(--primary);
  font-weight: 500;
}

.contact-card p a:hover {
  text-decoration: underline;
}

/* Hours */
.hours {
  text-align: center;
  padding: 60px 0;
}

.hours h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.hours p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 60px 0;
  text-align: center;
  color: var(--white);
}

.cta h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
}

.cta p {
  font-size: 18px;
  margin-bottom: 24px;
  opacity: 0.9;
}

.cta .btn {
  background: var(--white);
  color: var(--primary);
  border: 3px solid var(--white);
}

.cta .btn:hover {
  background: var(--light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
  background: var(--secondary);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-about h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}

.footer-about h3 span {
  color: var(--primary);
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  margin-bottom: 16px;
  max-width: 360px;
}

.footer-about .tagline {
  color: var(--accent);
  font-style: italic;
  font-weight: 600;
}

.footer h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.footer-contact .icon {
  font-size: 18px;
  flex-shrink: 0;
}

.footer-contact a {
  color: var(--accent);
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.footer-bottom a {
  color: var(--accent);
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 8px;
}

.page-header p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
}

/* Menu Page */
.menu-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 60px;
}

.menu-category-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
}

.menu-category-btn:hover,
.menu-category-btn.active {
  background: var(--primary);
  color: var(--white);
}

.menu-section {
  margin-bottom: 50px;
}

.menu-section h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-section h3 .icon {
  font-size: 32px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.menu-item:hover {
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.menu-item-name {
  font-weight: 600;
  color: var(--dark);
}

.menu-item-price {
  color: var(--primary);
  font-weight: 800;
  font-size: 18px;
  background: rgba(208, 0, 0, 0.08);
  padding: 4px 16px;
  border-radius: 50px;
  border: 2px solid var(--primary);
}

.menu-item-desc {
  color: var(--gray);
  font-size: 13px;
  margin-top: 2px;
}

/* Gallery Page */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  aspect-ratio: 4/3;
  background: var(--light-gray);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  border: 4px solid #ddd;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 4px solid transparent;
  border-radius: var(--radius);
  transition: var(--transition);
}

.gallery-item:hover {
  border-color: var(--primary);
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(208, 0, 0, 0.2);
}

.gallery-item p {
  font-size: 14px;
  color: var(--gray);
  margin-top: 8px;
  text-align: center;
  padding: 0 10px;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

/* Order Page */
.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.order-info h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
}

.order-info h2 span {
  color: var(--primary);
}

.order-info p {
  color: var(--gray);
  margin-bottom: 24px;
}

.order-services {
  display: grid;
  gap: 16px;
}

.order-service-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.order-service-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-hover);
}

.order-service-card .icon {
  font-size: 36px;
}

.order-service-card h4 {
  font-size: 18px;
  margin-bottom: 2px;
}

.order-service-card p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 0;
}

.order-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.order-actions .btn {
  justify-content: center;
  width: 100%;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-details h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 24px;
}

.contact-details h2 span {
  color: var(--primary);
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item .icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  color: var(--gray);
}

.contact-item a {
  color: var(--primary);
  font-weight: 500;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* FAQ Page */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--light-gray);
}

.faq-question .arrow {
  transition: var(--transition);
  font-size: 20px;
  color: var(--primary);
}

.faq-item.open .faq-question .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--gray);
  font-size: 15px;
}

/* Privacy Page */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content h2 {
  font-size: 24px;
  margin-bottom: 16px;
  margin-top: 32px;
  color: var(--dark);
}

.privacy-content p {
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.8;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: #25d366;
  color: var(--white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

/* About Page */
.about-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.founder-section {
  background: var(--light-gray);
  padding: 40px;
  border-radius: var(--radius);
  text-align: center;
}

.founder-section h3 {
  font-size: 22px;
  margin-bottom: 4px;
}

.founder-section .title {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 12px;
}

.founder-section p {
  color: var(--gray);
}

/* Responsive */
@media (max-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content p {
    margin: 0 auto 24px;
  }

  .hero-badges {
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-slider {
    max-width: 350px;
  }

  .slider-slide {
    font-size: 80px;
  }

  .hero-image {
    padding-bottom: 50px;
  }

  .services-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .about-page-grid,
  .order-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.large {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .nav.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-slider {
    max-width: 280px;
  }

  .slider-slide {
    font-size: 60px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .services-grid,
  .why-grid,
  .menu-preview-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .page-header h1 {
    font-size: 32px;
  }

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