.hero-header {
    background: url("../img/landing_page/header.jpg") center center/cover
        no-repeat;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: white;
    padding: 0 2rem;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 1rem;
    width: 100%;
    max-width: 800px;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 4rem);
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(90deg, #f77062, #fe5196);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.chic-charm-description {
    max-width: 600px;
}

.hover-scale {
    transition: transform 0.3s ease-in-out;
}

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

.hover-scale-sm {
    transition: transform 0.3s ease-in-out;
}

.hover-scale-sm:hover {
    transform: scale(1.05);
}

.artist-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    color: white;
}

.artist-card:hover .artist-overlay {
    opacity: 1;
}

.artist-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

.artist-card:hover {
    transform: scale(1.05);
}
