/* About Hero Section */
.about-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("img/about-hero.jpg") center center no-repeat;
  background-size: cover;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(58, 40, 21, 0.85),
    rgba(212, 175, 55, 0.3)
  );
  z-index: 1;
}

.about-hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  text-align: center;
  color: white;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 300;
  opacity: 0.95;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

/* Our Story Section */
.our-story {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.95);
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-text h2 {
  font-size: 38px;
  color: #3a2815;
  margin-bottom: 30px;
  font-weight: 600;
  position: relative;
  padding-bottom: 15px;
}

.story-text h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #f4e5b0);
  border-radius: 2px;
}

.story-text p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.story-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.story-image:hover img {
  transform: scale(1.05);
}

/* Our Values Section */
.our-values {
  padding: 100px 0;
  background: rgba(248, 248, 248, 0.95);
}

.values-header {
  text-align: center;
  margin-bottom: 70px;
}

.values-header h2 {
  font-size: 38px;
  color: #3a2815;
  margin-bottom: 15px;
  font-weight: 600;
}

.values-header p {
  font-size: 18px;
  color: #666;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

.value-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #f4e5b0);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.25);
}

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d4af37, #f4e5b0);
  border-radius: 50%;
  color: #3a2815;
}

.value-icon svg {
  width: 35px;
  height: 35px;
}

.value-card h3 {
  font-size: 22px;
  color: #3a2815;
  margin-bottom: 15px;
  font-weight: 600;
}

.value-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* Production Process Section */
.production-process {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.95);
}

.process-header {
  text-align: center;
  margin-bottom: 70px;
}

.process-header h2 {
  font-size: 38px;
  color: #3a2815;
  margin-bottom: 15px;
  font-weight: 600;
}

.process-header p {
  font-size: 18px;
  color: #666;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.process-step {
  background: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.2);
}

.step-number {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #d4af37, #f4e5b0);
  color: #3a2815;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.step-content h3 {
  font-size: 20px;
  color: #3a2815;
  margin-bottom: 10px;
  font-weight: 600;
}

.step-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* About CTA Section */
.about-cta {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    rgba(58, 40, 21, 0.9),
    rgba(212, 175, 55, 0.8)
  );
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("img/background.png") center center;
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
}

.about-cta .container {
  position: relative;
  z-index: 1;
}

.cta-content {
  text-align: center;
  color: white;
}

.cta-content h2 {
  font-size: 38px;
  margin-bottom: 20px;
  font-weight: 600;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 35px;
  opacity: 0.95;
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-hero {
    height: 350px;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    height: 300px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .our-story,
  .our-values,
  .production-process {
    padding: 60px 0;
  }

  .story-text h2,
  .values-header h2,
  .process-header h2 {
    font-size: 30px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .about-cta {
    padding: 60px 0;
  }

  .cta-content h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .about-hero {
    height: 250px;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .story-text h2,
  .values-header h2,
  .process-header h2 {
    font-size: 24px;
  }

  .story-text p,
  .values-header p,
  .process-header p {
    font-size: 15px;
  }

  .value-card {
    padding: 30px 20px;
  }

  .process-step {
    padding: 25px;
    gap: 20px;
  }

  .cta-content h2 {
    font-size: 24px;
  }

  .cta-content p {
    font-size: 16px;
  }
}
