/* ============================================
   NOEVALKY - MAIN STYLESHEET
   "Dance. Cry. Feel everything." ✨
============================================ */

/* ============================================
   CSS VARIABLES - PALETTE NOE
============================================ */
:root {
    --neon-pink: #ff2d95;
    --neon-blue: #00d4ff;
    --electric-blue: #3b82f6;
    --violet: #8b5cf6;
    --deep-purple: #1a0a2e;
    --dark-bg: #0a0a0f;
    --darker-bg: #050508;
    --text-light: #e0e0ff;
    --text-muted: #8888aa;
    
    /* Glow effects */
    --glow-pink: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink), 0 0 40px var(--neon-pink);
    --glow-blue: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue), 0 0 40px var(--neon-blue);
    --glow-violet: 0 0 10px var(--violet), 0 0 20px var(--violet), 0 0 40px var(--violet);
}

/* ============================================
   RESET & BASE
============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   BACKGROUND EFFECT - NOE EYES
============================================ */
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/noe-eyes-bg.jpg') center center / cover no-repeat;
    opacity: 0.12;
    pointer-events: none;
    z-index: -2;
}

.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 45, 149, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* ============================================
   HEADER / NAVIGATION
============================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(10, 10, 15, 0.98), rgba(10, 10, 15, 0.8), transparent);
}

.logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(244, 164, 96, 0.5));
    transition: all 0.3s ease;
}

.logo img:hover {
    filter: drop-shadow(0 0 20px rgba(244, 164, 96, 0.8));
    transform: scale(1.05);
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover {
    color: var(--neon-pink);
    text-shadow: var(--glow-pink);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-pink);
    transition: width 0.3s ease;
    box-shadow: var(--glow-pink);
}

nav a:hover::after {
    width: 100%;
}

.music-notes {
    color: var(--neon-pink);
    font-size: 2.5rem;
    text-shadow: var(--glow-pink);
    animation: float 3s ease-in-out infinite;
    user-select: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.hero-title {
    font-family: 'Righteous', cursive;
    font-size: clamp(3rem, 10vw, 7rem);
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--neon-blue), var(--violet), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.5));
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.5)); }
    50% { filter: drop-shadow(0 0 50px rgba(255, 45, 149, 0.6)); }
}

.hero-tagline {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.hero-tagline .highlight {
    color: var(--neon-pink);
    text-shadow: 0 0 10px rgba(255, 45, 149, 0.5);
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 1rem 2.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-pink), var(--violet));
    color: white;
    box-shadow: 0 0 20px rgba(255, 45, 149, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(255, 45, 149, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--neon-blue);
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    box-shadow: var(--glow-blue);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-muted);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--neon-pink);
    border-radius: 50%;
    animation: scroll-dot 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

@keyframes scroll-dot {
    0% { top: 8px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

/* ============================================
   SECTION STYLING
============================================ */
section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Righteous', cursive;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title.neon-pink {
    color: var(--neon-pink);
    text-shadow: var(--glow-pink);
}

.section-title.neon-blue {
    color: var(--neon-blue);
    text-shadow: var(--glow-blue);
}

.section-title.neon-violet {
    color: var(--violet);
    text-shadow: var(--glow-violet);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    margin-top: -1rem;
}

/* ============================================
   VISUAL NOVELS SECTION
============================================ */
.vn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.vn-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.vn-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-pink);
    box-shadow: 0 20px 40px rgba(255, 45, 149, 0.2);
}

.vn-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.vn-card-content {
    padding: 2rem;
}

.vn-card h3 {
    font-family: 'Righteous', cursive;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--neon-blue);
}

.vn-card p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.vn-card .btn {
    width: 100%;
    text-align: center;
    display: block;
}

.vn-card.coming-soon {
    opacity: 0.6;
}

.vn-card.coming-soon::after {
    content: 'COMING SOON';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    font-family: 'Righteous', cursive;
    font-size: 1.5rem;
    color: var(--neon-pink);
    text-shadow: var(--glow-pink);
    background: rgba(10, 10, 15, 0.8);
    padding: 0.5rem 2rem;
    border-radius: 10px;
}

/* ============================================
   VIDEOS SECTION
============================================ */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.video-container:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.videos-cta {
    text-align: center;
    margin-top: 2rem;
}

/* ============================================
   MUSIC SECTION
============================================ */
.spotify-embed {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.spotify-embed:hover {
    border-color: var(--violet);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

/* Music Carousel */
.music-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.music-carousel {
    overflow: hidden;
    flex: 1;
}

.carousel-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.4s ease;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--violet);
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--violet);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.music-carousel .music-card {
    flex-shrink: 0;
    width: 180px;
    text-decoration: none;
}

.music-card.coming-soon-track {
    opacity: 0.6;
}

/* Spotify Modal */
.spotify-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.spotify-modal.active {
    display: flex;
}

.spotify-modal-content {
    position: relative;
    width: 90%;
    max-width: 400px;
    background: var(--bg-dark);
    border-radius: 20px;
    padding: 1rem;
    border: 2px solid var(--violet);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.3);
}

.spotify-modal-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: var(--neon-pink);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.spotify-modal-close:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 45, 149, 0.5);
}

#spotify-player-container iframe {
    border-radius: 12px;
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.music-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.music-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 45, 149, 0.4);
}

.music-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.music-card .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.music-card .play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--neon-pink);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: var(--glow-pink);
    color: white;
}

.streaming-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.streaming-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.streaming-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

/* ============================================
   GALLERY SECTION
============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.gallery-item .download-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 2rem;
}

.gallery-item:hover .download-overlay {
    opacity: 1;
}

.gallery-item .download-overlay p {
    font-size: 1rem;
    margin-top: 0.5rem;
}

.gallery-cta {
    text-align: center;
    margin-top: 2rem;
}

/* ============================================
   BOUTIQUE SECTION
============================================ */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.shop-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.shop-card:hover {
    border-color: var(--violet);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
    transform: translateY(-5px);
}

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

.shop-card h3 {
    font-family: 'Righteous', cursive;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--violet);
}

.shop-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* ============================================
   NEWSLETTER SECTION
============================================ */
.newsletter {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(255, 45, 149, 0.1));
    border-radius: 30px;
    padding: 4rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter h2 {
    font-family: 'Righteous', cursive;
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
    border-color: var(--neon-pink);
    box-shadow: 0 0 20px rgba(255, 45, 149, 0.3);
}

.newsletter-form input[type="email"]::placeholder {
    color: var(--text-muted);
}

/* ============================================
   FOOTER
============================================ */
footer {
    padding: 4rem 2rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--neon-pink);
    border-color: var(--neon-pink);
    box-shadow: var(--glow-pink);
    transform: translateY(-5px);
}

.social-link img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.social-link:hover img {
    filter: brightness(0) invert(1);
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
    opacity: 0.8;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 768px) {
    header {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    nav {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav a {
        font-size: 0.85rem;
    }

    .music-notes {
        font-size: 2rem;
    }

    .hero-title {
        letter-spacing: 0.1em;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 4rem 1rem;
    }

    .newsletter {
        padding: 2rem 1rem;
    }

    .music-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }

    .logo img {
        height: 40px;
    }
}

/* ============================================
   ANIMATIONS ON SCROLL
============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children animations */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }
