@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500;800&family=Inter:wght@400;600&display=swap');

:root {
    --bg-color: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: #e5e5e5;
    --accent: #ff3366;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

*::-webkit-scrollbar {
    display: none;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
    
    -ms-overflow-style: none;
    scrollbar-width: none;
}

::-webkit-scrollbar {
    display: none;
    width: 0;
    background: transparent;
}

.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    
    .video-wrapper {
        position: fixed;
        inset: 0;
        margin: 20px;
        border-radius: 20px;
        overflow: hidden;
        z-index: 0;
        background-color: #111;

        &::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.35);
            pointer-events: none;
        }

        video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            pointer-events: none;
        }
    }

    .hero-content {
        position: relative;
        z-index: 10;
        text-align: center;
        padding: 2rem;
    }

    .hero-title {
        font-family: 'Outfit', sans-serif;
        font-size: clamp(3.5rem, 9vw, 8rem);
        font-weight: 800;
        letter-spacing: -0.03em;
        line-height: 1;
        margin-bottom: 2rem;
        color: var(--text-primary);
        text-transform: uppercase;
        
        text-shadow: 4px 4px 0 var(--accent);
    }

    .hero-subtitle {
        font-family: 'Inter', sans-serif;
        font-size: clamp(1.2rem, 3vw, 2.2rem);
        font-weight: 600;
        color: var(--text-primary);
        
        background-color: var(--text-primary);
        color: var(--bg-color);
        padding: 0.75rem 1.5rem;
        display: inline-block;
        transform: rotate(-2deg);
        box-shadow: 6px 6px 0 var(--accent);
        
        span {
            font-style: italic;
            font-weight: 800;
            color: var(--accent);
            text-decoration: underline;
            text-decoration-thickness: 3px;
            text-underline-offset: 4px;
        }
    }

    .socials {
        z-index: 999;
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin: 3rem auto 0 auto;
        width: max-content;
        z-index: 20;
        transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        border-radius: 50px;
        border: 1px solid transparent;

        /*
        &.is-sticky {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            margin-top: 0;
            padding: 0.5rem 1.5rem 0.75rem 1.5rem;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-top: none;
            border-radius: 0 0 24px 24px;
            gap: 1rem;
            z-index: 999999;
            box-shadow: 0 15px 40px rgba(0,0,0,0.6);

            a {
                width: 40px;
                height: 40px;
                
                &:hover {
                    transform: scale(1.05);

                    img {
                        transform: scale(1.25);
                    }
                }

                img {
                    width: 20px;
                    height: 20px;
                }
            }
        }
        */
        a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
            position: relative;
            overflow: hidden;

            &::before {
                content: '';
                position: absolute;
                inset: 0;
                background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
                opacity: 0;
                transition: opacity 0.4s ease;
            }

            &:hover {
                transform: scale(1.05);
                background: rgba(255, 255, 255, 0.15);
                
                &::before {
                    opacity: 1;
                }
            }
            
            &[aria-label="Spotify"]:hover {
                border-color: #1DB954;
                box-shadow: 0 0 20px rgba(29, 185, 84, 0.3), inset 0 0 15px rgba(29, 185, 84, 0.1);
            }
            
            &[aria-label="Instagram"]:hover {
                border-color: #E1306C;
                box-shadow: 0 0 20px rgba(225, 48, 108, 0.3), inset 0 0 15px rgba(225, 48, 108, 0.1);
            }
            
            &[aria-label="TikTok"]:hover {
                border-color: #EE1D52;
                box-shadow: 0 0 20px rgba(238, 29, 82, 0.3), inset 0 0 15px rgba(238, 29, 82, 0.1);
            }
            
            &[aria-label="YouTube"]:hover {
                border-color: #FF0000;
                box-shadow: 0 0 20px rgba(255, 0, 0, 0.3), inset 0 0 15px rgba(255, 0, 0, 0.1);
            }

            img {
                width: 28px;
                height: 28px;
                object-fit: contain;
                transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
                position: relative;
                z-index: 2;
                filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
            }

            &:hover img {
                transform: scale(1.15) rotate(8deg);
            }
        }
    }

    .scroll-indicator {
        position: absolute;
        bottom: 15vh;
        left: 50%;
        transform: translateX(-50%);
        z-index: 20;
        color: rgba(255, 255, 255, 0.6);
        animation: bounceFloat 2.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
        
        svg {
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
            transition: all 0.3s ease;
        }
        
        &:hover {
            color: var(--text-primary);
        }
    }
}

