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

:root {
    --primary-dark: #050505;
    --secondary-dark: #0f0f0f;
    --accent-primary: #ff4500;
    --accent-secondary: #ff8c00;
    --accent-gold: #ffd700;
    --accent-teal: #20b2aa;
    --accent-pink: #ff69b4;
    --text-light: #ffffff;
    --text-gray: #a0a0a0;
    --text-muted: #707070;
    --text-dark: #ffffff;
    --gradient-island: linear-gradient(135deg, #ff4500 0%, #ff8c00 50%, #ffd700 100%);
    --gradient-teal: linear-gradient(135deg, #20b2aa 0%, #00ced1 100%);
    --gradient-warm: linear-gradient(135deg, #ff69b4 0%, #ff4500 100%);
    --gradient-urban: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    --shadow-glow: 0 0 40px rgba(255, 69, 0, 0.4);
    --shadow-soft: 0 8px 32px rgba(255, 69, 0, 0.15);
    --border-glow: 1px solid rgba(255, 69, 0, 0.3);
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: block;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 69, 0, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(32, 178, 170, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(255, 140, 0, 0.06) 0%, transparent 70%),
        linear-gradient(180deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    overflow: hidden;
}

/* ===== SPEAKERS - FIXED POSITION TO HERO ===== */
.speaker-left-fixed,
.speaker-right-fixed {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 220px;
    height: 500px;
    z-index: 50;
}

.speaker-left-fixed  { left: 40px; }
.speaker-right-fixed { right: 40px; }

.spk-cabinet {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        #0a0a0a 0%,
        #111111 30%,
        #0d0d0d 70%,
        #080808 100%);
    border-radius: 22px;
    border: 2px solid rgba(255, 140, 0, 0.5);
    box-shadow:
        0 0 40px rgba(255, 69, 0, 0.35),
        0 0 80px rgba(255, 140, 0, 0.15),
        0 20px 60px rgba(0, 0, 0, 0.8),
        inset 0 0 30px rgba(0, 0, 0, 0.9),
        inset 0 1px 0 rgba(255,255,255,0.05);
    overflow: hidden;
    animation: spkBreathe 2s ease-in-out infinite;
}

.spk-cabinet::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 8px,
        rgba(255,255,255,0.015) 8px,
        rgba(255,255,255,0.015) 9px
    );
    border-radius: 22px;
    pointer-events: none;
}

.spk-top-section {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 185px;
    height: 185px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spk-woofer {
    position: relative;
    width: 185px;
    height: 185px;
    border-radius: 50%;
    background: radial-gradient(circle at center,
        #1a1a1a 0%,
        #0d0d0d 45%,
        #050505 100%);
    border: 4px solid rgba(255, 100, 0, 0.6);
    box-shadow:
        0 0 25px rgba(255, 69, 0, 0.5),
        0 0 50px rgba(255, 140, 0, 0.2),
        inset 0 0 30px rgba(0, 0, 0, 0.95);
    animation: spkWooferPulse 1.4s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spk-woofer::before {
    content: '';
    position: absolute;
    width: 165px;
    height: 165px;
    border-radius: 50%;
    border: 3px solid rgba(80, 80, 80, 0.6);
    box-shadow: inset 0 0 10px rgba(0,0,0,0.8);
}

.spk-woofer::after {
    content: '';
    position: absolute;
    width: 145px;
    height: 145px;
    border-radius: 50%;
    border: 2px solid rgba(60, 60, 60, 0.5);
}

.spk-cone {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%,
        #2a2a2a 0%,
        #141414 50%,
        #080808 100%);
    border: 2px solid rgba(255, 140, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.95);
}

.spk-dustcap {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%,
        rgba(255, 160, 0, 0.8) 0%,
        rgba(255, 69, 0, 0.5) 50%,
        rgba(180, 40, 0, 0.3) 100%);
    box-shadow:
        0 0 18px rgba(255, 140, 0, 0.9),
        0 0 35px rgba(255, 69, 0, 0.5);
    animation: spkDustcap 1.4s ease-in-out infinite;
}

.spk-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(255, 120, 0, 0.35);
    transform: translate(-50%, -50%);
    animation: spkRingPulse 1.8s ease-out infinite;
}
.spk-ring-1 { width: 160px; height: 160px; animation-delay: 0s; }
.spk-ring-2 { width: 190px; height: 190px; animation-delay: 0.3s; }
.spk-ring-3 { width: 220px; height: 220px; animation-delay: 0.6s; }

.spk-divider {
    position: absolute;
    top: 228px;
    left: 15px;
    right: 15px;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 140, 0, 0.7) 20%,
        rgba(255, 215, 0, 0.9) 50%,
        rgba(255, 140, 0, 0.7) 80%,
        transparent);
    box-shadow: 0 0 8px rgba(255, 140, 0, 0.5);
}

.spk-bottom-section {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spk-tweeter {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: radial-gradient(circle,
        #181818 0%,
        #0d0d0d 50%,
        #050505 100%);
    border: 3px solid rgba(255, 180, 0, 0.5);
    box-shadow:
        0 0 15px rgba(255, 180, 0, 0.3),
        inset 0 0 15px rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spkTweeterPulse 0.7s ease-in-out infinite;
}

.spk-tweeter-dome {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%,
        rgba(255, 220, 0, 0.85) 0%,
        rgba(255, 140, 0, 0.5) 60%,
        rgba(180, 80, 0, 0.3) 100%);
    box-shadow:
        0 0 15px rgba(255, 215, 0, 1),
        0 0 30px rgba(255, 140, 0, 0.6);
}

.spk-brand {
    position: absolute;
    bottom: 138px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 140, 0, 0.6);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 4px;
    white-space: nowrap;
}

.spk-glow {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 22px;
    background: radial-gradient(ellipse at 50% 40%,
        rgba(255, 100, 0, 0.06) 0%,
        transparent 65%);
    pointer-events: none;
}

@keyframes spkBreathe {
    0%, 100% {
        box-shadow: 0 0 40px rgba(255,69,0,0.35), 0 0 80px rgba(255,140,0,0.15), 0 20px 60px rgba(0,0,0,0.8), inset 0 0 30px rgba(0,0,0,0.9);
        border-color: rgba(255, 140, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 60px rgba(255,69,0,0.6), 0 0 120px rgba(255,140,0,0.3), 0 20px 60px rgba(0,0,0,0.8), inset 0 0 30px rgba(0,0,0,0.9);
        border-color: rgba(255, 215, 0, 0.8);
    }
}

@keyframes spkWooferPulse {
    0%, 100% { transform: scale(1);    box-shadow: 0 0 25px rgba(255,69,0,0.5), 0 0 50px rgba(255,140,0,0.2), inset 0 0 30px rgba(0,0,0,0.95); }
    50%       { transform: scale(1.04); box-shadow: 0 0 40px rgba(255,69,0,0.8), 0 0 80px rgba(255,140,0,0.4), inset 0 0 30px rgba(0,0,0,0.95); }
}

@keyframes spkDustcap {
    0%, 100% { transform: scale(1);    box-shadow: 0 0 18px rgba(255,140,0,0.9), 0 0 35px rgba(255,69,0,0.5); }
    50%       { transform: scale(1.15); box-shadow: 0 0 30px rgba(255,215,0,1),   0 0 55px rgba(255,140,0,0.8); }
}

@keyframes spkRingPulse {
    0%   { opacity: 0.7; transform: translate(-50%, -50%) scale(0.9); }
    100% { opacity: 0;   transform: translate(-50%, -50%) scale(1.15); }
}

@keyframes spkTweeterPulse {
    0%, 100% { box-shadow: 0 0 15px rgba(255,180,0,0.3), inset 0 0 15px rgba(0,0,0,0.9); }
    50%       { box-shadow: 0 0 30px rgba(255,215,0,0.7), inset 0 0 15px rgba(0,0,0,0.9); }
}

/* ===== HERO LOGO - perfectly centered on vinyl ===== */
.hero-logo-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 30;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

/* ===== HERO CONTENT - text & buttons below vinyl ===== */
.hero-content {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 30;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 1s ease-out;
    width: 90%;
    max-width: 900px;
    pointer-events: auto;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 100px,
            rgba(255, 69, 0, 0.015) 100px,
            rgba(255, 69, 0, 0.015) 200px
        ),
        repeating-linear-gradient(
            180deg,
            transparent,
            transparent 100px,
            rgba(32, 178, 170, 0.015) 100px,
            rgba(32, 178, 170, 0.015) 200px
        );
    pointer-events: none;
    opacity: 0.6;
}

/* ===== ARTISTIC BACKGROUND ELEMENTS ===== */
.artistic-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: sphereFloat 10s ease-in-out infinite;
}

