/* Restaurant Page Styles */
.restaurant-page {
  min-height: 100vh;
}

.restaurant-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.restaurant-hero .hero-title {
  font-size: 48px;
  margin-bottom: 20px;
}

.restaurant-hero .hero-subtitle {
  font-size: 24px;
  margin-bottom: 20px;
}

.restaurant-hero .hero-description {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about-section {
  background: var(--bg-light);
  padding: 80px 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 25px;
  color: var(--text-dark);
}

.about-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 40px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 20px;
}

.feature-icon {
  font-size: 32px;
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.about-feature p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

.about-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* Menu Section */
.menu-section {
  background: var(--white);
  padding: 80px 0;
}

.menu-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.menu-category {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

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

.category-header {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--primary-color);
}

.category-header h3 {
  font-size: 24px;
  color: var(--text-dark);
  font-weight: 600;
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(45, 80, 22, 0.1);
}

.menu-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.item-info {
  flex: 1;
}

.item-name {
  font-size: 16px;
  margin-bottom: 5px;
  color: var(--text-dark);
  font-weight: 600;
}

.item-description {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

.item-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  flex-shrink: 0;
}

/* Specialties Section */
.specialties-section {
  background: var(--bg-light);
  padding: 80px 0;
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.specialty-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

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

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

.specialty-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.specialty-card:hover .specialty-image img {
  transform: scale(1.05);
}

.specialty-content {
  padding: 30px;
}

.specialty-content h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.specialty-description {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.specialty-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.feature-tag {
  background: var(--bg-light);
  color: var(--primary-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.specialty-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
}

/* Services Section */
.services-section {
  background: var(--white);
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.service-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--bg-light);
  border-radius: 16px;
  transition: all 0.3s ease;
}

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

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

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

.service-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .about-features {
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
  }

  .menu-categories {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }

  .specialties-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .restaurant-hero {
    height: 50vh;
    min-height: 350px;
  }

  .restaurant-hero .hero-title {
    font-size: 36px;
  }

  .restaurant-hero .hero-subtitle {
    font-size: 20px;
  }

  .restaurant-hero .hero-description {
    font-size: 16px;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .about-text p {
    font-size: 15px;
  }

  .about-features {
    gap: 20px;
  }

  .about-feature {
    gap: 15px;
  }

  .feature-icon {
    font-size: 28px;
    width: 50px;
    height: 50px;
  }

  .about-feature h4 {
    font-size: 16px;
  }

  .about-feature p {
    font-size: 13px;
  }

  .about-image img {
    height: 300px;
  }

  .menu-categories {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .menu-category {
    padding: 25px;
  }

  .category-header h3 {
    font-size: 20px;
  }

  .item-name {
    font-size: 15px;
  }

  .item-description {
    font-size: 13px;
  }

  .item-price {
    font-size: 16px;
  }

  .specialties-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .specialty-content {
    padding: 25px;
  }

  .specialty-content h3 {
    font-size: 18px;
  }

  .specialty-description {
    font-size: 13px;
  }

  .specialty-price {
    font-size: 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .service-card {
    padding: 30px 25px;
  }

  .service-icon {
    font-size: 40px;
    margin-bottom: 15px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 13px;
  }
}
