/* General Styles */
:root {
    --primary: #3498db;
    --secondary: #2c3e50;
    --accent: #e74c3c;
    --light: #f8f9fa;
    --dark: #343a40;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Hero Section */
.about-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), 
                url('../assets/images/img-music-program2.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 30px 0;
    text-align: center;
}
   
  .hero-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding: 100px 20px;
    background-color: rgba(0, 0, 0, 0.4); /* optional overlay */
  }

.about-hero h1 {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.about-hero .lead {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background-color: var(--light);
}

.mission-content h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 5px;
    position: relative;
}

.mission-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.mission-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 1rem;
    margin: 0;
}

.mission-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background-color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.line {
    width: 60px;
    height: 4px;
    background-color: var(--c-brand);
    margin: 16px auto 24px auto;
}

.value-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.09);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 20px;
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary); /* Orange */
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    color: #ffc800; /* Yellow */
}

.value-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0;
}
/* Team Section */
.team-section {
    padding: 100px 0;
    background-color: var(--light);
}

.team-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    margin-right: 10px;
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.social-links {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    text-align: center;
    background: rgba(52, 152, 219, 0.8);
    padding: 15px 0;
    transition: bottom 0.3s ease;
}

.team-card:hover .social-links {
    bottom: 0;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    margin: 0 10px;
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--secondary);
}

.team-info p {
    color: #777;
    font-size: 0.9rem;
}
.director-card {
    transform: scale(1.08);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border: 2px solid #ff7e00;
  }
  
  /* Optional: increase image height only for director */
  .director-card .team-image img {
    height: 360px;
  }
  
  @media (max-width: 768px) {
    .director-card {
      transform: none;
    }
  }
  
/* Timeline Section */
.timeline-section {
    padding: 100px 0;
    background-color: white;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-date {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    top: -15px;
}

.timeline-content {
    width: 45%;
    padding: 20px;
    background: var(--light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
}



/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .mission-content, .mission-image {
        margin-bottom: 50px;
    }
    
    .timeline:before {
        left: 30px;
    }
    
    .timeline-date {
        left: 30px;
        transform: none;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero .lead {
        font-size: 1.2rem;
    }
    .mission-content h2{
		display:flex;
		justify-content: center;
	}
    .mission-stats {
        flex-direction: column;
		justify-content: center;
		align-items: center;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}


  