/* ========================================
   DJ Website - Hauptstylesheet
   Mobile First Approach
   ======================================== */

/* ========================================
   CSS Variables - Quiet Luxury 2025-26
   ======================================== */
:root {
    /* Primärfarben - Warm & Edel (Pantone 2025: Mocha Mousse) */
    --primary-color: #A67C52;      /* Mocha Mousse - Warm Brown */
    --primary-dark: #8B6239;        /* Darker Mocha */
    --primary-light: #C4A57B;       /* Light Caramel */
    --secondary-color: #F5F0E8;     /* Warm Off-White */
    --secondary-dark: #E8DFD3;      /* Warm Beige */
    --secondary-light: #FDFBF7;     /* Soft Cream */
    --accent-color: #D4A574;        /* Soft Gold */
    --accent-dark: #B8935F;         /* Deep Gold */
    --accent-light: #E8C9A0;        /* Light Gold */
    
    /* Text - Warm Neutrals */
    --text-primary: #2C1810;        /* Rich Dark Brown */
    --text-secondary: #5C4A3D;      /* Medium Brown */
    --text-light: #8B7355;          /* Light Brown */
    --text-white: #FFFFFF;
    --text-dark: #1A0F08;           /* Very Dark Brown */
    
    /* Backgrounds - Warm & Light */
    --bg-primary: #FAF8F5;          /* Warm White Background */
    --bg-secondary: #F5F0E8;        /* Light Beige */
    --bg-dark: #2C1810;             /* Dark Brown for contrast */
    --bg-card: #FFFFFF;             /* Pure White Cards */
    --bg-luxury: linear-gradient(135deg, #FAF8F5 0%, #F5F0E8 100%);
    --bg-glass: rgba(255, 255, 255, 0.3);  /* Mehr Transparenz für Glassmorphism */
    --bg-glass-hover: rgba(255, 255, 255, 0.5);  /* Hover-State für Glass */
    
    /* Borders & Effects */
    --border-color: rgba(166, 124, 82, 0.15);  /* Subtle Mocha */
    --border-accent: var(--primary-color);
    --border-radius: 16px;          /* Soft, modern radius */
    --border-radius-lg: 24px;
    
    /* Shadows - Soft & Warm */
    --shadow-sm: 0 2px 8px rgba(44, 24, 16, 0.04);
    --shadow-md: 0 8px 24px rgba(44, 24, 16, 0.06);
    --shadow-lg: 0 16px 48px rgba(44, 24, 16, 0.08);
    --shadow-xl: 0 24px 64px rgba(44, 24, 16, 0.10);
    --shadow-glow: 0 0 40px rgba(166, 124, 82, 0.15);
    --shadow-glass: 0 8px 32px rgba(44, 24, 16, 0.12);
    
    /* Typography Scale */
    --font-primary: 'Poppins', 'SF Pro Display', -apple-system, sans-serif;
    --font-serif: 'Playfair Display', 'Georgia', serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.4rem;
    --font-size-2xl: 1.75rem;
    --font-size-3xl: 2.5rem;
    --font-size-4xl: 3.5rem;
    --font-size-5xl: 4.5rem;
    --font-size-hero: clamp(3rem, 10vw, 6rem);
    
    /* Abstände */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Animationen */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
    
    /* Z-Index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

/* Dark Mode Variables */
@media (prefers-color-scheme: dark) {
    :root {
        --text-primary: #f9fafb;
        --text-secondary: #d1d5db;
        --text-light: #9ca3af;
        --bg-primary: #1f2937;
        --bg-secondary: #111827;
        --bg-card: #374151;
        --border-color: #4b5563;
    }
}

/* ========================================
   Reset & Base Styles - Modern Luxury
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    position: relative;
    /* Subtle texture overlay */
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(166, 124, 82, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 165, 116, 0.02) 0%, transparent 50%);
    min-height: 100vh;
}

/* ========================================
   Typography - Modern Luxury 2025-26
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

h1 {
    font-size: var(--font-size-hero);
    font-weight: 300;
    line-height: 0.95;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
}

h3 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h4 {
    font-size: clamp(1.25rem, 3vw, 2rem);
}

p {
    margin-bottom: var(--spacing-md);
    font-weight: 400;
    color: var(--text-secondary);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all var(--transition-fast);
    position: relative;
}

a:hover {
    color: var(--primary-dark);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   Utility Classes - Modern Glassmorphism Buttons
   ======================================== */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: var(--font-size-sm);
    font-weight: 500;
    text-align: center;
    border-radius: 50px;
    transition: all var(--transition-normal) cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
    user-select: none;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.3), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-white);
    box-shadow: 0 4px 20px rgba(166, 124, 82, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(166, 124, 82, 0.35);
}

