/* Music Page Styles */

/* Music Hero */
.music-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1a1a 50%, #1a1a2d 100%);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.music-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(201, 165, 90, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139, 0, 0, 0.1) 0%, transparent 50%);
    animation: pulseMusic 8s ease-in-out infinite;
}

@keyframes pulseMusic {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.music-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--text-light);
}

.music-hero-content h1 {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

/* Featured Artist Section */
.featured-artist-section {
    padding: 6rem 0;
    background: white;
}

.section-label {
    text-align: center;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.artist-showcase {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.artist-image {
    position: sticky;
    top: 100px;
}

.artist-image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.artist-initials {
    font-size: 4rem;
    color: white;
    font-weight: 700;
    letter-spacing: 2px;
}

.artist-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.artist-info {
    padding-top: 1rem;
}

.artist-name {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.artist-genre {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2rem;
}

.artist-bio p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.5rem;
}

.artist-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.stat-value {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 600;
}

/* Music Players Section */
.music-players-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.album-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-top: 1rem;
    margin-bottom: 0;
}

.players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.player-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.player-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.player-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 2px solid var(--light-bg);
}

.platform-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spotify-icon {
    color: #1DB954;
}

.youtube-icon {
    color: #FF0000;
}

.soundcloud-icon {
    color: #FF5500;
}

.pandora-icon {
    color: #3668FF;
}

.player-header h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin: 0;
}

.player-embed {
    padding: 0;
    min-height: 380px;
}

.player-embed iframe {
    display: block;
    width: 100%;
    border-radius: 12px;
}

.pandora-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    background: var(--light-bg);
}

.youtube-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    background: var(--light-bg);
}

.btn-stream {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    background: #3668FF;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-stream:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(54, 104, 255, 0.4);
    background: #2855e6;
}

.youtube-btn {
    background: #FF0000;
}

.youtube-btn:hover {
    background: #cc0000;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.btn-stream svg {
    flex-shrink: 0;
}

.player-placeholder {
    padding: 3rem 2rem;
    text-align: center;
    background: var(--light-bg);
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.player-placeholder p:first-child {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.placeholder-text {
    color: #666;
    margin-bottom: 1.5rem;
}

.placeholder-code {
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: #888;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    max-width: 100%;
    overflow-x: auto;
    text-align: left;
    line-height: 1.6;
}

/* Recent Releases Section */
.recent-releases-section {
    padding: 6rem 0;
    background: white;
}

.tracklist-container {
    max-width: 800px;
    margin: 3rem auto 0;
    background: var(--light-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.album-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-bottom: 2px solid var(--light-bg);
}

.album-cover-small {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.album-info h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.album-artist {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.album-details {
    color: #888;
    font-size: 0.95rem;
}

.tracks-list {
    padding: 0;
}

.track-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 2rem;
    border-bottom: 1px solid #e0e0e0;
    transition: background 0.2s ease;
}

.track-item:last-child {
    border-bottom: none;
}

.track-item:hover {
    background: white;
}

.track-number {
    font-size: 1.1rem;
    color: #888;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.track-name {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.release-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.release-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.release-artwork {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    position: relative;
    overflow: hidden;
}

.artwork-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    opacity: 0.3;
}

.release-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.release-info {
    padding: 1.5rem;
}

.release-title {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.release-artist {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.release-date {
    color: #888;
    font-size: 0.95rem;
}

/* Artist Gallery Section */
.artist-gallery-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    aspect-ratio: 4/5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.2rem;
    font-weight: 600;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Booking Section */
.booking-section {
    padding: 6rem 0;
    background: var(--secondary-color);
    color: var(--text-light);
    text-align: center;
}

.booking-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.booking-content > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.booking-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.booking-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.booking-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.booking-details h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.booking-details p {
    margin: 0;
}

.booking-details a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.booking-details a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.social-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
}

.social-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-contact {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 165, 90, 0.4);
    background: #d4b16a;
}

/* Responsive Design */
@media (max-width: 968px) {
    .artist-showcase {
        grid-template-columns: 1fr;
    }
    
    .artist-image {
        position: relative;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .players-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .music-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .artist-name {
        font-size: 2rem;
    }
    
    .artist-genre {
        font-size: 1.1rem;
    }
    
    .releases-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .booking-info {
        grid-template-columns: 1fr;
    }
}