.gradient-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 69, 0, 0.3) 0%, transparent 70%);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.gradient-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(32, 178, 170, 0.25) 0%, transparent 70%);
    top: 30%;
    right: 15%;
    animation-delay: -3s;
}

.gradient-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.2) 0%, transparent 70%);
    bottom: 20%;
    left: 30%;
    animation-delay: -6s;
}

@keyframes sphereFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -20px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.9); }
    75% { transform: translate(-30px, -10px) scale(1.05); }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px;
    z-index: 1000;
    transition: all 0.3s ease;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.8) 100%);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid rgba(255, 69, 0, 0.2);
}

.navbar.navbar-expanded {
    padding: 30px 60px;
    height: 90px;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo {
    width: 180px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 25px rgba(255, 69, 0, 0.6));
    transition: all 0.3s ease;
}

.nav-logo-large {
    width: 200px;
    filter: drop-shadow(0 0 30px rgba(255, 69, 0, 0.7));
}

.nav-logo:hover {
    filter: drop-shadow(0 0 40px rgba(255, 140, 0, 0.8));
    transform: scale(1.08);
}

/* ===== PALM TREE DECORATIONS ===== */
.palm-trees-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.palm-tree {
    position: absolute;
    bottom: 0;
}

.palm-left {
    left: -50px;
    animation: palmWaveLeft 8s ease-in-out infinite;
}

