/* Custom Styles für HuberSolution */
:root {
    --primary-color: #3a86ff;
    --secondary-color: #ffbe0b;
    --dark-color: #14213d;
    --light-color: #f8f9fa;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    padding-top: 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

/* Services */
.service-card {
    transition: transform 0.3s ease;
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    color: var(--primary-color);
}

/* Navigation */
.navbar-scrolled {
    background-color: #fff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

/* Sections */
.section-title {
    font-weight: 700;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-subtitle {
    color: #6c757d;
}

/* Contact Form */
.wpcf7-form label {
    font-weight: 500;
}

.wpcf7-form .form-control {
    border-radius: 5px;
    padding: 12px 15px;
    border: 1px solid #ced4da;
}

.wpcf7-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(58, 134, 255, 0.25);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2a75ff;
    border-color: #2a75ff;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding-top: 100px;
    }
    
    .section-title:after {
        left: 50%;
        transform: translateX(-50%);
    }
}