/* === ALBUKARAOQUE WEBSITE - SONGLIST PAGE === */
/* Song List page specific styles and components */

/* === SONG LIST PAGE STYLES === */
.songlist-hero {
  background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
  color: white;
  padding: 10rem 0 8rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.songlist-hero::before {
  content: '';  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 2px, transparent 2px, transparent 4px);
  z-index: 1;
}

.hero-cta-button {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.8rem 2rem;
  background: linear-gradient(45deg, #40B5A3, #78D5C7);
  color: white;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
}

.hero-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.songlist-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;
}

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

.songlist-hero .page-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.5px;
  transform: scale(1);
  transition: transform 0.3s ease;
  display: inline-block;
  position: relative;
}

.songlist-hero .page-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.7);
  transition: width 0.5s ease;
}

.songlist-hero:hover .page-title::after {
  width: 100%;
}

.songlist-hero:hover .page-title {
  transform: scale(1.02);
}

.songlist-hero .page-subtitle {
  font-size: 1.5rem;
  opacity: 0.95;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

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

/* PHOTO HERO SECTION STYLES */
.photo-hero {
  background: linear-gradient(135deg, #232a36 0%, #3b4252 100%);
  color: white;
  text-align: center;
  padding: 0; /* Remove vertical padding for full-width effect */
  position: relative;
  overflow: hidden;
}

.photo-hero-content {
  max-width: 100vw;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0;
}

.photo-hero-img {
  width: 100vw;
  max-width: 100%;
  height: auto;
  border-radius: 0; /* Remove rounded corners for a banner look */
  box-shadow: none; /* Remove shadow for edge-to-edge */
  display: block;
  margin: 0 auto;
  object-fit: cover;
}

.photo-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.photo-hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.95;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .songlist-hero {
    padding: 7rem 0 5rem;
  }
  
  .songlist-hero .page-title {
    font-size: 3rem;
  }
  
  .songlist-hero .page-subtitle {
    font-size: 1.2rem;
  }
  
  .photo-hero {
    padding: 3rem 0 1.5rem;
  }
  .photo-hero-title {
    font-size: 1.5rem;
  }
  .photo-hero-img {
    width: 100vw;
    max-width: 100vw;
    border-radius: 0;
  }
  .photo-hero-content {
    padding: 0;
  }
}

@media (max-width: 480px) {
  .songlist-hero .page-title {
    font-size: 2.5rem;
  }
  
  .songlist-hero .page-subtitle {
    font-size: 1rem;
  }
}