.btn-glass {
    background: var(--bg-glass);
    color: var(--text-primary);
    border: 1px solid rgba(166, 124, 82, 0.2);
    box-shadow: var(--shadow-glass);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}



/* ========================================
   GEMEINSAME ANIMATIONEN (Neu hinzugefügt)
   ======================================== */

/* Fade In */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Fade In Up */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slide In Left */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slide In Right */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Spin Animation */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Scale Up */
@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Slide Up */
@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ========================================
   Cookie Banner - Vollständige Styles
   ======================================== */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    padding: var(--spacing-xl);
    z-index: var(--z-modal);
    animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-content {
    text-align: center;
}

.cookie-content h3 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-lg);
    font-weight: 500;
}

.cookie-content p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

/* Details/Summary für Cookie-Info */
.cookie-details {
    margin: var(--spacing-md) 0;
    padding: var(--spacing-sm);
    background: rgba(166, 124, 82, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    text-align: left;
}

.cookie-details summary {
    cursor: pointer;
    font-weight: 500;
    color: var(--primary-color);
    padding: var(--spacing-xs);
    user-select: none;
    transition: color var(--transition-fast);
    font-size: var(--font-size-sm);
}

.cookie-details summary:hover {
    color: var(--primary-dark);
}

.cookie-details summary::marker {
    color: var(--primary-color);
}

.cookie-details[open] summary {
    margin-bottom: var(--spacing-sm);
}

.cookie-info {
    padding: var(--spacing-sm);
    font-size: var(--font-size-xs);
    line-height: 1.8;
    color: var(--text-secondary);
}

.cookie-info strong {
    color: var(--text-primary);
    font-weight: 600;
    display: inline-block;
    margin-right: var(--spacing-xs);
}

/* Cookie Options */
.cookie-options {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin: var(--spacing-lg) 0;
    text-align: left;
}

.cookie-option {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    padding: var(--spacing-xs);
    border-radius: var(--border-radius);
    transition: background var(--transition-fast);
    cursor: pointer;
}

.cookie-option:hover {
    background: rgba(166, 124, 82, 0.03);
}

.cookie-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.cookie-option input[type="checkbox"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-option span {
    flex: 1;
    user-select: none;
}

/* Cookie Buttons */
.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    align-items: stretch;
    margin-bottom: var(--spacing-md);
}

.btn-cookie-reject {
    padding: var(--spacing-sm) var(--spacing-lg);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-weight: 500;
    font-size: var(--font-size-sm);
    background: #6b7280;
    color: white;
    transition: all var(--transition-normal);
    cursor: pointer;
    font-family: var(--font-primary);
}

.btn-cookie-reject:hover {
    background: rgba(166, 124, 82, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.btn-cookie-accept {
    padding: var(--spacing-sm) var(--spacing-lg);
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 500;
    font-size: var(--font-size-sm);
    background: transparent;
    color: var(--primary-color);
    transition: all var(--transition-normal);
    cursor: pointer;
    font-family: var(--font-primary);
}

.btn-cookie-accept:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-cookie-all {
    padding: var(--spacing-sm) var(--spacing-lg);
    border: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: var(--font-size-sm);
    background: var(--primary-color);
    color: var(--text-white);
    transition: all var(--transition-normal);
    cursor: pointer;
    font-family: var(--font-primary);
}

.btn-cookie-all:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(166, 124, 82, 0.3);
}

/* Cookie Footer */
.cookie-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--border-color);
}

.cookie-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: var(--font-size-xs);
    transition: color var(--transition-fast);
}

.cookie-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-version {
    font-size: var(--font-size-xs);
    color: var(--text-light);
    opacity: 0.7;
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: calc(var(--z-modal) + 1);
    padding: var(--spacing-lg);
    animation: fadeIn 0.3s ease-out;
}

.cookie-settings-modal .modal-content {
    background: var(--bg-card);
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius-lg);
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-settings-modal h2 {
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
    font-size: var(--font-size-2xl);
    font-weight: 500;
}

.cookie-settings-list {
    margin: var(--spacing-lg) 0;
}

.cookie-setting {
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--border-color);
}

.cookie-setting:last-child {
    border-bottom: none;
}

