/* Autohilfe-Contour.de - Custom Styles */

:root {
    --auto-dark: #1a1a2e;
    --auto-blue: #16213e;
    --auto-info: #0dcaf0;
    --auto-danger: #dc3545;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.navbar-brand {
    font-size: 1.4rem;
}

/* Hero Section */
.hero-section h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Cards */
.card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

/* Buttons */
.btn-info {
    font-weight: 600;
}

/* Alert CTA */
.alert-danger {
    border-left: 4px solid var(--auto-danger);
}

/* Footer */
footer a:hover {
    color: var(--auto-info) !important;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section .lead {
        font-size: 1.2rem;
    }
}
