/* Brachmond Website - Static CSS */
/* Font: System fonts only - no external fonts */

:root {
    --color-bg: #000000;
    --color-bg-section: #0f0f0f;
    --color-text: #d8d8d8;
    --color-heading: #ffffff;
    --color-accent: #fdc04b;
    --color-link: #d8d8d8;
    --color-link-hover: #fdc04b;
    --color-border: #ffffff;
    --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    --font-heading: Georgia, "Times New Roman", serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

a {
    color: var(--color-link);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-link-hover);
}

img {
    max-width: 100%;
    height: auto;
}

/* Typography */
h1 {
    font-size: 23px;
    color: var(--color-heading);
    line-height: 1.4;
}

h2 {
    font-size: 20px;
    color: var(--color-accent);
    line-height: 1.4;
    margin-bottom: 15px;
}

h3 {
    font-size: 18px;
    color: var(--color-heading);
    line-height: 1.4;
}

p {
    margin-bottom: 1em;
}

/* Container */
.container {
    max-width: 1516px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--color-bg);
    padding: 0 50px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid transparent;
}

.header-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    position: relative;
}

.logo {
    max-width: 400px;
    max-height: 50px;
}

.logo img {
    height: 50px;
    width: auto;
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 0;
}

nav ul li a {
    display: block;
    padding: 0 17px;
    line-height: 50px;
    color: var(--color-text);
    font-size: 14px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--color-accent);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-heading);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Main content */
main {
    min-height: 100vh;
}

/* Social Links Header */
.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 25px 0;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #e4e4e4;
    border-radius: 9999px;
    color: #000;
    transition: transform 0.2s ease;
}

.social-links a:hover {
    transform: scale(1.1);
}

.social-links svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Spacer */
.spacer {
    height: 50px;
}

.spacer-large {
    height: 100px;
}

/* Media Text Sections */
.media-text {
    display: grid;
    grid-template-columns: 50% 1fr;
    background-color: var(--color-bg-section);
    gap: 0;
}

.media-text.media-right {
    grid-template-columns: auto 40%;
}

.media-text.media-left {
    grid-template-columns: 40% auto;
}

.media-text__content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.media-text__media {
    width: 100%;
}

.media-text__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Blockquote */
blockquote {
    border-left: 4px solid var(--color-border);
    padding-left: 1em;
    margin: 1em 0;
}

blockquote h2 {
    color: var(--color-accent);
    margin-bottom: 0;
}

blockquote p {
    color: var(--color-text);
    margin: 0;
}

/* Discography */
.discography {
    padding: 0 20px;
}

.disco-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2em;
    margin-bottom: 2em;
}

.disco-entry {
    display: grid;
    grid-template-columns: 33.33% 1fr;
    gap: 1em;
}

.disco-entry__cover {
    width: 100%;
}

.disco-entry__cover img {
    width: 100%;
    height: auto;
    display: block;
}

.disco-entry__info h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.disco-entry__info p {
    font-size: 14px;
    line-height: 1.6;
}

/* Social Links for Albums */
.album-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.album-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #1bd760;
    border-radius: 50%;
    color: #fff;
    transition: transform 0.2s ease;
}

.album-links a:hover {
    transform: scale(1.1);
}

.album-links a.spotify {
    background-color: #1bd760;
}

.album-links a.youtube {
    background-color: red;
}

.album-links a.amazon {
    background-color: #f90;
}

.album-links a.link {
    background-color: #f0f0f0;
    color: #444;
}

.album-links svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Buy Button */
.btn-buy {
    display: inline-block;
    background-color: var(--color-heading);
    color: var(--color-bg);
    padding: 10px 20px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
    transition: background-color 0.3s ease;
}

.btn-buy:hover {
    background-color: var(--color-accent);
    color: var(--color-bg);
}

/* Contact Section */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2em;
    padding: 40px 20px;
    text-align: center;
}

.contact-section h2 {
    margin-bottom: 20px;
}