.cookie-setting h3 {
    margin-bottom: var(--spacing-xs);
    font-size: var(--font-size-base);
    color: var(--text-primary);
    font-weight: 500;
}

.cookie-setting p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    line-height: 1.6;
}

.cookie-setting input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.modal-buttons {
    margin-top: var(--spacing-xl);
    display: flex;
    gap: var(--spacing-sm);
    justify-content: flex-end;
    flex-wrap: wrap;
}

.modal-buttons button {
    padding: var(--spacing-sm) var(--spacing-lg);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: var(--font-size-sm);
    font-weight: 500;
    transition: all var(--transition-normal);
    font-family: var(--font-primary);
}

.modal-buttons button:first-child {
    background: var(--primary-color);
    color: var(--text-white);
}

.modal-buttons button:first-child:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.modal-buttons button:nth-child(2) {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.modal-buttons button:nth-child(2):hover {
    background: var(--bg-primary);
}

.modal-buttons button:last-child {
    background: transparent;
    color: #ef4444;
    border: 1px solid #ef4444;
}

.modal-buttons button:last-child:hover {
    background: #ef4444;
    color: white;
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .cookie-banner {
        bottom: 0;
        left: 0;
        right: 0;
        max-width: 100%;
        border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
        padding: var(--spacing-lg);
    }
    
    .cookie-buttons {
        flex-direction: column-reverse;
        gap: var(--spacing-xs);
    }
    
    .cookie-buttons button {
        width: 100%;
        padding: var(--spacing-md) var(--spacing-lg);
    }
    
    /* Alle akzeptieren prominent */
    .btn-cookie-all {
        order: -1;
    }
    
    .cookie-footer {
        flex-direction: column;
        gap: var(--spacing-sm);
        align-items: center;
    }
    
    .cookie-settings-modal .modal-content {
        margin: var(--spacing-md);
        padding: var(--spacing-lg);
    }
    
    .modal-buttons {
        flex-direction: column;
    }
    
    .modal-buttons button {
        width: 100%;
    }
}

/* Tablet Breakpoint */
@media (min-width: 641px) and (max-width: 1024px) {
    .cookie-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .cookie-buttons button {
        flex: 1;
        min-width: 150px;
    }
}

/* Widerrufen Button */
.btn-cookie-revoke {
    padding: var(--spacing-sm) var(--spacing-lg);
    border: 1px solid #ef4444;
    border-radius: 50px;
    font-weight: 500;
    font-size: var(--font-size-sm);
    background: transparent;
    color: #ef4444;
    transition: all var(--transition-normal);
    cursor: pointer;
    font-family: var(--font-primary);
}

.btn-cookie-revoke:hover {
    background: #ef4444;
    color: white;
    transform: translateY(-1px);
}

/* Anpassung für Cookie-Buttons bei Settings */
.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

/* Mobile Anpassungen */
@media (max-width: 640px) {
    .cookie-buttons {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    
    .cookie-buttons button {
        width: 100%;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .cookie-banner {
        background: rgba(36, 39, 48, 0.98);
        border-color: rgba(212, 165, 116, 0.2);
    }
    
    .cookie-content h3 {
        color: var(--primary-light);
    }
    
    .cookie-details {
        background: rgba(212, 165, 116, 0.05);
        border-color: rgba(212, 165, 116, 0.15);
    }
    
    .cookie-option:hover {
        background: rgba(212, 165, 116, 0.08);
    }
    
    .btn-cookie-reject {
        border-color: rgba(212, 165, 116, 0.3);
        color: var(--text-secondary);
    }
    
    .btn-cookie-reject:hover {
        background: rgba(212, 165, 116, 0.1);
        border-color: var(--primary-color);
        color: var(--primary-color);
    }
    
    .cookie-settings-modal .modal-content {
        background: var(--bg-dark);
        color: var(--text-primary);
    }
    
    .cookie-setting {
        border-bottom-color: rgba(212, 165, 116, 0.1);
    }
}

/* Focus States für Barrierefreiheit */
.cookie-buttons button:focus-visible,
.cookie-option input:focus-visible,
.modal-buttons button:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Animation für Banner schließen */
@keyframes slideDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100px);
        opacity: 0;
    }
}

/* Smooth Scrollbar für Modal */
.cookie-settings-modal .modal-content::-webkit-scrollbar {
    width: 8px;
}

.cookie-settings-modal .modal-content::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 4px;
}

.cookie-settings-modal .modal-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.cookie-settings-modal .modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ========================================
   Navigation - Modern Glass 2025-26
   ======================================== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(250, 248, 245, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(166, 124, 82, 0.05);
    z-index: var(--z-sticky);
    transition: all var(--transition-normal);
}

