/* Utaites Page Specific Styles */

/* Hero Section */
.utaites-hero {
    background: linear-gradient(135deg, var(--background-dark) 0%, rgba(20, 25, 30, 0.95) 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.utaites-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(46, 213, 115, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.utaites-hero .hero-content {
    position: relative;
    z-index: 2;
}

.utaites-hero .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.utaites-hero .hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Utaites Section */
.utaites-section {
    padding: var(--spacing-3xl) 0;
    background: var(--background-dark);
}

/* Profile Card */
.utaite-profile {
    background: rgba(15, 20, 25, 0.9);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 4rem;
    border: 1px solid rgba(255, 107, 53, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.utaite-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 90%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 10%, rgba(46, 213, 115, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.profile-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.profile-image {
    position: relative;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-orange);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.profile-badge {
    position: absolute;
    bottom: 10px;
    right: -10px;
    background: linear-gradient(135deg, var(--primary-orange), #ff4757);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.profile-info .profile-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-title {
    font-size: 1.1rem;
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.profile-links {
    display: flex;
    gap: 1rem;
}

/* Songs Section */
.songs-section {
    margin-bottom: 4rem;
}

.songs-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 1rem;
}

.songs-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
}

/* Carousel */
.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 16px;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease;
    position: relative;
}

.song-card {
    min-width: 100%;
    flex-shrink: 0;
    opacity: 1;
    transform: translateX(0);
    transition: all 0.4s ease;
}

.song-card.active {
    opacity: 1;
    transform: translateX(0);
}

.video-container,
.spotify-container {
    position: relative;
    width: 100%;
    background: rgba(15, 20, 25, 0.9);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.video-container {
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.spotify-container {
    height: auto;
    padding: 0;
    visibility: visible;
}

.video-container iframe,
.spotify-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
    visibility: visible;
}

.spotify-container iframe {
    position: relative;
    height: 352px;
    visibility: visible;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-btn {
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.carousel-btn:hover {
    background: var(--primary-orange);
    color: white;
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.carousel-dots {
    display: flex;
    gap: 0.8rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: var(--primary-orange);
    transform: scale(1.2);
}

/* Coming Soon Section */
.coming-soon {
    text-align: center;
    padding: 3rem;
    background: rgba(15, 20, 25, 0.5);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.coming-soon-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .utaites-hero {
        padding: 6rem 0 3rem;
    }
    
    .utaites-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .utaite-profile {
        padding: 2rem;
        margin-bottom: 3rem;
    }
    
    .profile-header {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .profile-img {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }
    
    .profile-badge {
        bottom: 5px;
        right: 50%;
        transform: translateX(50%);
    }
    
    .songs-title {
        font-size: 2rem;
    }
    
    .carousel-controls {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .coming-soon {
        padding: 2rem;
    }
    
    .coming-soon-content h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .utaites-hero .hero-description {
        font-size: 1rem;
    }
    
    .profile-info .profile-name {
        font-size: 2rem;
    }
    
    .profile-description {
        font-size: 1rem;
    }
    
    .songs-title {
        font-size: 1.8rem;
    }
    
    .carousel-controls {
        flex-direction: column;
        gap: 1.5rem;
    }
}