.palm-right {
    right: -50px;
    animation: palmWaveRight 8s ease-in-out infinite;
}

@keyframes palmWaveLeft {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
}

@keyframes palmWaveRight {
    0%, 100% { transform: rotate(2deg); }
    50% { transform: rotate(-2deg); }
}

.palm-trunk {
    width: 30px;
    height: 200px;
    background: linear-gradient(90deg,
        #8B4513 0%,
        #A0522D 50%,
        #8B4513 100%);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
    box-shadow: 
        inset -5px 0 10px rgba(0, 0, 0, 0.3),
        0 5px 15px rgba(0, 0, 0, 0.4);
}

.palm-trunk::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 5px;
    right: 5px;
    height: 160px;
    background: 
        repeating-linear-gradient(
            180deg,
            transparent,
            transparent 20px,
            rgba(0, 0, 0, 0.2) 20px,
            rgba(0, 0, 0, 0.2) 22px
        );
    border-radius: 5px;
}

.palm-fronds {
    position: absolute;
    top: -100px;

/* Specific Palm Tree Positionings */
.palm-left-1 {
    left: 20px;
    bottom: 0;
    z-index: 5;
    transform: scale(1.1);
    opacity: 0.9;
}

.palm-right-1 {
    right: 30px;
    bottom: 0;
    z-index: 5;
    transform: scale(1.0);
}

.palm-right-2 {
    right: 100px;
    bottom: 0;
    z-index: 4;
    transform: scale(0.7);
    opacity: 0.7;
}
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 150px;
}

.frond {
    position: absolute;
    width: 200px;
    height: 40px;
    background: linear-gradient(90deg,
        var(--accent-teal) 0%,
        var(--accent-primary) 50%,
        var(--accent-secondary) 100%);
    border-radius: 50px 50px 0 0;
    top: 50%;
    left: 50%;
    transform-origin: left center;
    filter: drop-shadow(0 0 10px rgba(255, 69, 0, 0.3));
    opacity: 0.9;
    transition: all 0.5s ease;
}

.frond-1 {
    transform: rotate(-60deg) translate(-20px, -80px);
    animation: frondWave1 6s ease-in-out infinite;
}

.frond-2 {
    transform: rotate(-30deg) translate(-20px, -120px);
    animation: frondWave2 6s ease-in-out infinite 0.5s;
}

.frond-3 {
    transform: rotate(0deg) translate(-20px, -140px);
    animation: frondWave3 6s ease-in-out infinite 1s;
}

.frond-4 {
    transform: rotate(30deg) translate(-20px, -120px);
    animation: frondWave4 6s ease-in-out infinite 1.5s;
}

.frond-5 {
    transform: rotate(60deg) translate(-20px, -80px);
    animation: frondWave5 6s ease-in-out infinite 2s;
}

@keyframes frondWave1 {
    0%, 100% { transform: rotate(-60deg) translate(-20px, -80px); }
    50% { transform: rotate(-55deg) translate(-20px, -75px); }
}

@keyframes frondWave2 {
    0%, 100% { transform: rotate(-30deg) translate(-20px, -120px); }
    50% { transform: rotate(-25deg) translate(-20px, -115px); }
}

@keyframes frondWave3 {
    0%, 100% { transform: rotate(0deg) translate(-20px, -140px); }
    50% { transform: rotate(5deg) translate(-20px, -135px); }
}

@keyframes frondWave4 {
    0%, 100% { transform: rotate(30deg) translate(-20px, -120px); }
    50% { transform: rotate(35deg) translate(-20px, -115px); }
}

@keyframes frondWave5 {
    0%, 100% { transform: rotate(60deg) translate(-20px, -80px); }
    50% { transform: rotate(65deg) translate(-20px, -75px); }
}

