/* About Page Styles */

/* Hero Banner */
.about-hero {
  background: linear-gradient(135deg, #241E4E 60%, #960200 100%);
  color: #fff;
  text-align: center;
  padding: 120px 20px;
  position: relative;
}

.about-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #FFD046; /* Golden Pollen */
}

.about-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: auto;
}

/* Company Story */
.about-story {
  background: #EADAA2; /* Vanilla Custard */
  padding: 60px 20px;
  text-align: center;
}

.about-story h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #241E4E;
}

.about-story p {
  font-size: 1rem;
  max-width: 800px;
  margin: auto;
  line-height: 1.6;
}

/* Mission & Values */
.about-values {
  background: #fff;
  padding: 60px 20px;
}

.about-values h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #960200; /* Oxblood */
}

.about-values p {
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.6;
}

.about-values ul {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: auto;
}

.about-values li {
  background: #EADAA2;
  margin-bottom: 10px;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 1rem;
}

/* Expertise Section */
.about-expertise {
  background: #CE6C47; /* Burnt Peach */
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.about-expertise h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #FFD046;
}

.about-expertise p {
  max-width: 800px;
  margin: auto;
  line-height: 1.6;
}

/* Call to Action */
.about-cta {
  background: url('../images/wood-kitchen.png') center center/cover no-repeat;
  position: relative;
  text-align: center;
  padding: 80px 20px;
  color: #fff;
}

.about-cta::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(36, 30, 78, 0.7); /* Dark Amethyst overlay */
}

.about-cta .container {
  position: relative;
  z-index: 1;
}

.about-cta h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #FFD046;
}

.about-cta p {
  margin-bottom: 20px;
}

.about-cta .btn {
  background: #CE6C47;
  color: #fff;
  padding: 12px 30px;
  border-radius: 25px;
  transition: background 0.3s ease;
}

.about-cta .btn:hover {
  background: #FFD046;
  color: #241E4E;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .about-hero {
    padding: 80px 15px;
  }
  .about-hero h1 {
    font-size: 2rem;
  }
  .about-hero p {
    font-size: 1rem;
  }

  .about-story, .about-values, .about-expertise, .about-cta {
    padding: 40px 15px;
  }

  .about-values li {
    font-size: 0.95rem;
  }

  .about-cta h2 {
    font-size: 1.6rem;
  }
  .about-cta .btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}