/* ========================================
   HOME PAGE STYLES
   ======================================== */

/* ========== HERO SECTION ========== */
.hero-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 0;
}

.hero-logo {
  width: 300px;
  height: 300px;
  margin: 0 auto 50px;
  filter: drop-shadow(0 0 30px var(--gold-glow));
  animation: heroGlow 3s ease-in-out infinite;
}

.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes heroGlow {
  0%, 100% {
    filter: drop-shadow(0 0 30px var(--gold-glow));
  }
  50% {
    filter: drop-shadow(0 0 50px var(--gold-glow));
  }
}

.hero-section h1 {
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 0;
}

/* ========== LATEST RELEASE SECTION ========== */
.latest-release-section {
  background: var(--black);
  padding: 100px 0;
}

.latest-release-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.release-artwork {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.release-artwork img {
  width: 100%;
  height: auto;
  border: 3px solid var(--gold);
  box-shadow: 0 10px 50px var(--gold-glow);
}

.release-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background: var(--gold);
  color: var(--black);
  padding: 10px 20px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 2px;
  box-shadow: 0 5px 20px var(--gold-glow);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.release-info h3 {
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 15px;
  letter-spacing: 3px;
  text-align: left;
}

.release-artist {
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 300;
  opacity: 0.9;
}

.release-date {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 30px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.release-description {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 35px;
  opacity: 0.95;
}

.release-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* ========== FEATURED ARTIST HOME SECTION ========== */
.featured-home-section {
  background: var(--black);
  padding: 100px 0;
}

.featured-artist-home {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.featured-artist-image {
  position: relative;
}

.featured-artist-image img {
  width: 100%;
  height: auto;
  border: 3px solid var(--gold);
  box-shadow: 0 10px 40px var(--gold-glow);
}

.featured-image-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--dark-gray) 0%, rgba(212, 175, 55, 0.2) 100%);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.featured-label {
  font-size: 48px;
  font-weight: bold;
  color: var(--gold);
  letter-spacing: 4px;
  opacity: 0.3;
}

.featured-artist-content h3 {
  font-size: 42px;
  color: var(--gold);
  margin-bottom: 10px;
  text-align: left;
}

.artist-tagline {
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 25px;
  font-weight: 300;
  letter-spacing: 2px;
}

.artist-description {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 35px;
  opacity: 0.95;
}

.featured-music-links {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.music-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--dark-gray);
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.music-link:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 5px 20px var(--gold-glow);
}

.music-link i {
  font-size: 18px;
}

/* ========== PILLARS SECTION ========== */
.pillars-section {
  background: var(--black);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px;
  margin-top: 40px;
}

.pillar {
  text-align: center;
  padding: 40px 30px;
  background: var(--dark-gray);
  border: 1px solid var(--gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px var(--gold-glow);
}

.pillar-icon {
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 20px;
}

.pillar h3 {
  text-align: center;
  margin-bottom: 15px;
  font-size: 20px;
  letter-spacing: 2px;
}

.pillar p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--white);
  opacity: 0.9;
}

/* ========== LEADERSHIP SECTION ========== */
.leadership-section {
  background: var(--black);
}

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

.team-member {
  text-align: center;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 100%;
  aspect-ratio: 1;
  background: var(--dark-gray);
  border: 2px solid var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.team-photo::after {
  content: 'Photo';
  position: absolute;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  opacity: 0.3;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-photo:has(img)::after {
  content: none;
}

.team-member h3 {
  font-size: 20px;
  text-align: center;
  margin-bottom: 10px;
  color: var(--gold);
}

.team-title {
  font-size: 13px;
  color: var(--white);
  opacity: 0.8;
  line-height: 1.4;
  margin-bottom: 15px;
}

.team-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--gold);
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.team-social:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}

.team-social i {
  font-size: 14px;
}

.team-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  opacity: 0.8;
}

.team-email:hover {
  color: var(--gold);
  opacity: 1;
  transform: translateY(-2px);
}

.team-email i {
  font-size: 14px;
  color: var(--gold);
}

.clickable-member {
  cursor: pointer;
  transition: all 0.3s ease;
}