/* Responsive artists grid */
@media (max-width: 1100px) {
    .artists-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-island);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-orange);
}

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

.nav-links a:hover {
    text-shadow: 0 0 20px rgba(255, 69, 0, 0.5);
}

/* ===== ARTISTIC BACKGROUND ELEMENTS ===== */
.artistic-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: sphereFloat 10s ease-in-out infinite;
}

.gradient-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 69, 0, 0.3) 0%, transparent 70%);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.gradient-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(32, 178, 170, 0.25) 0%, transparent 70%);
    top: 30%;
    right: 15%;
    animation-delay: -3s;
}

.gradient-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.2) 0%, transparent 70%);
    bottom: 20%;
    left: 30%;
    animation-delay: -6s;
}

@keyframes sphereFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -20px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.9); }
    75% { transform: translate(-30px, -10px) scale(1.05); }
}


/* ===== PROFESSIONAL HERO LOGO DISPLAY ===== */
.logo-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: showcaseFloat 6s ease-in-out infinite;
}

/* ===== VINYL RECORD BACKGROUND ===== */
.vinyl-record {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(20, 20, 30, 0.95) 0%,
        rgba(10, 10, 15, 0.98) 30%,
        rgba(5, 5, 8, 1) 100%);
    z-index: 1;
    overflow: hidden;
    box-shadow: 
        0 0 100px rgba(255, 69, 0, 0.3),
        0 0 200px rgba(255, 140, 0, 0.2),
        0 0 300px rgba(255, 215, 0, 0.1),
        inset 0 0 50px rgba(0, 0, 0, 0.8);
    animation: vinylSpin 20s linear infinite;
}

.vinyl-grooves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.groove-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(255, 69, 0, 0.1);
    box-shadow: 0 0 2px rgba(255, 140, 0, 0.05);
}

.groove-1 { width: 680px; height: 680px; }
.groove-2 { width: 660px; height: 660px; }
.groove-3 { width: 640px; height: 640px; }
.groove-4 { width: 620px; height: 620px; }
.groove-5 { width: 600px; height: 600px; }
.groove-6 { width: 580px; height: 580px; }
.groove-7 { width: 560px; height: 560px; }
.groove-8 { width: 540px; height: 540px; }
.groove-9 { width: 520px; height: 520px; }
.groove-10 { width: 500px; height: 500px; }
.groove-11 { width: 480px; height: 480px; }
.groove-12 { width: 460px; height: 460px; }

.vinyl-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(255, 69, 0, 0.15) 0%,
        rgba(255, 140, 0, 0.1) 50%,
        rgba(255, 215, 0, 0.05) 100%);
    box-shadow: inset 0 0 30px rgba(255, 69, 0, 0.3);
}

.label-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(255, 140, 0, 0.4) 0%,
        rgba(255, 69, 0, 0.2) 100%);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.vinyl-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.03) 45%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0.03) 55%,
        transparent 100%);
    animation: vinylShine 4s ease-in-out infinite;
    border-radius: 50%;
}

@keyframes vinylSpin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes vinylShine {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.main-logo-img {

/* ===== ARTICULATE SPEAKERS SYSTEM ===== */
    width: 600px;
    max-width: 85vw;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 60px rgba(255, 69, 0, 0.7)) 
            drop-shadow(0 0 120px rgba(255, 140, 0, 0.4))
            drop-shadow(0 0 180px rgba(255, 69, 0, 0.2));
    animation: logoArtisticFloat 5s ease-in-out infinite;
    position: relative;
    z-index: 5;
}

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

@keyframes logoArtisticFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 0 60px rgba(255, 69, 0, 0.7)) 
                drop-shadow(0 0 120px rgba(255, 140, 0, 0.4));
    }
    50% {
        transform: translateY(-25px) scale(1.03);
        filter: drop-shadow(0 0 90px rgba(255, 69, 0, 0.9)) 
                drop-shadow(0 0 150px rgba(255, 140, 0, 0.6));
    }
}

.logo-artistic-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, 
        rgba(255, 69, 0, 0.25) 0%, 
        rgba(255, 140, 0, 0.15) 30%,
        rgba(255, 215, 0, 0.08) 50%,
        transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: artisticGlowPulse 4s ease-in-out infinite;
}

@keyframes artisticGlowPulse {
    0%, 100% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.15);
    }
}

.logo-particle-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    z-index: 2;
    animation: particleRotate 25s linear infinite;
}

.logo-particle-ring::before,
.logo-particle-ring::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: rgba(255, 69, 0, 0.4);
    border-right-color: rgba(32, 178, 170, 0.3);
    border-bottom-color: rgba(255, 140, 0, 0.25);
    border-left-color: rgba(255, 215, 0, 0.2);
}

