/* 
artist.css - Artist Page Styles
*/

/* ============================================
   HERO SECTION
   ============================================ */
.artist-hero {
    position: relative;
    padding: 4rem 2rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}


.hero-overlay {
    background: rgba(0, 0, 0, 0.4);
    padding: 1rem 2rem;
    border-radius: 12px;
    backdrop-filter: blur(2px);
    max-width: 500px;
}

.hero-overlay h3 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 3px 6px rgba(0, 0, 0, 0.5);
}

.hero-overlay p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    opacity: 0.9;
    margin: 05 auto;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.4);
}

/* ============================================
   ARTIST PROFILE SECTION
   ============================================ */
.artist-section {
    padding: 3rem 0;
}

.artist-profile {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.profile-image {
    position: relative;
}

.profile-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.profile-info h2 {
    color: #295f79;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.profile-info .tagline {
    color: #75b7d3;
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.profile-info p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: justify;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #295f79;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #75b7d3;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(41, 95, 121, 0.3);
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */
.categories-section {
    padding: 3rem 0;
}

.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #295f79;
    margin-bottom: 2rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: #295f79;
    box-shadow: 0 8px 30px rgba(41, 95, 121, 0.15);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-card h3 {
    color: #295f79;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.category-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.category-count {
    display: inline-block;
    background: linear-gradient(135deg, #295f79, #75b7d3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ============================================
   FEATURED WORKS SECTION
   ============================================ */
.featured-section {
    padding: 3rem 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.featured-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.featured-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-item:hover img {
    transform: scale(1.1);
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    padding: 3rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.featured-item:hover .featured-overlay {
    transform: translateY(0);
}

.featured-title {
    display: block;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.featured-category {
    color: #75b7d3;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 0;
    margin: 3rem 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    overflow: hidden;
}

.contact-overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 3rem;
    text-align: center;
    color: white;
    width: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-overlay h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
    text-shadow: 2px 3px 6px rgba(0, 0, 0, 0.5);
}

.contact-overlay p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    max-width: 500px;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.4);
}

.contact-overlay .btn-primary {
    background: white;
    color: #295f79;
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.contact-overlay .btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .artist-profile {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .profile-image {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .profile-info p {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-item {
        aspect-ratio: 16/9;
    }
}

@media (max-width: 480px) {
    .artist-hero {
        padding: 4rem 1rem;
    }
    
    .artist-profile {
        padding: 1.5rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
}

