/* --- CSS VARIABLES --- */
:root {
    --color-primary: #e91e63;
    --color-secondary: #00bcd4;
    --color-gradient: linear-gradient(45deg, var(--color-primary), #9c27b0, #3f51b5);
    --color-text: #ccc;
    --color-text-light: #fff;
    --color-bg-dark: #000;
    --color-bg-stars: #1e0a3e;
    --color-bg-glass: rgba(0, 0, 0, 0.5);
    --font-family-base: 'Arial', sans-serif;
}

/* --- BASE & RESET --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-family-base); background: var(--color-bg-dark); color: var(--color-text-light); overflow-x: hidden; }

/* --- BACKGROUNDS & PARALLAX --- */
.parallax-bg .bg-layer { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background-size: cover; background-position: center; transition: opacity 0.7s ease-in-out; opacity: 0; z-index: -8; will-change: transform; }
.parallax-bg .bg-layer.active { opacity: 1; }
.parallax-bg .bg-layer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.6); }
.stars { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: radial-gradient(2px 2px at 20px 30px, white, transparent), radial-gradient(2px 2px at 40px 70px, white, transparent), radial-gradient(1px 1px at 90px 40px, white, transparent), radial-gradient(1px 1px at 130px 80px, white, transparent), radial-gradient(2px 2px at 160px 30px, white, transparent); background-repeat: repeat; background-size: 200px 100px; animation: twinkle 3s linear infinite; z-index: -9; }
@keyframes twinkle { 0%, 100% { opacity: 0.8; } 50% { opacity: 0.3; } }

/* --- HEADER & NAVIGATION --- */
.header { position: fixed; top: 0; width: 100%; padding: 10px 40px; background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(10px); z-index: 1000; transition: transform 0.3s ease-in-out; }
.header.hidden { transform: translateY(-100%); }
.nav-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.logo { height: 100px; width: auto; }
.nav-menu { display: flex; list-style: none; gap: 40px; }
.nav-menu a { color: var(--color-text-light); text-decoration: none; font-weight: 600; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; transition: color 0.3s ease; position: relative; }
.nav-menu a:hover, .nav-menu a.active { color: var(--color-primary); }
.nav-menu a.active::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 100%; height: 2px; background: var(--color-primary); }
.hamburger-menu { display: none; font-size: 24px; cursor: pointer; color: var(--color-text-light); }

/* --- HERO SECTION --- */
.hero { height: 100vh; display: flex; justify-content: center; align-items: center; text-align: center; background: transparent; }
.hero-content { z-index: 10; transform: translateY(-50px); perspective: 1000px; }
.hero h1 { font-size: 120px; font-weight: 900; letter-spacing: 10px; margin-bottom: 20px; background: var(--color-gradient); background-size: 200% 200%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; animation: gradientShift 3s ease infinite; transition: transform 0.1s linear; }
.hero p { font-size: 18px; letter-spacing: 3px; color: var(--color-text); margin-bottom: 40px; }
@keyframes gradientShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* --- GENERAL SECTION STYLING --- */
.section { min-height: 100vh; display: flex; justify-content: center; align-items: center; padding: 150px 20px; position: relative; }
.bordered-box { max-width: 900px; margin: 0 auto; border: 3px solid var(--color-primary); border-radius: 20px; padding: 50px 40px; background: var(--color-bg-glass); backdrop-filter: blur(5px); text-align: center; }
.box-title { font-size: 48px; margin-bottom: 30px; letter-spacing: 3px; color: var(--color-text-light); }
.section-intro {
    font-size: 18px;
    color: var(--color-text);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 40px auto;
    text-align: center;
}
.bordered-box > p { font-size: 18px; margin-bottom: 20px; color: var(--color-text); line-height: 1.7; }