.logo-particle-ring.ring-2 {
    animation: particleRotateReverse 30s linear infinite;
    z-index: 3;
}

.logo-particle-ring.ring-2::before,
.logo-particle-ring.ring-2::after {
    border-width: 2px;
    border-top-color: rgba(32, 178, 170, 0.35);
    border-right-color: rgba(255, 69, 0, 0.3);
    border-bottom-color: rgba(255, 215, 0, 0.25);
    border-left-color: rgba(255, 140, 0, 0.2);
}

logo-particle-ring.ring-2::after {
    transform: translate(-50%, -50%) rotate(45deg);
}

@keyframes particleRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes particleRotateReverse {
    from { transform: translate(-50%, -50%) rotate(360deg); }
    to { transform: translate(-50%, -50%) rotate(0deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(1.5rem, 3.5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 15px;
    margin-top: 0;
    letter-spacing: 3px;
    background: var(--gradient-island);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    filter: drop-shadow(0 0 30px rgba(255, 69, 0, 0.3));
    animation: titleGlow 3s ease-in-out infinite alternate;
    position: relative;
    z-index: 25;
}

@keyframes titleGlow {
    0% {
        filter: drop-shadow(0 0 30px rgba(255, 69, 0, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 50px rgba(255, 140, 0, 0.5));
    }
}

/* Additional pulse ring for more dynamic effect */
.pulse-ring.pulse-ring-3 {
    animation: pulse3 2.5s ease-out infinite 0.5s;
}

@keyframes pulse3 {
    0% {
        transform: translate(-50%, -50%) scale(0.1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 300;
    margin-bottom: 25px;
    letter-spacing: 4px;
    color: var(--text-gray);
    background: var(--gradient-teal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 25;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 25;
}

.btn {
    padding: 12px 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid;
}

.btn-primary {
    background: var(--gradient-island);
    color: var(--text-dark);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(255, 69, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border-color: var(--accent-primary);
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.2);
}

.btn-secondary:hover {
    background: var(--accent-primary);
    color: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(255, 69, 0, 0.4);
}

.wave-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%230f0f0f' d='M0,60 C360,120 720,0 1080,60 C1260,90 1380,60 1440,60 L1440,120 L0,120 Z'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
    opacity: 0.6;
}

.wave-decoration::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%230f0f0f' d='M0,60 C360,120 720,0 1080,60 C1260,90 1380,60 1440,60 L1440,120 L0,120 Z'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
    opacity: 0.4;
    transform: translateX(-20px);
}

/* ===== SECTION STYLES ===== */
section {
    padding: 120px 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 4px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    width: 100%;
    background: var(--gradient-island);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background: var(--gradient-island);
    margin: 20px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.5);
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--gradient-urban);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-island);
    box-shadow: 0 0 30px rgba(255, 69, 0, 0.5);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 25px;
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-gray);
}

.about-text p:first-child::first-letter {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-island);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    float: left;
    line-height: 1;
    margin-right: 10px;
}

.about-logo img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-glow);
    border: var(--border-glow);
}

/* ===== ARTISTS SECTION ===== */
.artists {
    background: var(--primary-dark);
    position: relative;
}

.artists::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 69, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(32, 178, 170, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1100px) {
    .artists-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

.artist-card {
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: var(--border-glow);
}

.artist-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-glow);
    border-color: rgba(255, 69, 0, 0.5);
}

.artist-image {
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    position: relative;
    overflow: hidden;
}

.artist-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 69, 0, 0.1), transparent, rgba(32, 178, 170, 0.1), transparent);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.artist-placeholder {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    font-weight: 800;
    color: var(--text-light);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
    box-shadow: 0 0 40px rgba(255, 69, 0, 0.3);
}

.artist-placeholder.caliway {
    background: var(--gradient-island);
}

.artist-placeholder.leah {
    background: var(--gradient-teal);
}

