/*
Theme Name: Vozol
Theme URI: https://vozol.de
Author: Vozol Team
Author URI: https://vozol.de
Description: Ein modernes, technisches E-Commerce-Theme für Vozol mit Schwarz-Weiß-Design, WooCommerce-Integration und AJAX-Funktionalität. Optimiert für SEO und mobile Geräte.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vozol
Tags: e-commerce, woocommerce, black-and-white, responsive, ajax, seo-ready, custom-logo, custom-menu

Vozol Theme - Futuristische E-Commerce-Lösung
*/

/* ==========================================================================
   CSS Custom Properties - Design System
   ========================================================================== */
:root {
    /* Farben */
    --vozol-black: #0a0a0a;
    --vozol-dark: #121212;
    --vozol-gray-dark: #1a1a1a;
    --vozol-gray: #2a2a2a;
    --vozol-gray-medium: #444444;
    --vozol-gray-light: #888888;
    --vozol-white: #ffffff;
    --vozol-off-white: #f5f5f5;
    
    /* Akzentfarben */
    --vozol-accent: #ffffff;
    --vozol-accent-glow: rgba(255, 255, 255, 0.3);
    --vozol-neon: #00ff88;
    --vozol-neon-glow: rgba(0, 255, 136, 0.4);
    
    /* Typografie */
    --font-primary: 'Space Grotesk', 'Segoe UI', sans-serif;
    --font-display: 'Orbitron', 'Space Grotesk', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    
    /* Abstände */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;
    --space-2xl: 8rem;
    
    /* Übergänge */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Schatten */
    --shadow-glow: 0 0 20px var(--vozol-accent-glow);
    --shadow-neon: 0 0 30px var(--vozol-neon-glow);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.5);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    /* Container */
    --container-max: 1600px;
    --container-narrow: 900px;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--vozol-black);
    color: var(--vozol-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--vozol-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--vozol-gray);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--vozol-gray-medium);
}

/* Selection */
::selection {
    background: var(--vozol-white);
    color: var(--vozol-black);
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--space-md);
    color: var(--vozol-white);
}

a {
    color: var(--vozol-white);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--vozol-neon);
}

/* ==========================================================================
   Container & Layout
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container-narrow {
    max-width: var(--container-narrow);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn::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: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--vozol-white);
    color: var(--vozol-black);
    border-color: var(--vozol-white);
}

.btn-primary:hover {
    background: transparent;
    color: var(--vozol-white);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--vozol-white);
    border-color: var(--vozol-white);
}

.btn-secondary:hover {
    background: var(--vozol-white);
    color: var(--vozol-black);
}

.btn-neon {
    background: transparent;
    color: var(--vozol-neon);
    border-color: var(--vozol-neon);
}

.btn-neon:hover {
    background: var(--vozol-neon);
    color: var(--vozol-black);
    box-shadow: var(--shadow-neon);
}

/* ==========================================================================
   Forms
   ========================================================================== */
input,
textarea,
select {
    width: 100%;
    padding: var(--space-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--vozol-white);
    background: var(--vozol-gray-dark);
    border: 1px solid var(--vozol-gray);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--vozol-white);
    box-shadow: var(--shadow-glow);
}

input::placeholder,
textarea::placeholder {
    color: var(--vozol-gray-light);
}

/* ==========================================================================
   Cards
   ========================================================================== */
.card {
    background: var(--vozol-gray-dark);
    border: 1px solid var(--vozol-gray);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-normal);
}

.card:hover {
    border-color: var(--vozol-gray-medium);
    box-shadow: var(--shadow-card);
    transform: translateY(-5px);
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px var(--vozol-neon-glow); }
    50% { box-shadow: 0 0 20px var(--vozol-neon-glow), 0 0 40px var(--vozol-neon-glow); }
}

@keyframes scanline {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.animate-slide-in-left {
    animation: slideInLeft 0.6s ease forwards;
}

/* Stagger animations */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-neon { color: var(--vozol-neon); }
.text-gray { color: var(--vozol-gray-light); }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.hidden { display: none !important; }
.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;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1700px) {
    :root {
        --container-max: 1400px;
    }
}

@media (max-width: 1400px) {
    :root {
        --container-max: 1200px;
    }
}

@media (max-width: 1200px) {
    :root {
        --container-max: 960px;
    }
}

@media (max-width: 992px) {
    :root {
        --container-max: 720px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 var(--space-md);
    }
}

@media (max-width: 576px) {
    html {
        font-size: 13px;
    }
}

/* Unify paragraph text color to white for readability */
p,
p * {
    color: var(--vozol-white) !important;
}
p a {
    color: var(--vozol-white) !important;
}
p a:hover {
    color: var(--vozol-neon) !important;
}
