/* Custom CSS for legross GmbH */

/* Brand Colors */
:root {
    --legross-primary: #0066cc;
    --legross-secondary: #00a3e0;
    --legross-accent: #6c5ce7;
    --legross-dark: #2d3436;
    --legross-light: #f8f9fa;
}

/* Custom button styles */
.bg-dark-blue {
    background-color: var(--legross-primary);
}

.bg-dark-blue:hover {
    background-color: var(--legross-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

/* Enhanced card effects */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Custom hero section */
.hero-section {
    background: linear-gradient(135deg, var(--legross-primary) 0%, var(--legross-accent) 100%);
    color: white;
    padding: 4rem 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

/* Stats section styling */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--legross-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--legross-dark);
}

/* Feature icons */
.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

/* CTA sections */
.cta-section {
    background: linear-gradient(135deg, var(--legross-secondary) 0%, var(--legross-primary) 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

/* Testimonial styling */
.testimonial {
    background: var(--legross-light);
    padding: 2rem;
    border-left: 4px solid var(--legross-primary);
    border-radius: 8px;
    margin: 2rem 0;
    font-style: italic;
}

.testimonial-author {
    font-weight: bold;
    margin-top: 1rem;
    font-style: normal;
    color: var(--legross-dark);
}

/* Responsive enhancements */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation utilities */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Image enhancements */
figure img {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Link styling */
a.link {
    transition: all 0.2s ease;
}

/* Content spacing improvements */
.content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--legross-primary);
}

.content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--legross-secondary);
}

/* Badge/Tag styling */
.tag {
    display: inline-block;
    background: var(--legross-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    margin: 0.25rem;
}

/* Footer enhancements */
footer {
    background: var(--legross-dark);
    color: white;
    padding: 3rem 0 1rem;
}

footer a {
    color: var(--legross-secondary);
}

footer a:hover {
    color: white;
}