.artist-placeholder.jennify {
    background: linear-gradient(135deg, #c471ed 0%, #f64f59 50%, #ff8c00 100%);
}

.artist-initial {
    font-size: 4.5rem;
}

.artist-info {
    padding: 35px;
}

.artist-name {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: var(--gradient-island);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.artist-genre {
    font-size: 0.85rem;
    color: var(--accent-teal);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

.artist-bio {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.artist-tracks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.track {
    background: rgba(255, 69, 0, 0.15);
    border: 1px solid rgba(255, 69, 0, 0.4);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    color: var(--accent-primary);
    font-weight: 500;
    transition: all 0.3s ease;
}

.track:hover {
    background: var(--accent-primary);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
}

.spotify-link {
    display: inline-flex;
    align-items: center;
    padding: 12px 35px;
    background: linear-gradient(135deg, #1db954 0%, #1ed760 100%);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 20px rgba(29, 185, 84, 0.3);
}

.spotify-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(29, 185, 84, 0.5);
}

.spotify-link span {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* ===== MUSIC SECTION ===== */
.music {
    background: var(--gradient-urban);
    position: relative;
}

.music::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 20%, rgba(255, 69, 0, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.tracks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.track-card {
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: var(--border-glow);
}

.track-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(255, 69, 0, 0.5);
}

.track-cover {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    position: relative;
    overflow: hidden;
}

.cover-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cover-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.cover-1 {
    background: var(--gradient-island);
}

.cover-2 {
    background: var(--gradient-teal);
}

.cover-3 {
    background: var(--gradient-warm);
}

.cover-icon {
    font-size: 4.5rem;
    z-index: 1;
}

.track-info {
    padding: 30px;
}

.track-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-light);
    background: var(--gradient-island);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.track-artist {
    font-size: 1rem;
    color: var(--accent-teal);
    margin-bottom: 20px;
    font-weight: 500;
}

.stream-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: transparent;
    color: var(--accent-primary);
    text-align: center;
    text-decoration: none;
    border: 2px solid var(--accent-primary);
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.stream-btn:hover {
    background: var(--accent-primary);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 69, 0, 0.4);
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: var(--primary-dark);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 70% 80%, rgba(32, 178, 170, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.contact-info p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: var(--text-light);
    padding: 15px;
    background: rgba(255, 69, 0, 0.05);
    border: var(--border-glow);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 69, 0, 0.1);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 1.6rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    background: var(--secondary-dark);
    border: 1px solid rgba(255, 69, 0, 0.2);
    border-radius: 12px;
    padding: 18px 22px;
    font-size: 1rem;
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 25px rgba(255, 69, 0, 0.2);
    background: var(--primary-dark);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gradient-urban);
    padding: 50px 0;
    border-top: 3px solid var(--gradient-island);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-island);
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.5);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.footer-logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255, 69, 0, 0.4));
}

.footer-text p {
    margin: 8px 0;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.footer-text p:last-child {
    color: var(--accent-teal);
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 12px 25px;
    border: 1px solid rgba(255, 69, 0, 0.3);
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(255, 69, 0, 0.1);
}

.social-link:hover {
    background: var(--gradient-island);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 69, 0, 0.4);
}

/* ===== RESPONSIVE DESIGN ===== */
/* ===== RESPONSIVE STYLES (consolidated below) ===== */

/* ===== ANIMATIONS ===== */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-secondary);
}

/* ===== WATERMARK BACKGROUND ===== */
/* Pulse Ring Animation */
.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 2px solid rgba(255, 69, 0, 0.3);
    border-radius: 50%;
    animation: pulse 2.5s ease-out infinite;
    pointer-events: none;
}

.pulse-ring-2 {
    animation-delay: 0.5s;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}


/* ============================================================
   HAMBURGER BUTTON
   ============================================================ */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
    flex-shrink: 0;
}

.ham-line {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--accent-secondary);
    border-radius: 3px;
    transition: all 0.35s ease;
    transform-origin: center;
}

/* Hamburger → X animation */
.hamburger.open .ham-line:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}
.hamburger.open .ham-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.open .ham-line:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

/* Prevent body scroll when mobile menu is open */
body.menu-active {
    overflow: hidden;
}

/* ============================================================
   TABLET  ≤ 968px
   ============================================================ */
