/* leadership-styles.css */

/* Page Container */
.page-container {
  font-family: "Inter", sans-serif;
}

/* Decorative Elements */
.top-decoration,
.bottom-decoration,
.card-separator {
  display: flex;
  justify-content: center;
  margin: 2.5rem 0;
}

.gradient-line {
  width: 5rem;
  height: 0.25rem;
  background: linear-gradient(to right, #ff8430, #002147);
  border-radius: 9999px;
}

/* Intro Section */
.intro-section {
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
}

.intro-content {
  width: 100%;
  max-width: 56rem;
  text-align: center;
}

.intro-title {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: bold;
  color: #d97706;
  margin-bottom: 1.5rem;
}

.intro-text {
  font-size: 1rem;
  line-height: 1.625rem;
  color: #312e81;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 70vh;
  min-height: 400px;
  width: 100%;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: black;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
}

.hero-title {
  color: #ff8430;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  word-wrap: break-word;
  max-width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.hero-subtitle {
  color: white;
  font-size: 1.125rem;
  max-width: 48rem;
  padding: 0 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

/* Text Card Section */
.text-card-section {
  padding: 3rem 1rem 4rem;
  max-width: 64rem;
  margin: 0 auto;
}

.text-card {
  background: linear-gradient(135deg, #f2ebdc, #fef9ef);
  border-radius: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transition: all 0.5s ease;
}

.text-card-content {
  padding: 1.5rem;
  padding-bottom: 0;
}

.card-title {
  color: #ff8430;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-align: center;
  word-wrap: break-word;
}

.card-short-content {
  color: #002147;
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.75;
  text-align: center;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.detailed-content {
  opacity: 0.8;
  transition: all 1s ease-out;
}

.detailed-content.visible {
  opacity: 0.8;
  transform: translateY(0);
}

.detail-box {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 33, 71, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.detail-text {
  color: #002855;
  font-size: 1rem;
  line-height: 1.625;
  font-weight: 300;
}

/* Leaders Section */
.leaders-section {
  padding: 3rem 1rem 4rem;
  max-width: 80rem;
  margin: 0 auto;
}

.leaders-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.leader-card {
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.leader-card:hover {
  /* transform: translateY(-4px); */
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.leader-image-container {
  position: relative;
  height: 12rem;
  width: 100%;
  overflow: hidden;
}

.leader-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  max-width: 100%;
}

.leader-card:hover .leader-image,
.leader-card:active .leader-image {
  transform: scale(1.1);
}

.leader-info {
  padding: 1rem;
  background: white;
}

.leader-name {
  color: #1f2937;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  word-wrap: break-word;
}

.leader-role {
  color: #002147;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.25rem;
  font-size: 1rem;
}

.leader-bio {
  color: #002147;
  line-height: 1rem;
  font-size: 1rem;
}

/* Responsive Design */
@media (min-width: 640px) {
  .intro-title {
    font-size: 3rem;
    margin-bottom: 2rem;
  }

  .intro-text {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .text-card-content {
    padding: 3.5rem;
    padding-bottom: 0;
  }

  .card-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .detail-box {
    padding: 2.5rem;
  }

  .card-short-content,
  .detail-text {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .leaders-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .leader-image-container {
    height: 16rem;
  }

  .leader-info {
    padding: 1.5rem;
  }

  .leader-name {
    font-size: 1.25rem;
  }

  .leader-role {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    line-height: 1.5rem;
  }

  .leader-bio {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

@media (min-width: 768px) {
}

@media (min-width: 1024px) {
  .leaders-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
