/**
 * Artist Hero Component
 * Used by: iartist.php, aMixtapes.php, aVideos.php
 *
 * Provides artist hero styling with blurred backgrounds,
 * circular images, statistics display, and responsive layouts
 *
 * Features:
 * - Blurred background image effect
 * - Circular artist image with border
 * - Artist statistics display
 * - Responsive design across all viewports
 * - Gradient overlay for text readability
 */

/* ====================================
   Artist Hero Base Styles
   ==================================== */
.artist-hero {
    position: relative;
    height: 400px;
    margin-bottom: 40px;
    overflow: hidden;
}

/* ====================================
   Background & Overlay Effects
   ==================================== */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(10px);
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.8));
    z-index: 2;
}

/* ====================================
   Hero Content Layout
   ==================================== */
.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 40px 0;
}

/* ====================================
   Artist Image Styling
   ==================================== */
.artist-hero .artist-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
}

.artist-hero .artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ====================================
   Artist Information
   ==================================== */
.artist-info {
    flex: 1;
    color: white;
}

.artist-name {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.artist-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), #e74c3c);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

/* ====================================
   Artist Statistics
   ==================================== */
.artist-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ====================================
   Responsive Design
   ==================================== */

/* Mobile devices (up to 767px) */
@media (max-width: 767px) {
    .artist-hero {
        margin-bottom: 30px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px 0;
    }

    .artist-hero .artist-image {
        width: 150px;
        height: 150px;
    }

    .artist-name {
        font-size: 2rem;
    }

    .artist-stats {
        gap: 20px;
        justify-content: center;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}

/* Tablet devices (768px to 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {

    .hero-content {
        gap: 25px;
        padding: 30px 0;
    }

    .artist-hero .artist-image {
        width: 175px;
        height: 175px;
    }

    .artist-name {
        font-size: 2.5rem;
    }

    .artist-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 1.8rem;
    }
}

/* Large desktop devices (1440px and up) */
@media (min-width: 1440px) {

    .hero-content {
        gap: 40px;
        padding: 50px 0;
    }

    .artist-hero .artist-image {
        width: 250px;
        height: 250px;
    }

    .artist-name {
        font-size: 3.5rem;
    }

    .artist-stats {
        gap: 50px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}