@media (max-width: 968px) {

    /* --- Layout --- */
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .artists-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 28px;
    }

    .tracks-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 24px;
    }

    /* --- Navbar --- */
    .navbar,
    .navbar.navbar-expanded {
        padding: 15px 30px;
        height: auto;
    }

    .nav-links {
        gap: 22px;
    }

    .nav-links a {
        font-size: 12px;
        letter-spacing: 1px;
    }

    /* --- Hero vinyl & logo scale --- */
    .vinyl-record {
        width: 520px;
        height: 520px;
    }

    @keyframes vinylSpin {
        0%   { transform: translate(-50%, -50%) rotate(0deg); }
        100% { transform: translate(-50%, -50%) rotate(360deg); }
    }

    .main-logo-img {
        width: 440px;
    }

    .logo-artistic-glow {
        width: 650px;
        height: 650px;
    }

    .logo-particle-ring {
        width: 750px;
        height: 750px;
    }

    /* --- Speakers tablet --- */
    .speaker-left-fixed,
    .speaker-right-fixed {
        width: 160px;
        height: 370px;
    }

    .speaker-left-fixed  { left: 10px; }
    .speaker-right-fixed { right: 10px; }

    .spk-top-section {
        width: 135px;
        height: 135px;
        top: 18px;
    }

    .spk-woofer {
        width: 135px;
        height: 135px;
    }

    .spk-woofer::before { width: 118px; height: 118px; }
    .spk-woofer::after  { width: 102px; height: 102px; }

    .spk-cone {
        width: 80px;
        height: 80px;
    }

    .spk-dustcap {
        width: 30px;
        height: 30px;
    }

    .spk-ring-1 { width: 115px; height: 115px; }
    .spk-ring-2 { width: 140px; height: 140px; }
    .spk-ring-3 { width: 165px; height: 165px; }

    .spk-divider {
        top: 168px;
    }

    .spk-bottom-section {
        width: 76px;
        height: 76px;
        bottom: 18px;
    }

    .spk-tweeter {
        width: 68px;
        height: 68px;
    }

    .spk-tweeter-dome {
        width: 26px;
        height: 26px;
    }

    .spk-brand {
        bottom: 103px;
        font-size: 10px;
        letter-spacing: 3px;
    }
}

/* ============================================================
   MOBILE  ≤ 768px
   ============================================================ */
@media (max-width: 768px) {

    /* --- Hamburger visible, nav links hidden by default --- */
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(20px);
        z-index: 1050;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-20px);
        transition: opacity 0.35s ease, transform 0.35s ease;
    }

    .nav-links.nav-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-links a {
        font-size: 1.3rem;
        letter-spacing: 4px;
        padding: 10px 0;
    }

    .nav-links a::after {
        height: 2px;
    }

    /* --- Navbar layout --- */
    .navbar,
    .navbar.navbar-expanded {
        padding: 12px 20px;
        height: auto;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .nav-logo-large {
        width: 140px;
    }

    /* --- Hero section --- */
    .hero {
        min-height: 100vh;
        height: 100vh;
    }

    /* Vinyl record — scaled to fit mobile */
    .vinyl-record {
        width: 320px;
        height: 320px;
    }

    /* Logo centered on vinyl */
    .main-logo-img {
        width: 260px;
        max-width: 80vw;
    }

    .logo-artistic-glow {
        width: 380px;
        height: 380px;
    }

    .logo-particle-ring {
        width: 450px;
        height: 450px;
    }

    /* Pulse rings scale with vinyl */
    .pulse-ring {
        width: 180px;
        height: 180px;
    }

    /* --- Speakers: repositioned to flank vinyl tightly on mobile --- */
    .speaker-left-fixed,
    .speaker-right-fixed {
        width: 72px;
        height: 200px;
        top: 50%;
        transform: translateY(-50%);
    }

    .speaker-left-fixed  { left: 4px; }
    .speaker-right-fixed { right: 4px; }

    /* Scale all inner speaker parts proportionally */
    .spk-cabinet {
        border-radius: 12px;
        border-width: 1.5px;
    }

    .spk-top-section {
        width: 54px;
        height: 54px;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
    }

    .spk-woofer {
        width: 54px;
        height: 54px;
        border-width: 2px;
    }

    .spk-woofer::before { width: 46px; height: 46px; }
    .spk-woofer::after  { width: 38px; height: 38px; }

    .spk-cone {
        width: 30px;
        height: 30px;
    }

    .spk-dustcap {
        width: 12px;
        height: 12px;
    }

    .spk-ring-1 { width: 46px;  height: 46px; }
    .spk-ring-2 { width: 58px;  height: 58px; }
    .spk-ring-3 { width: 70px;  height: 70px; }

    .spk-divider {
        top: 74px;
        left: 6px;
        right: 6px;
    }

    .spk-bottom-section {
        width: 38px;
        height: 38px;
        bottom: 8px;
    }

    .spk-tweeter {
        width: 34px;
        height: 34px;
        border-width: 2px;
    }

    .spk-tweeter-dome {
        width: 12px;
        height: 12px;
    }

    .spk-brand {
        bottom: 54px;
        font-size: 6px;
        letter-spacing: 1px;
    }

    /* --- Hero content (title + buttons) --- */
    .hero-content {
        bottom: 40px;
        width: 95%;
        padding: 8px 12px;
    }

    .hero-title {
        font-size: 1.2rem;
        letter-spacing: 2px;
        margin-bottom: 8px;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 2px;
        margin-bottom: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 20px;
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    /* --- Section general --- */
    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
        letter-spacing: 3px;
        margin-bottom: 40px;
    }

    /* --- Artists --- */
    .artists-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .artist-image {
        height: 240px;
    }

    .artist-placeholder {
        width: 160px;
        height: 160px;
    }

    .artist-initial {
        font-size: 3.5rem;
    }

    .artist-info {
        padding: 24px;
    }

    .artist-name {
        font-size: 1.7rem;
    }

    /* --- Music/Tracks --- */
    .tracks-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* --- About --- */
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-logo img {
        max-width: 200px;
        margin: 0 auto;
        display: block;
    }

    /* --- Contact --- */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 0.9rem;
    }

    /* --- Footer --- */
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }

    .footer-logo-img {
        max-width: 160px;
    }

    .social-links {
        justify-content: center;
        gap: 16px;
    }

    /* --- Gradient spheres dimmed on mobile --- */
    .gradient-sphere {
        opacity: 0.25;
    }

    .gradient-1 { width: 300px; height: 300px; }
    .gradient-2 { width: 250px; height: 250px; }
    .gradient-3 { width: 200px; height: 200px; }
}