@keyframes bounceFloat {
    0%, 100% { transform: translate(-50%, 0); opacity: 0.5; }
    50% { transform: translate(-50%, 15px); opacity: 1; }
}

.site-footer {
    min-height: 45vh;
    padding: 6rem 2rem 2rem 2rem;
    background: var(--bg-color);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
    .footer-content {
        max-width: 1200px;
        width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        justify-content: space-between;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 4rem;
        margin-bottom: 4rem;
    }

    .footer-brand {
        h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 2.5rem;
            text-transform: uppercase;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }
        
        p {
            font-family: 'Inter', sans-serif;
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.6);
            
            span {
                font-style: italic;
                color: var(--accent);
            }
        }
    }

    h3 {
        font-family: 'Outfit', sans-serif;
        font-size: 1.2rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 1.5rem;
        color: var(--text-primary);
    }

    .link-group {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }

    p {
        font-family: 'Inter', sans-serif;
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.5);
        line-height: 1.6;
        margin: 0;
    }

    a {
        font-family: 'Inter', sans-serif;
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.6);
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        width: fit-content;

        &::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 1px;
            background-color: var(--accent);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }

        &:hover {
            color: var(--text-primary);
            
            &::after {
                transform: scaleX(1);
                transform-origin: left;
            }
        }
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 2rem;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .copyright {
            text-align: center;
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.3);
            margin-top: 2rem;
        }
    }
}

.music-section {
    position: relative;
    z-index: 10;
    padding: 5rem 2rem 10rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.music-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 50;

    &:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 51, 102, 0.3);
    }

    img {
        z-index: 55;
        width: 100%;
        aspect-ratio: 1;
        object-fit: cover;
        display: block;
    }

    .music-info {
        z-index: 55;
        padding: 1.5rem;

        h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .links-group {
            margin-bottom: 1rem;

            h4 {
                font-size: 0.75rem;
                text-transform: uppercase;
                letter-spacing: 0.05em;
                color: rgba(255, 255, 255, 0.4);
                margin-bottom: 0.5rem;
            }

            .links {
                display: flex;
                flex-wrap: wrap;
                gap: 0.5rem;

                a {
                    font-size: 0.85rem;
                    padding: 0.4rem 0.8rem;
                    background: rgba(255, 255, 255, 0.1);
                    color: var(--text-secondary);
                    text-decoration: none;
                    border-radius: 20px;
                    transition: all 0.2s ease;

                    &:hover {
                        background: var(--accent);
                        color: #fff;
                    }
                }
            }
        }
    }
}

@media (max-width: 768px) {
    body {
        min-height: 100dvh;
    }
    
    .hero {
        height: 100dvh;
        
        .video-wrapper {
            margin: 10px;
            border-radius: 12px;
        }

        .hero-title {
            font-size: clamp(2.5rem, 12vw, 4rem);
        }
        
        .hero-subtitle {
            font-size: clamp(1rem, 5vw, 1.5rem);
            padding: 0.5rem 1rem;
        }

        .socials {
            gap: 1rem;
            
            a {
                width: 48px;
                height: 48px;
                
                img {
                    width: 22px;
                    height: 22px;
                }
            }
        }
    }
    
    .site-footer {
        padding: 4rem 1.5rem 1.5rem 1.5rem;
        
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }
        
        .footer-brand h2 {
            font-size: 2rem;
        }

        .footer-bottom .footer-bottom-content {
            flex-direction: column;
            align-items: flex-start;
        }
    }
    
    .music-section {
        padding: 4rem 1rem 8rem 1rem;
        gap: 1.5rem;
    }
}
