/*
Theme Name: Digivize Consulting
Theme URI: [https://digivize.com](https://digivize.com)
Author: Digivize
Description: Premium Corporate Theme mit Tailwind CSS (CDN)
Version: 1.0
License: GNU General Public License v2 or later
*/

/* Custom CSS Variablen und Animationen aus dem HTML */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f7;
    --text-primary: #1d1d1f;
    --text-secondary: #86868b;
    --nav-bg: rgba(255, 255, 255, 0.8);
    --card-border: rgba(0, 0, 0, 0.05);
}

.dark {
    --bg-primary: #000000;
    --bg-secondary: #1d1d1f;
    --text-primary: #f5f5f7;
    --text-secondary: #86868b;
    --nav-bg: rgba(0, 0, 0, 0.8);
    --card-border: rgba(255, 255, 255, 0.1);
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transition: background-color 0.5s ease, color 0.5s ease;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Typography Overrides */
h1, h2, h3, h4, h5, h6 { letter-spacing: -0.02em; }

/* Navigation Backdrop */
.glass-nav {
    background-color: var(--nav-bg);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--card-border);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active { opacity: 1; transform: translateY(0); }
.stagger-delay-1 { transition-delay: 100ms; }
.stagger-delay-2 { transition-delay: 200ms; }
.stagger-delay-3 { transition-delay: 300ms; }

/* Card Styles */
.feature-card {
    background-color: var(--bg-secondary);
    border: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.feature-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 10;
    border-color: var(--card-border);
}

/* Button Styles */
.btn-primary {
    background-color: #dc2626;
    color: white;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.3);
}
.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--text-primary);
    color: var(--text-primary);
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    background-color: var(--text-primary);
    color: var(--bg-primary);
}

/* Hero Background */
.hero-bg {
    background-image: url('[https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop](https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop)');
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0; left: 0; z-index: -1;
    background-attachment: fixed; 
}
.hero-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, var(--bg-primary) 100%);
}

/* Mobile Menu */
#mobile-menu { transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.icon-stroke { stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; fill: none; }