.clickable-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.view-bio-btn {
  margin-top: 15px;
  padding: 10px 25px;
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.view-bio-btn:hover {
  background: var(--gold);
  color: var(--black);
}

/* ========== BIO MODAL ========== */
.bio-modal {
  display: none;
  position: fixed;
  z-index: 10001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  animation: fadeIn 0.3s ease;
}

.bio-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bio-modal-content {
  background: var(--dark-gray);
  border: 2px solid var(--gold);
  width: 90%;
  max-width: 700px;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bio-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 35px;
  font-weight: 300;
  color: var(--gold);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: all 0.3s ease;
  z-index: 1;
}

.bio-modal-close:hover {
  transform: rotate(90deg);
  color: var(--white);
}

.bio-modal-body {
  padding: 50px 40px;
}

.bio-modal-body h2 {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.bio-modal-title {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 30px;
  opacity: 0.9;
  font-weight: 300;
  letter-spacing: 1px;
}

.bio-modal-text {
  font-size: 16px;
  line-height: 1.9;
  color: var(--white);
  margin-bottom: 30px;
  opacity: 0.9;
}

.bio-modal-text p {
  margin-bottom: 15px;
}

.bio-modal-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.bio-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.bio-contact-link:hover {
  color: var(--gold);
  transform: translateX(5px);
}

.bio-contact-link i {
  color: var(--gold);
  font-size: 16px;
}

@media (max-width: 768px) {
  .bio-modal-content {
    width: 95%;
    max-height: 90vh;
  }
  
  .bio-modal-body {
    padding: 40px 25px;
  }
  
  .bio-modal-body h2 {
    font-size: 28px;
  }
  
  .bio-modal-text {
    font-size: 15px;
  }
}

/* ========== COLLABORATORS SECTION ========== */
.collaborators-section {
  background: var(--black);
  padding: 100px 0;
}

.collaborator-feature {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 60px;
}

.collaborator-image {
  position: sticky;
  top: 120px;
}

.collaborator-image img {
  width: 100%;
  height: auto;
  border: 3px solid var(--gold);
  box-shadow: 0 10px 40px var(--gold-glow);
}

.collaborator-info h3 {
  font-size: 38px;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-align: left;
}

.collaborator-title {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 30px;
  font-weight: 300;
  opacity: 0.9;
  letter-spacing: 1px;
}

.collaborator-bio {
  margin: 30px 0 40px;
}

.collaborator-bio p {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 20px;
  opacity: 0.95;
}

.collaborator-bio strong {
  color: var(--gold);
  font-weight: 400;
}

.collaborator-bio em {
  color: var(--gold);
  font-style: italic;
}

.collaborator-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.collaborator-links .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.collaborator-links .btn i {
  font-size: 18px;
}

/* ========== MEMBERSHIP PACKAGES SECTION ========== */
.packages-section {
  background: var(--black);
  padding: 100px 0;
}

.packages-subtitle {
  text-align: center;
  font-size: 17px;
  color: var(--white);
  opacity: 0.9;
  margin-bottom: 60px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.package-card {
  background: var(--dark-gray);
  border: 2px solid var(--gold);
  padding: 50px 35px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px var(--gold-glow);
}

.package-card.featured {
  border-width: 3px;
  background: linear-gradient(135deg, var(--dark-gray) 0%, rgba(212, 175, 55, 0.1) 100%);
}

.package-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  padding: 8px 20px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 2px;
}

.package-icon {
  font-size: 56px;
  color: var(--gold);
  margin-bottom: 25px;
}

.package-card.featured .package-icon {
  animation: packagePulse 2s ease-in-out infinite;
}

@keyframes packagePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.package-card h3 {
  font-size: 22px;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.package-card p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 30px;
  min-height: 80px;
}

.package-card .btn {
  width: 100%;
  margin-top: 10px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hero-section {
    min-height: 60vh;
    padding: 60px 0;
  }

  .hero-logo {
    width: 180px;
    height: 180px;
  }

  .hero-section h1 {
    font-size: 36px;
  }

  .latest-release-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .release-info h3 {
    font-size: 36px;
    text-align: center;
  }

  .release-artist,
  .release-date {
    text-align: center;
  }

  .release-description {
    text-align: center;
  }

  .release-links {
    justify-content: center;
  }

  .featured-artist-home {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .featured-artist-content h3 {
    font-size: 32px;
    text-align: center;
  }

  .artist-tagline {
    text-align: center;
  }

  .artist-description {
    text-align: center;
  }

  .featured-music-links {
    justify-content: center;
  }

  .collaborator-feature {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .collaborator-image {
    position: relative;
    top: 0;
    max-width: 500px;
    margin: 0 auto;
  }

  .collaborator-info h3 {
    font-size: 32px;
    text-align: center;
  }

  .collaborator-title {
    text-align: center;
  }

  .collaborator-bio p {
    text-align: center;
  }

  .collaborator-links {
    justify-content: center;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .package-card p {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .hero-section h1 {
    font-size: 28px;
  }

  .hero-logo {
    width: 150px;
    height: 150px;
  }

  .pillar {
    padding: 30px 20px;
  }

  .pillar-icon {
    font-size: 36px;
  }
}