/* --- REUSABLE COMPONENTS --- */
.btn { background: var(--color-secondary); color: var(--color-text-light); padding: 15px 30px; border: none; border-radius: 50px; font-size: 16px; font-weight: bold; letter-spacing: 2px; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 10px; transition: all 0.3s ease; box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3); }
.btn:hover { background: #00acc1; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0, 188, 212, 0.4); }
.btn.btn-submit { background: var(--color-gradient); width: 100%; margin-top: 20px; }


/* --- BIO SECTION --- */
.bio-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; align-items: flex-start; text-align: left; }
.bio-main-text h3, .bio-stats h3 { font-size: 28px; margin-bottom: 20px; letter-spacing: 2px; }
.bio-main-text h3 { color: var(--color-primary); }
.bio-stats h3 { color: var(--color-secondary); }
.bio-main-text p { text-align: left; margin-bottom: 20px; }
.stat-item { display: flex; align-items: center; gap: 20px; background: rgba(255, 255, 255, 0.05); padding: 15px; border-radius: 10px; border-left: 3px solid var(--color-secondary); margin-bottom: 20px; }
.stat-item i { font-size: 28px; color: var(--color-secondary); }
.stat-item h4, .stat-item span { text-align: left; margin: 0; }
.stat-item h4 { font-size: 18px; }
.stat-item span { font-size: 14px; color: #aaa; }

/* --- APP SECTION --- */
.app-section-content { display: flex; flex-direction: column; align-items: center; gap: 25px; }
.app-icon { font-size: 80px; color: var(--color-secondary); text-shadow: 0 0 25px rgba(0, 188, 212, 0.5); }
.app-description { max-width: 600px; margin: 0; color: var(--color-text); font-size: 18px; line-height: 1.7; }
.btn-install { background: var(--color-gradient); padding: 18px 35px; font-size: 18px; border-radius: 50px; box-shadow: 0 5px 20px rgba(233, 30, 99, 0.4); }
.btn-install:hover { box-shadow: 0 8px 25px rgba(156, 39, 176, 0.5); }


/* --- "FOCUS" CAROUSEL --- */
.platform-section { text-align: center; }
.main-player-container { max-width: 800px; margin: 0 auto 40px auto; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.2); padding: 20px; border-radius: 15px; }
.now-playing-title { font-size: 18px; color: var(--color-text); margin-bottom: 15px; font-weight: bold; }
#mainAudioPlayer { width: 100%; }
.carousel-container { position: relative; width: 100%; height: 500px; display: flex; align-items: center; justify-content: center; overflow: hidden;}
.carousel-track { display: flex; align-items: center; position: absolute; left: 0; top: 50%; transform: translateY(-50%); transition: left 0.5s cubic-bezier(0.25, 1, 0.5, 1); }
.carousel-item { flex-shrink: 0; margin: 0 20px; transition: transform 0.5s ease, opacity 0.5s ease; cursor: pointer; opacity: 0.4; transform: scale(0.8); }
.carousel-item.active { opacity: 1; transform: scale(1); }
.track-item { width: 300px; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 15px; padding: 20px; text-align: center; }
.track-item.active { border-color: var(--color-secondary); }
.track-cover { width: 100%; padding-top: 100%; background-size: cover; background-position: center; margin: 0 auto 20px; border-radius: 10px; }
.track-title { font-size: 16px; font-weight: bold; color: var(--color-text-light); height: 40px; margin-top: 10px; }

.photo-item {
    width: 500px; 
    height: 385px; 
    background-size: cover;
    background-position: center;
    border-radius: 15px;
}
.video-item {
    width: 500px; 
    height: 385px; 
}
.video-wrapper { position: relative; width: 100%; height: 100%; cursor: pointer; border-radius: 15px; overflow: hidden; background-color: #000; }
.video-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.3s ease; }
.play-button-overlay { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 50px; color: var(--color-text-light); background: rgba(233, 30, 99, 0.8); width: 80px; height: 80px; border-radius: 50%; display: flex; justify-content: center; align-items: center; transition: all 0.3s ease; }
.video-wrapper:hover .play-button-overlay { background: var(--color-primary); transform: translate(-50%, -50%) scale(1.1); }

