/* About Page Specific Styles */
.about-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  background: url('../images/about.jpg') center/cover no-repeat, #132c17;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-top: 70px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 800px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  color: var(--secondary);
  text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
  line-height: 1.2;
  font-weight: 700;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  margin-bottom: 1rem;
  color: white;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
  font-weight: 600;
  letter-spacing: 1px;
}

.hero-description {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  line-height: 1.5;
  max-width: 600px;
  font-weight: 400;
}

.hero-btn {
  padding: 10px 25px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 25px;
  background: var(--secondary);
  color: var(--primary);
  text-decoration: none;
  border: 2px solid var(--secondary);
  transition: all 0.3s ease;
  display: inline-block;
  min-width: 140px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex: none;
}

.hero-btn:hover {
  background: transparent;
  color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--text);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.divider {
  width: 80px;
  height: 4px;
  background: var(--secondary);
  margin: 1rem auto 2rem;
}

/* Core Principles Section */
.core-principles {
  padding: 4rem 1rem;
  background: white;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.principle-card {
  background: var(--light);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.principle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.principle-icon {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 1rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.principle-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.principle-card p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Partnership Network Section */
.partnership-network {
  padding: 4rem 1rem;
  background: var(--light);
}

.partnership-content {
  max-width: 1200px;
  margin: 0 auto;
}

.partnership-text {
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.partnership-text h3 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.partnership-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.partnership-text ul li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  line-height: 1.6;
}

.partnership-text ul li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
  font-size: 1.1rem;
}

.partnership-text p {
  line-height: 1.6;
  color: var(--text);
}

.partnership-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.flow-step {
  text-align: center;
  padding: 1.5rem 1rem;
  min-width: 120px;
  flex: 1;
}

.flow-icon {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 1rem;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-step h4 {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.flow-arrow {
  color: var(--secondary);
  font-size: 1.2rem;
  padding: 0 0.5rem;
}

/* Leadership Section */
.leadership-section {
  padding: 4rem 1rem;
  background: white;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.leader-card {
  background: var(--light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.leader-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.leader-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
  background: #f0f0f0;
}

.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.3s ease;
  display: block;
}

.leader-card:hover .leader-image img {
  transform: scale(1.05);
}

.leader-info {
  padding: 2rem;
  position: relative;
}

.leader-info h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.position {
  color: var(--secondary);
  font-weight: bold;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  display: block;
}

.leader-bio {
  line-height: 1.7;
  color: var(--text);
  font-size: 0.95rem;
}

.leader-bio p {
  margin-bottom: 1rem;
}

/* About CTA Section */
.about-cta {
  padding: 4rem 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  color: var(--secondary);
}

.cta-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 10px 25px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  min-width: 160px;
}

.cta-buttons .btn-outline {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}

.cta-buttons .btn-outline:hover {
  background: var(--secondary);
  color: var(--primary);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .about-hero {
    height: 60vh;
    min-height: 400px;
    margin-top: 60px;
  }

  .hero-content {
    padding: 1.5rem;
  }

  .principles-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .partnership-flow {
    flex-direction: column;
    gap: 0.5rem;
  }

  .flow-arrow {
    transform: rotate(90deg);
    padding: 0.5rem 0;
  }

  .flow-step {
    width: 100%;
    max-width: 200px;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .leader-image {
    height: 300px;
  }

  .leader-info {
    padding: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 200px;
  }
}

@media (max-width: 480px) {
  .about-hero {
    height: 50vh;
    min-height: 350px;
  }

  .leader-image {
    height: 250px;
  }

  .leader-info h3 {
    font-size: 1.2rem;
  }

  .leader-bio {
    font-size: 0.9rem;
  }
}

/* Animation */
@keyframes fadeIn {
  from { 
    opacity: 0; 
    transform: translateY(20px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}