.contact-section p {
    margin-bottom: 10px;
}

.contact-section strong {
    color: var(--color-heading);
}

.label-logo {
    max-width: 300px;
    margin: 20px auto;
}

/* Footer */
footer {
    background-color: var(--color-bg);
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-menu {
    margin-bottom: 15px;
}

.footer-menu a {
    color: var(--color-text);
    font-size: 12px;
}

.footer-menu a:hover {
    color: var(--color-link-hover);
}

.copyright {
    font-size: 12px;
    color: #888;
}

/* Scroll to top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-heading);
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 20px;
}

.scroll-top.visible {
    opacity: 1;
}

.scroll-top:hover {
    background-color: rgba(255,255,255,0.2);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(25, 25, 25, 0.96);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu nav ul {
    display: flex;
    flex-direction: column;
    text-align: center;
    list-style: none;
}

.mobile-menu nav ul li a {
    font-size: 18px;
    padding: 15px 0;
    line-height: 1.5;
}

.mobile-menu .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--color-heading);
    font-size: 30px;
    cursor: pointer;
}

/* Tour dates styling */
.tour-dates p {
    font-size: 14px;
    margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .disco-item {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0 20px;
    }
    
    .logo img {
        max-height: 30px;
        max-width: 226px;
    }
    
    nav ul {
        display: none;
    }
    
    .mobile-menu nav ul {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
        position: absolute;
        right: 0;
    }
    
    .media-text,
    .media-text.media-right,
    .media-text.media-left {
        grid-template-columns: 1fr;
    }
    
    .media-text.media-right .media-text__content {
        order: 2;
    }
    
    .media-text.media-right .media-text__media {
        order: 1;
    }
    
    .disco-entry {
        grid-template-columns: 1fr;
    }
    
    .disco-entry__cover {
        max-width: 300px;
    }
    
    .contact-section {
        grid-template-columns: 1fr;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .spacer-large {
        height: 50px;
    }
    
    h2 {
        font-size: 18px;
    }
    
    .media-text__content {
        padding: 1rem;
    }
}

/* Featured Release - Tanz der Elemente */
.featured-release {
    display: grid;
    grid-template-columns: 33.33% 1fr;
    gap: 2em;
    margin-bottom: 2em;
    padding: 0 20px;
}

.featured-release__cover {
    width: 100%;
}

.featured-release__cover img {
    width: 100%;
    height: auto;
}

.featured-release__info h2 {
    margin-bottom: 15px;
}

.featured-release__info p {
    margin-bottom: 20px;
}

/* Featured Release Mobile */
@media (max-width: 768px) {
    .featured-release {
        grid-template-columns: 1fr;
    }
    
    .featured-release__cover {
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Screen reader text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* =============================================
   ANIMATIONS & VISUAL ENHANCEMENTS
   ============================================= */

/* Fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Stagger animation for disco entries */
.disco-item .disco-entry:nth-child(2) .fade-in {
    transition-delay: 0.15s;
}

/* Image hover effects */
.media-text__media img,
.disco-entry__cover img,
.featured-release__cover img {
    transition: transform 0.4s ease, filter 0.4s ease;
}

.media-text__media:hover img,
.disco-entry__cover:hover img,
.featured-release__cover:hover img {
    transform: scale(1.03);
    filter: brightness(1.1);
}

/* Subtle glow effect on accent elements */
.album-links a:hover {
    box-shadow: 0 0 15px rgba(253, 196, 75, 0.3);
}

/* Navigation link underline animation */
header nav a {
    position: relative;
}

header nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease, left 0.3s ease;
}

header nav a:hover::after {
    width: 100%;
    left: 0;
}

/* Social links pulse on hover */
.social-links a:hover svg {
    animation: pulse 0.5s ease;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* Section background gradient overlay */
.media-text {
    position: relative;
}

.media-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: -1;
}

/* Blockquote accent enhancement */
blockquote h2 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

blockquote::before {
    background: linear-gradient(180deg, var(--color-accent) 0%, rgba(253, 196, 75, 0.6) 100%);
}

/* Card-like styling for disco entries */
.disco-entry {
    background: rgba(15, 15, 15, 0.8);
    border-radius: 8px;
    padding: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.disco-entry:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Featured release special styling */
.featured-release {
    background: linear-gradient(135deg, rgba(253, 196, 75, 0.05) 0%, transparent 50%);
    border: 1px solid rgba(253, 196, 75, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.featured-release::before {
    content: 'NEU';
    position: absolute;
    top: 12px;
    right: -40px;
    background: var(--color-accent);
    color: #000;
    padding: 6px 50px;
    font-size: 11px;
    font-weight: bold;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

/* Contact section card styling */
.contact-section > div {
    background: rgba(15, 15, 15, 0.6);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s ease;
}

.contact-section > div:hover {
    border-color: rgba(253, 196, 75, 0.3);
}

/* Button enhancements */
.btn-buy {
    position: relative;
    overflow: hidden;
}

.btn-buy::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-buy:hover::before {
    left: 100%;
}

/* Scroll indicator animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

.scroll-top:hover {
    animation: bounce 1s ease infinite;
}

/* Subtle noise texture overlay for body */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    z-index: 9999;
}

/* =============================================
   LIGHTBOX
   ============================================= */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox__img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox__img {
    transform: scale(1);
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 50px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    z-index: 10001;
}

.lightbox__close:hover {
    color: var(--color-accent);
    transform: rotate(90deg);
}

.lightbox__prev,
.lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    padding: 20px 15px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    z-index: 10001;
}

.lightbox__prev {
    left: 20px;
    border-radius: 0 4px 4px 0;
}

.lightbox__next {
    right: 20px;
    border-radius: 4px 0 0 4px;
}

.lightbox__prev:hover,
.lightbox__next:hover {
    background: var(--color-accent);
    color: #000;
}

.lightbox__caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 16px;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 25px;
    border-radius: 4px;
    max-width: 80%;
}

/* Lightbox responsive */
@media (max-width: 768px) {
    .lightbox__prev,
    .lightbox__next {
        font-size: 30px;
        padding: 15px 10px;
    }
    
    .lightbox__prev {
        left: 10px;
    }
    
    .lightbox__next {
        right: 10px;
    }
    
    .lightbox__close {
        top: 15px;
        right: 20px;
        font-size: 40px;
    }
    
    .lightbox__caption {
        font-size: 14px;
        bottom: 20px;
    }
}

/* =============================================
   ADVANCED DESIGN FEATURES
   ============================================= */

/* Custom Cursor */
@media (pointer: fine) {
    body {
        cursor: none;
    }
    
    a, button, .disco-entry__cover, .featured-release__cover {
        cursor: none;
    }
}

/* Cursor Dot - Center Point */
.custom-cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 100000;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 8px var(--color-accent), 0 0 15px rgba(253, 196, 75, 0.5);
}

/* Cursor Crescent Moon - Brachmond Style (wie das O im Logo) */
.custom-cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.custom-cursor::before {
    content: '';
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    /* Große Sichel mit viel Erdschatten: 9px rechts, 7px unten, -6px spread für sehr dünne Sichel */
    box-shadow: 9px 7px 0 -6px var(--color-accent);
    transform: rotate(25deg);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.custom-cursor.cursor-hover {
    transform: translate(-50%, -50%) scale(1.3);
}

.custom-cursor.cursor-hover::before {
    box-shadow: 9px 7px 0 -6px var(--color-accent),
                0 0 20px var(--color-accent),
                0 0 40px rgba(253, 196, 75, 0.4);
    animation: moon-glow 1s ease-in-out infinite alternate;
}

@keyframes moon-glow {
    0% { 
        box-shadow: 9px 7px 0 -6px var(--color-accent),
                    0 0 15px var(--color-accent);
    }
    100% { 
        box-shadow: 9px 7px 0 -6px var(--color-accent),
                    0 0 30px var(--color-accent),
                    0 0 50px rgba(253, 196, 75, 0.5);
    }
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), #ff8c00, var(--color-accent));
    background-size: 200% 100%;
    animation: shimmer 2s linear infinite;
    z-index: 10001;
    box-shadow: 0 0 10px var(--color-accent), 0 0 20px rgba(253, 196, 75, 0.5);
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Logo Glitch Effect */
.logo {
    position: relative;
}

.logo img {
    position: relative;
    animation: logo-float 6s ease-in-out infinite;
}

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

.logo:hover img {
    animation: glitch 0.5s ease infinite;
}

@keyframes glitch {
    0% {
        transform: translate(0);
        filter: hue-rotate(0deg);
    }
    10% {
        transform: translate(-2px, 2px);
        filter: hue-rotate(90deg);
    }
    20% {
        transform: translate(2px, -2px);
        filter: hue-rotate(180deg);
    }
    30% {
        transform: translate(-2px, -2px);
        filter: hue-rotate(270deg);
    }
    40% {
        transform: translate(2px, 2px);
        filter: hue-rotate(360deg);
    }
    50% {
        transform: translate(-1px, 1px);
        filter: hue-rotate(90deg);
    }
    60% {
        transform: translate(1px, -1px);
        filter: hue-rotate(0deg);
    }
    70% {
        transform: translate(-1px, -1px);
    }
    80% {
        transform: translate(1px, 1px);
    }
    90% {
        transform: translate(-1px, 1px);
    }
    100% {
        transform: translate(0);
        filter: hue-rotate(0deg);
    }
}

/* Parallax Effect */
.parallax-img {
    transition: transform 0.1s ease-out;
    will-change: transform;
}

/* Floating Particles Background */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0;
    animation: particle-float 15s infinite ease-in-out;
}

@keyframes particle-float {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translateY(-20vh) scale(1);
    }
}

/* Text Reveal Animation */
.reveal-text {
    overflow: hidden;
}

.reveal-text span {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease;
}

.reveal-text.revealed span {
    transform: translateY(0);
    opacity: 1;
}

/* Section Title Glow */
.discography h2,
.contact-section h2 {
    text-shadow: 0 0 20px rgba(253, 196, 75, 0.3);
}

/* Enhanced Album Cover Effects */
.disco-entry__cover img,
.featured-release__cover img {
    filter: grayscale(20%);
    transition: filter 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.disco-entry:hover .disco-entry__cover img,
.featured-release__cover:hover img {
    filter: grayscale(0%) brightness(1.1);
    box-shadow: 0 20px 40px rgba(253, 196, 75, 0.2);
}

/* Magnetic Button Effect */
.btn-buy, .album-links a {
    position: relative;
    transition: transform 0.3s ease;
}

/* Section Divider */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    margin: 4rem 0;
    opacity: 0.5;
}

/* Animated Border on Featured Release */
.featured-release {
    position: relative;
}

.featured-release::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--color-accent), transparent, var(--color-accent), transparent);
    background-size: 400% 400%;
    border-radius: 14px;
    z-index: -1;
    animation: gradient-border 8s ease infinite;
    opacity: 0.5;
}

@keyframes gradient-border {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Hover Lift Effect for All Cards */
.media-text,
.disco-entry,
.featured-release,
.contact-section > div {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.media-text:hover,
.featured-release:hover {
    transform: translateY(-5px);
}

/* Glowing Social Icons */
.social-links a:hover {
    filter: drop-shadow(0 0 15px var(--color-accent));
}

/* Footer Gradient Line */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

footer {
    position: relative;
}

/* Responsive: Disable custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
    .custom-cursor,
    .custom-cursor-dot {
        display: none !important;
    }
    
    body, a, button {
        cursor: auto;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scroll-progress {
        animation: none;
        background: var(--color-accent);
    }
    
    .particle {
        display: none;
    }
}
