* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0d0d0d;
  color: white;
  font-family: 'Outfit', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* === About Hero Section === */
.about-hero {
  background: linear-gradient(135deg, rgba(30, 144, 255, 0.1) 0%, rgba(0, 0, 0, 0.95) 100%),
              url('../images/background/about.jpg') center/cover no-repeat;
  padding: 120px 5% 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(30, 144, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.about-hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease-out;
}

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1e90ff;
  background: rgba(30, 144, 255, 0.1);
  padding: 8px 20px;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(30, 144, 255, 0.3);
}

.about-hero h1 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, #1e90ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.about-hero p {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* === Team Section === */
.about-section {
  padding: 80px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.team-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.team-member {
  background: linear-gradient(145deg, #111 0%, #0a0a0a 100%);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.team-member::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 144, 255, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.team-member:hover::before {
  opacity: 1;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(30, 144, 255, 0.2);
  border-color: rgba(30, 144, 255, 0.3);
}

.member-image {
  position: relative;
  overflow: hidden;
  height: 320px;
}

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

.team-member:hover .member-image img {
  transform: scale(1.1);
}

.member-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-member:hover .member-overlay {
  opacity: 1;
}

.contact-artist {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  font-size: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.contact-artist:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.member-info {
  padding: 25px;
  position: relative;
  z-index: 2;
}

.member-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.member-role {
  color: #1e90ff;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.member-bio {
  color: #bbb;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.member-stats {
  display: flex;
  gap: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.member-stats span {
  font-size: 0.85rem;
  color: #999;
}

.member-stats strong {
  color: #1e90ff;
  font-weight: 600;
}

/* === CTA Section === */
.cta-section {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(145deg, rgba(30, 144, 255, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
  border-radius: 16px;
  border: 1px solid rgba(30, 144, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(30, 144, 255, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  font-size: 1.1rem;
  color: #bbb;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.cta-btn {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, #1e90ff 0%, #0066cc 100%);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
  position: relative;
  z-index: 1;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(30, 144, 255, 0.5);
  background: linear-gradient(135deg, #0066cc 0%, #1e90ff 100%);
}

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.5;
  }
}

/* === Responsive Design === */
@media (max-width: 768px) {
  .about-hero {
    padding: 100px 5% 60px;
  }

  .about-hero h1 {
    font-size: 2rem;
  }

  .about-hero p {
    font-size: 1rem;
  }

  .team-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .member-image {
    height: 280px;
  }

  .member-stats {
    flex-direction: column;
    gap: 10px;
  }

  .cta-section {
    padding: 40px 20px;
  }

  .cta-section h2 {
    font-size: 1.6rem;
  }

  .cta-section p {
    font-size: 1rem;
  }

  .about-section {
    padding: 60px 5%;
  }
}

@media (max-width: 480px) {
  .about-hero h1 {
    font-size: 1.6rem;
  }

  .section-label {
    font-size: 0.75rem;
    padding: 6px 16px;
  }

  .member-info h3 {
    font-size: 1.3rem;
  }

  .member-role {
    font-size: 0.85rem;
  }

  .member-bio {
    font-size: 0.9rem;
  }

  .cta-section h2 {
    font-size: 1.4rem;
  }

  .cta-btn {
    padding: 14px 32px;
    font-size: 0.95rem;
  }
}
