/* Custom Styles für AutoGlanz */

/* Hero Section */
.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../assets/Hero-Fahrzeugpflegeteam.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Glass Effect Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}

.glass-card:hover {
    box-shadow: 0 16px 30px -12px rgba(0, 0, 0, 0.18);
    transform: translateY(-1px);
}

/* Contact Section Background (neutral) */
.contact-section {
    background: #ffffff;
}

/* Contact outer wrapper (subtle card like screenshot) */
.contact-wrapper {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    box-shadow: 0 10px 20px -12px rgba(0, 0, 0, 0.12);
}

/* Icon badge (light circle) */
.icon-badge {
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Form field wrapper border like screenshot */
.input-wrapper {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

/* Service Cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Premium Card Highlight */
.premium-card {
    transform: scale(1.05);
    border: 2px solid #f97316;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Custom Colors */
.bg-orange-500 {
    background-color: #f97316;
}

.text-orange-500 {
    color: #f97316;
}

.border-orange-500 {
    border-color: #f97316;
}

/* Button Styles */
.btn-primary {
    background-color: #f97316;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #ea580c;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: white;
    color: #1f2937;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    border: 1px solid #d1d5db;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #f9fafb;
    border-color: #9ca3af;
}

/* Card Styles */
.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Stats Cards */
.stats-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-2px);
}

/* Team Member Cards */
.team-card {
    text-align: center;
    padding: 24px;
}

.team-avatar {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    margin: 0 auto 16px;
    overflow: hidden;
    background-color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
    color: #6b7280;
}

/* Values Icons */
.value-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #fed7aa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
        padding: 1rem;
    }
    
    .premium-card {
        transform: none;
    }
    
    .stats-card {
        margin-bottom: 16px;
    }
    
    /* Mobile Container optimizations */
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    /* Mobile Typography */
    h1 {
        font-size: 2rem !important;
        line-height: 2.25rem !important;
    }
    
    h2 {
        font-size: 1.5rem !important;
        line-height: 2rem !important;
    }
    
    h3 {
        font-size: 1.25rem !important;
        line-height: 1.75rem !important;
    }
    
    /* Mobile Cards */
    .card {
        margin-bottom: 1rem;
    }
    
    .glass-card {
        padding: 1rem;
        margin: 0.5rem;
    }
    
    /* Mobile Buttons */
    .btn-primary, .btn-secondary {
        padding: 10px 16px;
        font-size: 0.875rem;
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    /* Mobile Logo */
    .logo-mobile {
        height: 2.5rem !important;
    }
    
    /* Mobile Navigation */
    .mobile-menu {
        display: block;
    }
    
    .desktop-menu {
        display: none;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero-section {
        min-height: 70vh;
        padding: 0.5rem;
    }
    
    h1 {
        font-size: 1.75rem !important;
        line-height: 2rem !important;
    }
    
    .container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .glass-card {
        padding: 0.75rem;
        margin: 0.25rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #f97316;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ea580c;
}