.main-nav.scrolled {
    background: rgba(250, 248, 245, 0.95);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem var(--spacing-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: var(--font-size-xl);
    font-weight: 400;
    letter-spacing: -0.5px;
}

.nav-logo a {
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.nav-logo a:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: var(--z-modal);
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: all var(--transition-normal);
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
    transition: left var(--transition-normal);
    z-index: var(--z-fixed);
}

.nav-menu.active {
    left: 0;
}

.nav-menu li {
    margin: var(--spacing-lg) 0;
}

.nav-link {
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--text-primary);
    transition: all var(--transition-normal);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-normal);
    border-radius: 2px;
}

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

.nav-cta {
    background: var(--primary-color);
    color: var(--text-white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(166, 124, 82, 0.2);
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(166, 124, 82, 0.3);
}

/* ========================================
   Hero Section - Quiet Luxury 2025-26
   ======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 100px;
    background: var(--bg-primary);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        var(--bg-primary) 0%,
        rgba(245, 240, 232, 0.5) 50%,
        var(--bg-secondary) 100%);
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top right, rgba(212, 165, 116, 0.15), transparent 40%),
        radial-gradient(ellipse at bottom left, rgba(166, 124, 82, 0.1), transparent 40%);
    z-index: -1;
}

#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.4;
}

.hero-contentx {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--spacing-xl);
    max-width: 100%;
    margin: 0 auto;
}

.hero-title {
    margin-bottom: var(--spacing-2xl);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    display: block;
    font-family: var(--font-primary);
    font-size: var(--font-size-sm);
    font-weight: 500;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.9;
}

.hero-name {
    display: block;
    font-family: var(--font-serif);
    font-size: var(--font-size-hero);
    font-weight: 300;
    line-height: 0.9;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.03em;
}

.hero-name span {
    display: inline-block;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-2xl);
    opacity: 0.8;
    animation: fadeInUp 1s ease-out 0.2s backwards;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-secondary);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-3xl);
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

/* Mobile First für Buttons */
@media (max-width: 640px) {
    .hero-buttons {
        flex-direction: column;
        gap: var(--spacing-md);
        padding: 0 var(--spacing-lg);
        margin-bottom: var(--spacing-2xl);
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 1rem 2rem;
        font-size: var(--font-size-base);
    }
}

.hero-statsx {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-xl);
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(166, 124, 82, 0.15);
    box-shadow: 0 8px 24px rgba(44, 24, 16, 0.08);
    animation: fadeInUp 1s ease-out 0.6s backwards;
    position: relative;
    z-index: 2;
}

.stat {
    text-align: center;
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: var(--font-size-3xl);
    font-weight: 300;
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
}

.stat-label {
    font-size: var(--font-size-xs);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    color: var(--text-secondary);
}

.hero-scroll {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* Mobile First - Alles untereinander auf kleinen Geräten */
@media (max-width: 640px) {
    .hero-statsx {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: var(--spacing-lg);
        max-width: 90%;
        margin: 0 auto;
    }
    
    .stat {
        padding: var(--spacing-sm);
        border-bottom: 1px solid rgba(166, 124, 82, 0.1);
    }
    
    .stat:last-child {
        border-bottom: none;
    }
    
    .stat-number {
        font-size: var(--font-size-2xl);
    }
    
    .hero-contentx {
        padding: var(--spacing-md);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        padding: 0 var(--spacing-md);
    }
    
    .btn {
        width: 100%;
    }
}

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

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--primary-dark);
    font-size: var(--font-size-xs);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-dark);
    border-radius: 25px;
    position: relative;
    margin-top: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.5);
}

.scroll-icon::after {
    content: '';
    width: 4px;
    height: 10px;
    background: var(--primary-dark);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollAnimation 1.5s infinite;
}

/* Zusätzliche Mobile-Anpassungen */
@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
        padding-top: 80px;
    }
    
    .hero-title {
        margin-bottom: var(--spacing-lg);
    }
    
    .hero-name {
        font-size: clamp(2.5rem, 12vw, 4rem);
        letter-spacing: -0.02em;
    }
    
    .hero-description {
        font-size: var(--font-size-base);
        padding: 0 var(--spacing-md);
        margin-bottom: var(--spacing-xl);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-xs);
        letter-spacing: 2px;
    }
    
    .hero-statsx {
        background: rgba(255, 255, 255, 0.25);
    }
    
    .hero-scroll {
        bottom: var(--spacing-xs);
    }
    
    .scroll-text {
        display: none;
    }
}

