/* About Page Styles */

.about-hero {
  background: linear-gradient(135deg, #d4a574 0%, #f4e8d0 100%);
  color: white;
  padding: 4rem 2rem;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 3rem;
  box-shadow: 0 8px 32px rgba(212, 165, 116, 0.3);
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.95;
  font-weight: 300;
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
}

.story-section,
.features-section,
.cooks-section {
  background: white;
  padding: 3rem 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  color: #d4a574;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.lead-text {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

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

.feature-item {
  text-align: center;
  padding: 2rem 1rem;
  background: #f9f7f4;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(212, 165, 116, 0.2);
  border-color: #d4a574;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-item h3 {
  color: #d4a574;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.feature-item p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

.cta-section {
  text-align: center;
  padding-top: 2rem;
}

.cta-section .btn {
  font-size: 1.1rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
  transition: all 0.3s ease;
}

.cta-section .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .about-hero {
    padding: 3rem 1.5rem;
  }
  
  .story-section,
  .features-section,
  .cooks-section {
    padding: 2rem 1.5rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .lead-text {
    font-size: 1.1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}