/* === ALBUKARAOQUE WEBSITE - MUSICIANS PAGE === */
/* Musicians page specific styles and components */

/* === MUSICIANS PAGE STYLES === */
.musicians-hero {
  background: linear-gradient(135deg, #2c3e50 0%, #40B5A3 100%);
  color: white;
  padding: 10rem 0 8rem;
  text-align: center;
  margin: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.musicians-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.musicians-hero::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50%;
  height: 70%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
  z-index: 1;
  border-radius: 50%;
  pointer-events: none;
}

.musicians-hero .hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 2rem;
}

.musicians-hero .page-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.musicians-hero .page-subtitle {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.6;
}

.musicians-hero .faded-logo {
  max-width: 150px;
  opacity: 0.3;
  margin-top: 2rem;
}

.musicians-section {
  padding: 4rem 2rem;
}

.musicians-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.musician-card,
.team-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.musician-card:hover,
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(64, 181, 163, 0.2);
  border-color: #40B5A3;
}

.musician-name,
.team-name {
  color: #2c3e50;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.musician-role,
.team-role {
  color: #40B5A3;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-role {
  font-size: 1.1rem;
  color: #40B5A3;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1rem;
}

.musician-bio,
.team-bio {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.musician-links,
.team-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.musician-projects,
.team-projects {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.project-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  text-decoration: none;
  color: #40B5A3;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.project-link:hover {
  background: #40B5A3;
  color: white;
  transform: translateX(5px);
  border-color: #40B5A3;
}

.project-link i {
  font-size: 1.2rem;
  color: inherit;
}

/* Musician photo styling */
.musician-photo {
  width: 100%;
  margin-bottom: 1.5rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.musician-photo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.musician-card:hover .musician-photo img {
  transform: scale(1.05);
}

.musician-role {
  font-size: 1rem;
  color: #40B5A3;
  font-style: italic;
  margin-bottom: 1rem;
  text-align: center;
}

/* === MUSICIANS PAGE ADDITIONAL RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  .musicians-hero {
    padding: 4rem 1rem 3rem;
  }
  
  .musicians-hero .page-title {
    font-size: 2.5rem;
  }
  
  .musicians-hero .page-subtitle {
    font-size: 1.2rem;
  }
  
  .musicians-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .musician-links,
  .team-links {
    flex-direction: column;
    align-items: center;
  }
  
  .project-link {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
  
  .social-media-section .social-icons {
    gap: 1.5rem;
  }
  
  .social-media-section .social-link {
    width: 60px;
    height: 60px;
  }
  
  .social-media-section .fa {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .musicians-hero {
    padding: 3rem 1rem 2rem;
  }
  
  .musicians-hero .page-title {
    font-size: 2rem;
  }
  
  .musicians-section,
  .team-section,
  .social-media-section {
    padding: 3rem 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .musician-name,
  .team-name {
    font-size: 1.3rem;
  }
  
  .musician-role,
  .team-role {
    font-size: 1rem;
  }
}