/* Tablet Breakpoint */
@media (min-width: 641px) and (max-width: 1024px) {
    .hero-statsx {
        grid-template-columns: repeat(3, 1fr);
        max-width: 90%;
    }
}

@keyframes scrollAnimation {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(20px);
        opacity: 0;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ========================================
   Main Content
   ======================================== */
#mainContent {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-primary);
}

/* ========================================
   Footer - Modern Minimal 2025-26
   ======================================== */
.main-footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: var(--spacing-lg);
    color: var(--primary-light);
    font-weight: 500;
    font-size: var(--font-size-base);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-weight: 400;
}

.footer-social {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.social-icon {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(166, 124, 82, 0.3);
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    color: var(--primary-light);
}

.social-icon:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    color: var(--text-white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
    font-weight: 400;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(166, 124, 82, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    font-size: var(--font-size-sm);
}

/* ========================================
   Media Queries - Tablet
   ======================================== */
@media (min-width: 768px) {
    .container {
        padding: 0 var(--spacing-xl);
    }
    
    .cookie-options {
        flex-direction: row;
        flex-wrap: wrap;
        gap: var(--spacing-lg);
    }
    
    .nav-toggle {
        display: none;
    }
    
    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        flex-direction: row;
        background: transparent;
        gap: var(--spacing-xl);
        margin: 0;
        left: 0;
    }
    
    .nav-menu li {
        margin: 0;
    }
    
    .nav-link {
        font-size: var(--font-size-base);
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-statsx {
        grid-template-columns: repeat(3, 1fr);
        background: rgba(255, 255, 255, 0.35);
    }
    
    .stat {
        border-bottom: none !important;
    }
}

/* ========================================
   Media Queries - Desktop
   ======================================== */
@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .hero-statsx {
        gap: var(--spacing-3xl);
    }
}

/* ========================================
   Animationen für Scroll-Effekte
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

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

.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease-out;
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease-out;
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-up {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease-out;
}

.scale-up.visible {
    opacity: 1;
    transform: scale(1);
}

/* ========================================
   Loader
   ======================================== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* ========================================
   Accessibility
   ======================================== */
.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;
}

:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .main-nav,
    .cookie-banner,
    .hero-scroll,
    .footer-social,
    .btn {
        display: none;
    }
    
    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
}

/* =============================
   DARK MODE for DJ Website
   ============================= */
