/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    position: relative;
    min-height: 350px;
    background: linear-gradient(to right, #2c3e50, #e74c3c);
    color: var(--color-white);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.7;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* Content Container */
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--spacing-xl) var(--container-padding);
}

.hero-content-container {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Profile Image */
.profile-image-wrapper {
    flex-shrink: 0;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text Content */
.hero-content-inner {
    flex: 1;
    min-width: 0;
    max-width: 550px;
}

.hero-content-inner h1 {
  line-height: 4rem !important;
}

/* Genre Buttons */
.genres-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-top: 25px;
    width: 100%;
}

.genre-button {
    display: inline-flex;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-base);
}

.genre-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: var(--spacing-xl) 0;
    }

    .hero-content {
        padding: var(--spacing-lg) var(--container-padding);
    }

    .hero-content-container {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-lg);
        padding: 0;
    }
    
    .profile-image-wrapper {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }

    .genres-list {
        justify-content: center;
        margin-top: 25px;
    }
}

@media (max-width: 480px) {
    .profile-image-wrapper {
        width: 250px;
        height: 250px;
    }
    
    .hero-content-inner h1 {
      font-size: 3rem !important;
      line-height: 3rem !important;
    }

    .genres-list {
        gap: var(--spacing-xs);
    }

    .genre-button {
        padding: var(--spacing-xs) var(--spacing-sm);
    }
}