/* Updated TikTok Item Styles */
.tiktok-item {
    width: 280px; /* Narrower for vertical video feel */
    height: 400px; /* Taller */
    background: #000; /* Black background as requested */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    text-align: center;
    overflow: hidden; /* To contain the elements */
    position: relative;
}
.tiktok-item.active {
    border-color: var(--color-primary); /* Use primary color for active TikTok */
}

/* --- UPDATED TIKTOK COVER --- */
.tiktok-cover {
    width: 100%;
    height: 100%;
    /* The 'background-image' is now set by script.js */
    
    /* Changed from 80% to cover */
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
    
    /* --- THIS IS THE FINAL CHANGE --- */
    opacity: 0.5; 
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
}
.tiktok-item:hover .tiktok-cover {
    opacity: 0.7; /* --- THIS IS THE FINAL CHANGE --- */
}
/* --- END OF UPDATE --- */

.tiktok-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 0 15px rgba(0,0,0,0.7);
    pointer-events: none; /* Allows click-through */
    transition: transform 0.3s ease;
}
.tiktok-item:hover .tiktok-icon {
    transform: translate(-50%, -50%) scale(1.1);
}
.tiktok-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    font-size: 14px;
    font-weight: bold;
    color: var(--color-text-light);
}
/* End Updated TikTok Styles */

.carousel-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(233, 30, 99, 0.8); border: none; color: var(--color-text-light); width: 50px; height: 50px; border-radius: 50%; font-size: 20px; cursor: pointer; z-index: 100; transition: background-color 0.3s ease; }
.carousel-nav:hover { background: var(--color-primary); }
.carousel-container .carousel-nav.prev { left: 20px; }
.carousel-container .carousel-nav.next { right: 20px; }

/* --- NEW SWIPE HINT --- */
.swipe-hint {
    display: none; /* Hidden by default */
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 15px;
    border-radius: 20px;
    color: var(--color-text);
    font-size: 14px;
    font-weight: bold;
    z-index: 50;
    display: none; /* Hidden by default */
    align-items: center;
    gap: 8px;
    pointer-events: none; /* So it doesn't block clicks */
}
.swipe-hint i {
    font-size: 16px;
}
/* --- END NEW SWIPE HINT --- */


.more-music-container { text-align: center; margin-top: 50px; }

/* --- BOOKINGS SECTION --- */
.booking-flyer {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* --- CONTACT SECTION --- */
.contact-form { 
    max-width: 600px; 
    margin: 0 auto;
    text-align: left; /* Aligns form labels to the left */
}
.form-row { display: flex; gap: 20px; margin-bottom: 20px; }
.form-group { flex: 1; }
.form-group label { display: block; margin-bottom: 8px; color: var(--color-text); font-size: 14px; letter-spacing: 1px; }
.form-group input, .form-group textarea { width: 100%; padding: 15px; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 10px; color: var(--color-text-light); font-size: 16px; transition: border-color 0.3s, box-shadow 0.3s; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--color-secondary); box-shadow: 0 0 20px rgba(0, 188, 212, 0.3); }

/* --- FORM FEEDBACK --- */
.form-feedback {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    display: none; /* Hidden by default */
}
.form-feedback.success {
    background-color: rgba(0, 188, 212, 0.2);
    border: 1px solid var(--color-secondary);
    color: var(--color-secondary);
}
.form-feedback.error {
    background-color: rgba(233, 30, 99, 0.2);
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
}