@media (prefers-color-scheme: dark) {
  :root {
    --primary-color: #D4A574;
    --primary-dark: #B8935F;
    --primary-light: #F0E4C4;
    --secondary-color: #181920;
    --secondary-dark: #23272e;
    --secondary-light: #262a31;
    --accent-color: #A67C52;
    --accent-dark: #8B6239;
    --accent-light: #C4A57B;

    --text-primary: #f9fafb;
    --text-secondary: #d1d5db;
    --text-light: #9ca3af;
    --text-white: #FFFFFF;
    --text-dark: #f3f4f6;

    --bg-primary: #181920;
    --bg-secondary: #23272e;
    --bg-dark: #111317;
    --bg-card: #23272e;
    --bg-luxury: linear-gradient(135deg, #23272e 0%, #181920 100%);
    --bg-glass: rgba(36, 39, 48, 0.35);
    --bg-glass-hover: rgba(36, 39, 48, 0.5);

    --border-color: #373c47;
    --border-accent: #D4A574;
    --border-radius: 16px;
    --border-radius-lg: 24px;

    --shadow-sm: 0 2px 8px rgba(44, 24, 16, 0.10);
    --shadow-md: 0 8px 24px rgba(44, 24, 16, 0.18);
    --shadow-lg: 0 16px 48px rgba(44, 24, 16, 0.24);
    --shadow-xl: 0 24px 64px rgba(44, 24, 16, 0.30);
    --shadow-glow: 0 0 40px rgba(212, 165, 116, 0.18);
    --shadow-glass: 0 8px 32px rgba(212, 165, 116, 0.14);

    --font-primary: 'Poppins', 'SF Pro Display', -apple-system, sans-serif;
    --font-serif: 'Playfair Display', 'Georgia', serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.75rem;
    --font-size-3xl: 2.5rem;
    --font-size-4xl: 3.5rem;
    --font-size-5xl: 4.5rem;
    --font-size-hero: clamp(3rem, 10vw, 6rem);
  }

  body {
    color: var(--text-primary);
    background: var(--bg-primary);
    background-image: 
      radial-gradient(circle at 20% 50%, rgba(212, 165, 116, 0.06) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(166, 124, 82, 0.10) 0%, transparent 50%);
  }

  h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
  }

  p {
    color: var(--text-secondary);
  }

  a {
    color: var(--primary-color);
  }
  a:hover {
    color: var(--accent-dark);
  }

  .container {
    background: transparent;
  }

  .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-dark);
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.25);
  }
  .btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: var(--text-white);
  }
  .btn-glass {
    background: var(--bg-glass);
    color: var(--text-primary);
    border: 1px solid var(--accent-color);
    box-shadow: var(--shadow-glass);
  }
  .btn-glass:hover {
    background: var(--bg-glass-hover);
    color: var(--accent-color);
  }
  .btn-outline {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
  }
  .btn-outline:hover {
    background: var(--accent-color);
    color: var(--text-dark);
  }

  .cookie-banner {
    background: rgba(36, 39, 48, 0.98);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-xl);
  }
  .cookie-content h3 {
    color: var(--primary-color);
  }
  .cookie-content p {
    color: var(--text-secondary);
  }
  .cookie-option {
    color: var(--text-secondary);
  }
  .cookie-option input[type="checkbox"] {
    accent-color: var(--primary-color);
    background: var(--bg-card);
    border-color: var(--primary-color);
  }
  .btn-cookie-accept {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
  }
  .btn-cookie-all {
    background: var(--primary-color);
    color: var(--text-dark);
  }
  .cookie-link {
    color: var(--accent-color);
  }
  .cookie-link:hover {
    color: var(--primary-color);
  }

  .main-nav {
    background: rgba(36, 39, 48, 0.90);
    box-shadow: 0 1px 0 rgba(212, 165, 116, 0.05);
  }
  .main-nav.scrolled {
    background: rgba(36, 39, 48, 0.97);
    box-shadow: var(--shadow-md);
  }
  .nav-logo a {
    color: var(--primary-color);
  }
  .nav-toggle span {
    background: var(--primary-color);
  }
  .nav-menu {
    background: var(--bg-primary);
  }
  .nav-link {
    color: var(--text-primary);
  }
  .nav-link::after {
    background: var(--primary-color);
  }
  .nav-cta {
    background: var(--primary-color);
    color: var(--bg-primary) !important;
  }
  .nav-cta:hover {
    background: var(--accent-color);
    color: var(--text-dark) !important;
  }

  .hero-section {
    background: var(--bg-primary);
  }
  .hero-background {
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(36,39,48,0.7) 60%, var(--bg-secondary) 100%);
  }
  .hero-overlay {
    background: radial-gradient(ellipse at top right, rgba(212, 165, 116, 0.18), transparent 40%), radial-gradient(ellipse at bottom left, rgba(166, 124, 82, 0.14), transparent 40%);
  }
  .hero-title {
    color: var(--text-primary);
  }
  .hero-subtitle {
    color: var(--primary-color);
  }
  .hero-name {
    color: var(--text-primary);
  }
  .hero-description {
    color: var(--text-secondary);
  }
  .hero-statsx {
    background: rgba(36,39,48,0.45);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
  }
  .stat-number {
    color: var(--primary-color);
  }
  .stat-label {
    color: var(--text-secondary);
  }
  .scroll-indicator, .scroll-icon {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: rgba(36,39,48,0.55);
  }
  .scroll-icon::after {
    background: var(--primary-color);
  }

  #mainContent {
    background: var(--bg-primary);
  }

  .main-footer {
    background: var(--bg-dark);
    color: var(--text-white);
  }
  .main-footer::before {
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  }
  .footer-section h3,
  .footer-section h4 {
    color: var(--primary-color);
  }
  .footer-section p {
    color: rgba(212, 165, 116, 0.7);
  }
  .social-icon {
    color: var(--primary-color);
    border-color: var(--primary-color);
  }
  .social-icon:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    border-color: var(--primary-color);
  }
  .footer-links a {
    color: rgba(212, 165, 116, 0.7);
  }
  .footer-links a:hover {
    color: var(--primary-color);
  }
  .footer-bottom {
    color: rgba(212, 165, 116, 0.5);
    border-top: 1px solid var(--primary-color);
  }

  .loader {
    background: var(--bg-primary);
  }
  .loader-spinner {
    border: 4px solid var(--border-color);
    border-top-color: var(--primary-color);
  }

  :focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
  }
}