@import url("main.css");
/* Hero Section */
.hero-section {
  position: relative;
  height: 400px;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://images.unsplash.com/photo-1582213782179-e0d53f98f2ca?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.hero-content {
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.breadcrumb a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* Team Introduction */
.team-intro {
  padding: 80px 0;
  background: var(--gray-light);
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-tag {
  font-size: 0.8rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 15px;
  animation: fadeInUp 1s ease-out;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 25px;
  animation: fadeInUp 1s ease-out 0.1s both;
}

.section-description {
  font-size: 0.95rem;
  color: var(--gray-medium);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  animation: fadeInUp 1s ease-out 0.2s both;
}

/* Team Grid */
.team-section {
  padding: 80px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.team-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  animation: fadeInUp 1s ease-out both;
}

.team-card:nth-child(1) {
  animation-delay: 0.1s;
}
.team-card:nth-child(2) {
  animation-delay: 0.2s;
}
.team-card:nth-child(3) {
  animation-delay: 0.3s;
}
.team-card:nth-child(4) {
  animation-delay: 0.4s;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.card-header {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.team-card:hover .team-image {
  transform: scale(1.05);
}

.card-badge {
  position: absolute;
  top: 20px;
  right: -20px;
  background: var(--primary);
  color: var(--white);
  padding: 8px 25px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transform: rotate(45deg);
  box-shadow: var(--shadow-md);
}

.card-content {
  padding: 30px;
}

.member-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.member-role {
  font-size: 0.85rem;
  color: var(--gray-medium);
  margin-bottom: 15px;
}

.member-description {
  font-size: 0.8rem;
  color: var(--gray-medium);
  line-height: 1.6;
  margin-bottom: 20px;
}

.member-quote {
  font-style: italic;
  color: var(--primary);
  font-size: 0.8rem;
  line-height: 1.5;
  margin-bottom: 25px;
  padding-left: 15px;
  border-left: 3px solid var(--primary-light);
}


/* CSS Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    height: 300px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .team-intro,
  .team-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }

  .team-card {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .card-content {
    padding: 25px;
  }
}
