/* About Page Specific Styles */
.about-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-bottom: 4rem;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), 
              url('../images/placeholder_about.jpg') center/cover no-repeat;
  z-index: -1;
  transform: scale(1.1);
  transition: transform 10s ease;
}

.about-hero:hover::before {
  transform: scale(1);
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

.about-section {
  margin: 4rem 0;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-section h2 {
  color: #4a8f3c;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.about-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background: #4a8f3c;
  transition: width 0.3s ease;
}

.about-section:hover h2::after {
  width: 100px;
}

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

.team-member {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.team-member.visible {
  animation: fadeInUp 0.6s ease forwards;
}

.team-member:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid #4a8f3c;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-hero {
    height: 50vh;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .about-section {
    padding: 1.5rem;
  }
}

/* Button Styles */
.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background: #4a8f3c;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  margin-top: 1.5rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cta-button:hover {
  background: transparent;
  border-color: #4a8f3c;
  color: #4a8f3c;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
