/* ==========================================================================
   Lumiere Music Group - Premium Design System
   ========================================================================== */

:root {
    /* Color Palette */
    --bg-primary: #070312;
    --bg-secondary: #0d0621;
    --bg-glass: rgba(18, 9, 42, 0.55);
    --bg-glass-hover: rgba(28, 14, 62, 0.7);
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-glass-hover: rgba(255, 255, 255, 0.18);
    
    --text-main: #f3f0fa;
    --text-muted: #9f96b8;
    --text-dark: #070312;
    
    /* Gradients */
    --grad-primary: linear-gradient(135deg, #7f00ff 0%, #ff007f 100%);
    --grad-primary-hover: linear-gradient(135deg, #8f1aff 0%, #ff1a8c 100%);
    --grad-text: linear-gradient(90deg, #a855f7 0%, #ec4899 100%);
    --grad-dark: linear-gradient(180deg, rgba(7, 3, 18, 0) 0%, #070312 100%);

    /* Shadows & Glows */
    --glow-purple: 0 0 20px rgba(127, 0, 255, 0.3);
    --glow-pink: 0 0 20px rgba(255, 0, 127, 0.3);
    --shadow-card: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    /* Fonts */
    --font-heading: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout */
    --container-width: 1200px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==========================================================================
   Animated Background (Stars & Orbs)
   ========================================================================== */

.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

/* Background gradient orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    mix-blend-mode: screen;
    animation: floatOrb 20s infinite alternate ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: #7f00ff;
    top: -10%;
    right: -10%;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: #ff007f;
    bottom: -10%;
    left: -10%;
    animation-delay: -5s;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 50px) scale(1.2); }
}

/* ==========================================================================
   Typography & Common Components
   ========================================================================== */

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient {
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-primary {
    background: var(--grad-primary);
    color: var(--text-main);
    border: none;
    box-shadow: var(--glow-purple);
}

.btn-primary:hover {
    background: var(--grad-primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(127, 0, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-glass-hover);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-main);
    transform: translateY(-3px);
}

/* Glassmorphism Card */
.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--border-glass-hover);
    background: var(--bg-glass-hover);
    transform: translateY(-5px);
}

/* Section Common */
.section {
    padding: 8rem 0;
    position: relative;
}

.bg-alt {
    background-color: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.title-bar {
    width: 60px;
    height: 4px;
    background: var(--grad-primary);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

/* Scroll Reveal classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(7, 3, 18, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}

.header.scrolled {
    padding: 0.75rem 0;
    background: rgba(7, 3, 18, 0.95);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text-main);
    letter-spacing: 1px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-primary);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--text-main);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass-hover);
    color: var(--text-main);
}

.nav-btn::after {
    display: none;
}

.nav-btn:hover {
    background: var(--grad-primary);
    border-color: transparent;
    box-shadow: var(--glow-purple);
    transform: translateY(-2px);
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(7, 3, 18, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 99;
    overflow: hidden;
    transition: var(--transition-smooth);
    border-bottom: 0 solid var(--border-glass);
}

.mobile-menu.active {
    height: 300px;
    border-bottom: 1px solid var(--border-glass);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    gap: 1.5rem;
}

.mobile-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.mobile-link:hover {
    color: var(--text-main);
}

.mobile-btn {
    width: 80%;
    text-align: center;
    padding: 0.75rem;
    border-radius: 50px;
    background: var(--grad-primary);
    color: var(--text-main);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: var(--grad-dark);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(127, 0, 255, 0.15);
    border: 1px solid rgba(127, 0, 255, 0.3);
    color: #c084fc;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    box-shadow: 0 0 15px rgba(127, 0, 255, 0.1);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

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

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

/* ==========================================================================
   Who We Are Section (About)
   ========================================================================== */

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.visual-card {
    position: relative;
    overflow: hidden;
}

.visual-accent {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(127,0,255,0.12) 0%, transparent 60%);
    pointer-events: none;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.visual-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.v-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
}

/* ==========================================================================
   Features Section
   ========================================================================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature-card {
    text-align: center;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--grad-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 1.8rem;
    color: var(--text-main);
    box-shadow: var(--glow-purple);
}

.feature-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   Releases Section
   ========================================================================== */

.releases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.release-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.release-img-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.release-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.release-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 3, 18, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.release-play {
    padding: 0.6rem 1.25rem;
    background: var(--text-main);
    color: var(--text-dark);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: var(--font-heading);
    transform: translateY(15px);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.release-info {
    padding: 1.25rem;
}

.release-title {
    font-size: 1.1rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.25rem;
}

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

/* Hover Effects */
.release-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(127, 0, 255, 0.15);
    border-color: rgba(127, 0, 255, 0.3);
}

.release-card:hover .release-img {
    transform: scale(1.08);
}

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

.release-card:hover .release-play {
    transform: translateY(0);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-card {
    text-align: center;
    padding: 4rem 3rem;
}

.contact-icon {
    font-size: 3.5rem;
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-info-text {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.email-display-container {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-glass);
    padding: 0.75rem 0.75rem 0.75rem 1.5rem;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.3);
}

.email-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
    word-break: break-all;
}

.email-link:hover {
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.copy-btn {
    background: var(--grad-primary);
    color: var(--text-main);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--glow-purple);
}

.copy-btn:hover {
    background: var(--grad-primary-hover);
    transform: scale(1.03);
}

.copy-btn.copied {
    background: #10b981; /* Success Green */
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-glass);
    padding: 3rem 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo {
    height: 35px;
    width: auto;
}

.footer-brand-text {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
}

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

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

@media (max-width: 1024px) {
    .releases-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .features-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 70px;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .nav {
        display: none; /* Hide desktop nav */
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .releases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .email-display-container {
        flex-direction: column;
        border-radius: 24px;
        padding: 1.5rem;
    }
    
    .copy-btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 5rem 0;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .releases-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 2.5rem 1.5rem;
    }
}