/* ============================================================
   SMALL PHONES  ≤ 480px
   ============================================================ */
@media (max-width: 480px) {

    .nav-logo-large {
        width: 120px;
    }

    /* Vinyl even tighter on small phones */
    .vinyl-record {
        width: 270px;
        height: 270px;
    }

    .main-logo-img {
        width: 220px;
        max-width: 75vw;
    }

    .logo-artistic-glow {
        width: 320px;
        height: 320px;
    }

    .logo-particle-ring {
        width: 380px;
        height: 380px;
    }

    /* Speakers tight against edges */
    .speaker-left-fixed,
    .speaker-right-fixed {
        width: 58px;
        height: 165px;
    }

    .spk-top-section {
        width: 44px;
        height: 44px;
        top: 7px;
    }

    .spk-woofer {
        width: 44px;
        height: 44px;
    }

    .spk-woofer::before { width: 36px; height: 36px; }
    .spk-woofer::after  { width: 28px; height: 28px; }

    .spk-cone      { width: 22px; height: 22px; }
    .spk-dustcap   { width: 9px;  height: 9px;  }

    .spk-ring-1 { width: 36px; height: 36px; }
    .spk-ring-2 { width: 46px; height: 46px; }
    .spk-ring-3 { width: 56px; height: 56px; }

    .spk-divider { top: 60px; }

    .spk-bottom-section { width: 30px; height: 30px; bottom: 7px; }
    .spk-tweeter        { width: 26px; height: 26px; }
    .spk-tweeter-dome   { width: 10px; height: 10px; }

    .spk-brand {
        display: none;
    }

    .hero-title {
        font-size: 1rem;
        letter-spacing: 1.5px;
    }

    .hero-subtitle {
        font-size: 0.68rem;
        letter-spacing: 1.5px;
    }

    .hero-content {
        bottom: 30px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .artist-name {
        font-size: 1.5rem;
    }

    .gradient-sphere {
        opacity: 0.2;
    }
}

/* ============================================================
   EXTRA SMALL  ≤ 375px  (iPhone SE etc.)
   ============================================================ */
@media (max-width: 375px) {

    .vinyl-record {
        width: 230px;
        height: 230px;
    }

    .main-logo-img {
        width: 190px;
        max-width: 72vw;
    }

    .logo-artistic-glow  { width: 270px; height: 270px; }
    .logo-particle-ring  { width: 320px; height: 320px; }

    .speaker-left-fixed,
    .speaker-right-fixed {
        width: 48px;
        height: 140px;
    }

    .spk-top-section    { width: 36px; height: 36px; top: 6px; }
    .spk-woofer         { width: 36px; height: 36px; }
    .spk-woofer::before { width: 28px; height: 28px; }
    .spk-woofer::after  { width: 20px; height: 20px; }
    .spk-cone           { width: 16px; height: 16px; }
    .spk-dustcap        { width: 6px;  height: 6px;  }
    .spk-ring-1         { width: 28px; height: 28px; }
    .spk-ring-2         { width: 36px; height: 36px; }
    .spk-ring-3         { width: 44px; height: 44px; }
    .spk-divider        { top: 50px; }
    .spk-bottom-section { width: 24px; height: 24px; bottom: 6px; }
    .spk-tweeter        { width: 20px; height: 20px; }
    .spk-tweeter-dome   { width: 8px;  height: 8px;  }
    .spk-brand          { display: none; }

    .hero-content {
        bottom: 24px;
    }

    .hero-title {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }

    .btn {
        font-size: 0.72rem;
        padding: 12px 16px;
        letter-spacing: 1.5px;
    }
}
