/* 아티스트 소개 섹션 스타일 - Oscar Akermo 스타일 */
.artist-section {
    padding: 120px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.artist-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.artist-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.artist-text {
    padding-right: 40px;
}

.artist-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #333;
    line-height: 1.2;
}

.artist-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
    font-weight: 300;
}

.artist-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 400;
}

.artist-cta {
    margin-top: 30px;
}

.btn-artist {
    display: inline-block;
    background: transparent;
    color: #333;
    border: 2px solid #333;
    padding: 15px 30px;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-artist:hover {
    background: #333;
    color: white;
    transform: translateY(-2px);
}

.artist-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.artist-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.artist-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0.05)
    );
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.artist-image:hover::before {
    opacity: 1;
}

/* 애니메이션 */
.artist-text {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease forwards;
}

.artist-image {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease forwards 0.3s;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 반응형 디자인 */
@media (max-width: 1024px) {
    .artist-content {
        gap: 60px;
    }
    
    .artist-text {
        padding-right: 20px;
    }
    
    .artist-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .artist-section {
        padding: 80px 0;
    }
    
    .artist-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .artist-text {
        padding-right: 0;
        text-align: center;
    }
    
    .artist-title {
        font-size: 2rem;
    }
    
    .artist-description {
        font-size: 1.1rem;
    }
    
    .artist-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .artist-image img {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .artist-section .container {
        padding: 0 15px;
    }
    
    .artist-title {
        font-size: 1.8rem;
    }
    
    .artist-description {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .artist-image img {
        height: 300px;
    }
    
    .btn-artist {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}
