:root {
    --neon-yellow: #FFFF00;
    --custom-gray: #4A4A4A;
    --dark-gray: #2D2D2D;
}

.bg-neon-yellow {
    background-color: var(--neon-yellow);
}

.text-neon-yellow {
    color: var(--neon-yellow);
}

.bg-dark-gray {
    background-color: var(--dark-gray);
}

/* Animationen */
.fade-in {
    animation: fadeIn 0.8s ease-in;
}

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

/* Hover Effekte */
.hover\:transform {
    transition: transform 0.3s ease;
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}

/* Custom Styles for loco.werk */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Typography */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

/* Hero Section Background */
.hero-gradient {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

/* Custom Transitions */
.transition-all {
    transition: all 0.3s ease-in-out;
}

/* Service Cards Hover Effect */
.service-card {
    transition: transform 0.3s ease-in-out;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Custom Focus Styles */
input:focus, textarea:focus {
    outline: none;
    border-color: #FFE500;
    box-shadow: 0 0 0 3px rgba(255, 229, 0, 0.1);
}

/* Custom Button Styles */
.btn-primary {
    background-color: #FFE500;
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #FFD700;
    transform: translateY(-1px);
}

/* Navigation Transparency */
.transparent-nav {
    background: transparent;
    transition: background-color 0.3s ease;
}

.transparent-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
}

/* Custom Container Width */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Responsive Font Sizes */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    h3 {
        font-size: 1.5rem;
    }
}

/* Custom Section Spacing */
section {
    padding: 5rem 0;
}

/* Footer Link Hover Effects */
footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: #FFE500;
} 