/* --- FOOTER --- */
.footer { background: #0a0a0a; padding: 50px 20px; text-align: center; position: relative; z-index: 5; }
.footer-content h3 { font-size: 36px; margin-bottom: 20px; background: var(--color-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.social-links { display: flex; justify-content: center; gap: 30px; margin: 30px 0; }
.social-links a { color: var(--color-text); font-size: 28px; text-decoration: none; transition: all 0.3s ease; }
.social-links a:hover { color: var(--color-primary); transform: translateY(-3px); }
.footer-credit { margin-top: 30px; font-size: 12px; color: #888; letter-spacing: 1px; }
.footer-credit p { margin: 5px 0; }
.footer-credit a { color: #aaa; text-decoration: none; }

/* --- CONSENT BANNER & MODALS --- */
#consent-banner { position: fixed; bottom: 0; left: 0; width: 100%; background: rgba(10, 10, 26, 0.8); backdrop-filter: blur(8px); z-index: 2000; padding: 20px; display: flex; justify-content: center; align-items: center; gap: 20px; transform: translateY(100%); transition: transform 0.5s ease-in-out; }
#consent-banner.show { transform: translateY(0); }
#consent-banner p { margin: 0; color: var(--color-text); font-size: 14px; max-width: 600px; }
#consent-banner .btn { padding: 10px 20px; flex-shrink: 0; }

.video-lightbox, .embed-lightbox { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); z-index: 3000; display: flex; justify-content: center; align-items: center; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.video-lightbox.show, .embed-lightbox.show { opacity: 1; pointer-events: all; }
.video-lightbox .close-lightbox, .embed-lightbox .close-lightbox { position: absolute; top: 20px; right: 40px; font-size: 50px; color: #fff; cursor: pointer; border: none; background: none; z-index: 3001; }
.lightbox-content { position: relative; width: 90%; max-width: 1200px; aspect-ratio: 16/9; }
.lightbox-content iframe { width: 100%; height: 100%; border: none; }
.lightbox-content img { width: 100%; height: 100%; object-fit: contain; }

/* New style for the embed lightbox to make it narrower for TikTok */
.embed-lightbox-content {
    position: relative;
    max-width: 400px; /* Much narrower for a TikTok video */
    width: 90%;
    aspect-ratio: 9 / 16; /* Vertical aspect ratio */
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}
.embed-lightbox-content iframe { width: 100%; height: 100%; border: none; }

/* --- MOBILE NAVIGATION & RESPONSIVE DESIGN --- */
.mobile-nav-overlay { height: 100%; width: 0; position: fixed; z-index: 2000; top: 0; left: 0; background-color: rgba(0,0,0, 0.95); overflow-x: hidden; transition: 0.5s; }
.mobile-nav-content { position: relative; top: 25%; width: 100%; text-align: center; margin-top: 30px; }
.mobile-nav-overlay a { padding: 15px; text-decoration: none; font-size: 28px; color: #818181; display: block; transition: 0.3s; }
.mobile-nav-overlay a:hover, .mobile-nav-overlay a:focus { color: #f1f1f1; }
.mobile-nav-overlay .close-btn { position: absolute; top: 20px; right: 45px; font-size: 60px; }

/* Animate on Scroll */
.animate-on-scroll { opacity: 0; transform: translateY(50px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; will-change: transform, opacity; }
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
    .nav-menu { display: none; }
    .hamburger-menu { display: block; } /* Corrected from .header-icons */
    .nav-container { padding: 0 10px; /* Added padding */ }
    .hero h1 { font-size: 80px; }
    .section-title, .box-title { font-size: 40px; }
    .bio-grid { grid-template-columns: 1fr; }
    .carousel-nav { display: none; /* Hide nav buttons on smaller screens */ }

    /* --- SHOW SWIPE HINT ON MOBILE --- */
    .swipe-hint {
        display: flex; /* Show the hint */
    }
}
@media (max-width: 600px) {
    body { padding-right: 0 !important; }
    .header { padding: 15px 20px; }
    .nav-container { padding: 0; }
    .logo { height: 80px; }
    .hero h1 { font-size: 50px; letter-spacing: 3px; }
    .hero p { font-size: 14px; }
    .section { padding: 100px 15px; }
    .bordered-.box { padding: 30px 20px; }
    .track-item { width: 220px; }
    .photo-item, .video-item { width: 80vw; height: auto; aspect-ratio: 16/9; }
    .tiktok-item { width: 220px; height: 350px; } /* Adjust TikTok item for mobile */
    .form-row { flex-direction: column; gap: 0; } /* Removed gap for tighter mobile form */
    #consent-banner { flex-direction: column; text-align: center; }
}

