/* assets/css/about.css */
:root {
  --primary-dark: #000;
  --primary-red: #d10000;
  --primary-green: #006400;
  --accent-yellow: #ffd700;
  --text-white: #fff;
  --text-dark: #2c3e50;
  --gradient-angle: 135deg;
}

/* Hero Section */
.hero-about {
  min-height: 60vh;
  background: linear-gradient(
      var(--gradient-angle),
      rgba(0, 0, 0, 0.9),
      rgba(209, 0, 0, 0.85),
      rgba(0, 100, 0, 0.8)
    ),
    url('../images/about-bg.jpg') center/cover;
  padding: 4rem 1rem;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-about h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-about .lead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 800px;
  margin: 0 auto;
}

/* About Content */
.about-content {
  background: rgba(255, 255, 255, 0.98);
}

.about-content h2 {
  color: var(--primary-green);
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.about-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary-red);
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
}

/* Team Members */
.team-card {
  transition: all 0.3s ease;
  border-radius: 15px;
  padding: 1rem;
  background: var(--text-white);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-image {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1rem;
  border: 3px solid var(--primary-green);
}

/* Core Values */
.our-values {
  background: linear-gradient(
    var(--gradient-angle),
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.9)
  );
}

.value-card {
  border-radius: 15px;
  transition: all 0.3s ease;
  background: var(--text-white);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.value-card i {
  margin-bottom: 1rem;
  background: linear-gradient(
    var(--gradient-angle),
    var(--primary-green),
    var(--primary-red)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Meet Our Team */
.meet-team {
  background: rgba(0, 100, 0, 0.03);
}

.meet-team h2 {
  color: var(--primary-dark);
  position: relative;
  padding-bottom: 1rem;
}

.meet-team h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--primary-red);
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-content .col-md-8 {
    margin-bottom: 3rem;
  }

  .value-card {
    min-height: auto;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-about {
    min-height: 50vh;
    padding: 3rem 1rem;
  }

  .team-image {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 576px) {
  .about-content p {
    font-size: 1rem;
  }

  .team-card {
    margin-bottom: 1.5rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-content,
.our-values,
.meet-team {
  animation: fadeInUp 0.6s ease forwards;
}

/* Accessibility */
.team-card:focus,
.value-card:focus {
  outline: 3px solid var(--accent-yellow);
  outline-offset: 2px;
}