/* Individuelle Styles für HKL Regeltechnik Website */

:root {
    --primary-color: #0066CC;
    --secondary-color: #6C757D;
    --accent-color: #F59E0B;
    --dark-color: #1F2937;
}

body {
    font-family: var(--font-family-base);
    color: var(--dark-color);
}

.navbar {
    background: linear-gradient(135deg, #0066CC 0%, #004C99 100%) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero-section {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.9), rgba(0, 76, 153, 0.9)), 
                url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 0h100v100H0z" fill="%23f0f0f0"/%3E%3Cpath d="M20 20h20v20H20zM60 20h20v20H60zM20 60h20v20H20zM60 60h20v20H60z" fill="%23e0e0e0"/%3E%3C/svg%3E');
    color: white;
    padding: 120px 0 80px;
    margin-top: 56px;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-section .lead {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.btn-hero {
    background-color: var(--accent-color);
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-hero:hover {
    background-color: #D97706;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    color: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    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: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.service-card {
    border: none;
    border-radius: 15px;
    transition: all 0.3s;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-section {
    background-color: #F9FAFB;
}

.feature-list li {
    padding: 10px 0;
    font-size: 1.1rem;
}

.feature-list li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.job-benefits li {
    padding: 8px 0;
}

.contact-info {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-info .address-city {
    display: inline-block;
    margin-left: 3rem;
}

.contact-info i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 15px;
}

footer {
    background: var(--dark-color);
    color: white;
    padding: 40px 0 20px;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    color: var(--accent-color);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
}

/* Statische Kartenvorschau */
.map-preview {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: #eef3f8;
}

.map-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: linear-gradient(to bottom, rgba(255,255,255,0.85), rgba(255,255,255,0.9));
    text-align: center;
    padding: 20px;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
}
