/* about.css - Styles de la page À propos */

.about-container {
  background: white;
}

/* ============================================
   HEADER SECTION
   ============================================ */
.about-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.logos-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-bottom: 2rem;
}

.logo-hospital,
.logo-drci {
  height: 120px;
  width: auto;
  background: white;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.about-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.about-header h2 {
  font-size: 1.5rem;
  opacity: 0.9;
}

/* ============================================
   PRESENTATION SECTION
   ============================================ */
.presentation-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.presentation-content {
  max-width: 900px;
  margin: 0 auto;
}

.presentation-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.presentation-text strong {
  color: #667eea;
  font-weight: 600;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 5rem 2rem;
}

.team-content {
  max-width: 1200px;
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.team-photo-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.team-photo {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.team-description {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.team-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2c3e50;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ============================================
   MISSIONS DETAILED SECTION
   ============================================ */
.missions-detailed-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.mission-detailed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.mission-detailed-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 4px solid #667eea;
}

.mission-detailed-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.mission-detailed-card .mission-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.mission-detailed-card h3 {
  font-size: 1.4rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.mission-detailed-card > p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.mission-detailed-card ul {
  list-style: none;
  padding-left: 0;
}

.mission-detailed-card ul li {
  color: #666;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.mission-detailed-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: bold;
}

/* ============================================
   QUICK CONTACT SECTION
   ============================================ */
.quick-contact-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 5rem 2rem;
}

.quick-contact-grid {
  max-width: 1200px;
  margin: 3rem auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.contact-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-card h4 {
  color: #2c3e50;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.contact-card p {
  color: #666;
  line-height: 1.6;
}

.contact-link-container {
  text-align: center;
  margin-top: 2rem;
}

.btn-contact {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .team-content {
    grid-template-columns: 1fr;
  }
  
  .mission-detailed-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .logos-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .logo-hospital,
  .logo-drci {
    height: 100px;
  }
  
  .about-header h1 {
    font-size: 2rem;
  }
  
  .about-header h2 {
    font-size: 1.2rem;
  }
  
  .quick-contact-grid {
    grid-template-columns: 1fr;
  }
}
