/* 
  Studio Bragi v2.0
  Artist Page Specific Styles
*/

.artist-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--bg-darker) 0%, rgba(16, 185, 129, 0.05) 100%);
    overflow: hidden;
    text-align: center;
}

.artist-hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image: radial-gradient(var(--accent) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
}

.artist-hero-content {
    position: relative;
    z-index: 2;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 3rem 4rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    animation: fadeInUp 0.8s ease forwards;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
}

.btn-back:hover {
    color: var(--accent);
    transform: translateX(-5px);
}

.artist-hero-title {
    font-size: clamp(2rem, 8vw, 4rem);
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-weight: 800;
}

.artist-hero-subtitle {
    font-size: 1.2rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.artist-details {
    padding: 5rem 0;
}

.details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.detail-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: var(--transition-normal);
}

.detail-card:hover { 
    border-color: rgba(16, 185, 129, 0.2); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.detail-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1rem;
    color: var(--text-main);
}

.music-container, .soundcloud-player {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Spotify Card */
.spotify-card {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(29, 185, 84, 0.1);
    border: 1px solid rgba(29, 185, 84, 0.3);
    border-radius: var(--border-radius-sm);
    gap: 1.5rem;
    transition: var(--transition-normal);
    text-decoration: none;
    color: white;
}

.spotify-card:hover {
    background: rgba(29, 185, 84, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(29, 185, 84, 0.2);
}

.spotify-album-cover img {
    border-radius: 8px;
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.spotify-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.spotify-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.spotify-artist { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0.3rem;}
.spotify-cta { color: #1db954; font-weight: 600; font-size: 0.85rem; }

/* Contact Card */
.contact-card-wrapper {
    position: sticky;
    top: 100px;
}

.contact-card {
    background: linear-gradient(145deg, rgba(20,20,20,0.8), rgba(16,185,129,0.05));
    border: 1px solid rgba(16,185,129,0.2);
    border-radius: var(--border-radius-md);
    padding: 2rem;
}

.contact-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.contact-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    padding: 1rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    margin-bottom: 2rem;
    width: 100%;
    text-decoration: none;
    transition: var(--transition-normal);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.info-label { color: var(--text-muted); font-size: 0.9rem; }
.info-value { font-weight: 600; font-size: 0.9rem; color: var(--text-main); }

.contact-note {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--border-radius-sm);
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.5;
}

/* Ideal For Grid */
.ideal-for-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.ideal-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.ideal-icon {
    width: 40px;
    height: 40px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.ideal-title {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 0.2rem;
}

.ideal-description {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Responsiveness for artist page */
@media (max-width: 1024px) {
    .details-grid {
        grid-template-columns: 1fr;
    }
    .contact-card-wrapper {
        position: static;
    }
}

@media (max-width: 768px) {
    .artist-hero-content {
        padding: 2.5rem 2rem;
        margin: 0 1rem;
        width: 100%;
        max-width: calc(100% - 2rem);
    }
    .detail-card {
        padding: 1.5rem;
    }
    .ideal-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .ideal-icon {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .artist-hero {
        min-height: 40vh;
        padding-top: 100px;
    }
    .artist-hero-content {
        padding: 2rem 1.5rem;
    }
    .btn-whatsapp {
        padding: 1rem;
    }
    .spotify-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    .spotify-info {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    .contact-card {
        padding: 1.5rem;
    }
}
