/* Music Program Styles - Enhanced and Consistent */

/* Page Header - Consistent with Curriculum */
.music-header {
  background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #c084fc 100%);
  color: white;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.music-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/placeholder.svg?height=400&width=1200&query=music notes pattern background") center / cover;
  opacity: 0.1;
  z-index: 1;
}

.music-header .container {
  position: relative;
  z-index: 2;
}

.header-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.header-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.header-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: white;
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.6);
}

/* Music Overview - Consistent with Curriculum */
.music-overview {
  padding: 80px 0;
  background: #f8f9fa;
}

.overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.overview-text h2 {
  font-size: 2.5rem;
  color: #8b5cf6;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.overview-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 2rem;
}

.music-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.highlight-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-5px);
}

.highlight-item i {
  font-size: 2.5rem;
  color: #8b5cf6;
  margin-bottom: 1rem;
}

.highlight-item h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.highlight-item p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.overview-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Music Programs */
.music-programs {
  padding: 80px 0;
  background: white;
}

.music-programs h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #8b5cf6;
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.program-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #8b5cf6;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.program-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.program-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.program-icon {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1.5rem;
}

.program-header h3 {
  color: #333;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}

.program-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.program-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-item {
  display: flex;
  align-items: center;
  color: #555;
}

.feature-item i {
  color: #10b981;
  margin-right: 0.75rem;
  font-size: 0.9rem;
}

.feature-item span {
  font-size: 0.95rem;
}

/* Music Facilities */
.music-facilities {
  padding: 80px 0;
  background: #f8f9fa;
}

.music-facilities h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #8b5cf6;
  margin-bottom: 3rem;
  font-weight: 700;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.facility-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.facility-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.facility-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
}

.facility-icon {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.facility-card h3 {
  color: #333;
  margin-bottom: 1rem;
  font-weight: 600;
}

.facility-card p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Student Achievements */
.student-achievements {
  padding: 80px 0;
  background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #c084fc 100%);
  color: white;
}

.student-achievements h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: white;
}

.student-achievements .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.achievement-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.achievement-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.achievement-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.achievement-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.achievement-card h3 {
  color: white;
  margin-bottom: 1rem;
  font-weight: 600;
}

.achievement-card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.achievement-year {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Music Faculty */
.music-faculty {
  padding: 80px 0;
  background: white;
}

.music-faculty h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #8b5cf6;
  margin-bottom: 1rem;
  font-weight: 700;
}

.faculty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.faculty-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.faculty-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.faculty-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
}

.faculty-image {
  height: 250px;
  overflow: hidden;
}

.faculty-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.faculty-card:hover .faculty-image img {
  transform: scale(1.05);
}

.faculty-info {
  padding: 1.5rem;
  text-align: center;
}

.faculty-info h4 {
  color: #333;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.faculty-designation {
  color: #8b5cf6;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.faculty-specialization {
  color: #666;
  margin-bottom: 0.5rem;
}

.faculty-experience {
  color: #10b981;
  font-weight: 500;
  margin-bottom: 0;
}

/* Music Events */
.music-events {
  padding: 80px 0;
  background: #f8f9fa;
}

.music-events h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #8b5cf6;
  margin-bottom: 1rem;
  font-weight: 700;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.event-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.event-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
}

.event-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.event-card:hover .event-image img {
  transform: scale(1.05);
}

.event-date {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #8b5cf6;
  color: white;
  padding: 0.5rem;
  border-radius: 10px;
  text-align: center;
  min-width: 60px;
}

.event-date .day {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.event-date .month {
  display: block;
  font-size: 0.875rem;
  text-transform: uppercase;
}

.event-content {
  padding: 1.5rem;
}

.event-content h4 {
  margin-bottom: 1rem;
}

.event-content h4 a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.event-content h4 a:hover {
  color: #8b5cf6;
}

.event-content p {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.read-more {
  color: #8b5cf6;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: #a855f7;
  text-decoration: none;
}

.read-more i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.read-more:hover i {
  transform: translateX(5px);
}

/* Enrollment Information */
.enrollment-info {
  padding: 80px 0;
  background: white;
}

.enrollment-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.enrollment-text h2 {
  font-size: 2.5rem;
  color: #8b5cf6;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.enrollment-text p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.enrollment-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.enrollment-features .feature-item {
  text-align: center;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.enrollment-features .feature-item:hover {
  transform: translateY(-3px);
}

.enrollment-features .feature-item i {
  font-size: 2rem;
  color: #8b5cf6;
  margin-bottom: 1rem;
}

.enrollment-features .feature-item h3 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.enrollment-features .feature-item p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.cta-card {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  color: white;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
}

.cta-card h3 {
  color: white;
  margin-bottom: 1rem;
  font-weight: 600;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-info {
  /*margin-bottom: 2rem;*/
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.contact-item i {
  margin-right: 0.75rem;
  width: 20px;
}

.btn-primary {
  background: white;
  color: #8b5cf6;
  border: 2px solid white;
  padding: 0.75rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  background: transparent;
  color: white;
  text-decoration: none;
}

.text-center {
  text-align: center;
  margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .music-header {
    padding: 60px 0 40px;
  }

  .header-content h1 {
    font-size: 2rem;
  }

  .overview-content,
  .enrollment-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .music-highlights,
  .enrollment-features {
    grid-template-columns: 1fr;
  }

  .programs-grid,
  .facilities-grid,
  .achievements-grid,
  .faculty-grid,
  .events-grid {
    grid-template-columns: 1fr;
  }

  .music-overview,
  .music-programs,
  .music-facilities,
  .student-achievements,
  .music-faculty,
  .music-events,
  .enrollment-info {
    padding: 60px 0;
    margin:12px;
  }
}

@media (max-width: 480px) {
  .header-content h1 {
    font-size: 1.75rem;
  }

  .overview-text h2,
  .music-programs h2,
  .music-facilities h2,
  .student-achievements h2,
  .music-faculty h2,
  .music-events h2,
  .enrollment-text h2 {
    font-size: 2rem;
  }

  .program-card,
  .facility-card,
  .achievement-card,
  .faculty-card,
  .event-card {
    padding: 1.5rem;
  }

  .cta-card {
    padding: 2rem 1.5rem;
  }
}

/* Animation Classes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}
