:root {
    --primary-color: #143E94;
    --secondary-color: #F7A800;
    --light-bg: #f8f9fa;
}

img.pflegedienst_logo {
    height:60px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 76px;
}

.transparenzeffekt {
    background-color:#ffffff68;
    backdrop-filter: blur(2px);
}

/* Custom Bootstrap Colors */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #0d1f4d;
    border-color: #0d1f4d;
}

.btn-outline-secondary {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline-secondary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

/* Navigation */
.navbar {
    transition: all 0.3s ease;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    padding-top: 80px;
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.section-title {
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
    animation: fadeInUp 0.8s ease;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.hover-card {
    transition: all 0.3s ease;
}

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

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.bg-primary-light {
    background-color: rgba(17, 43, 107, 0.1);
}

.bg-secondary-light {
    background-color: rgba(237, 138, 65, 0.1);
}

.bg-success-light {
    background-color: rgba(25, 135, 84, 0.1);
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.video-container {
    border-radius: 10px;
    overflow: hidden;
    background: white;
    border: 4px solid var(--secondary-color);
}

.job-card {
    border: none;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.job-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.badge-benefit {
    background-color: var(--secondary-color);
    padding: 0.5rem 1rem;
    font-weight: 500;
}

/* Contact Form */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(17, 43, 107, 0.25);
}

/* Footer */
footer a:hover {
    color: var(--secondary-color) !important;
}

/* Leistungen Page */
.leistung-item {
    border-left: 3px solid var(--primary-color);
    padding-left: 1rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.leistung-item:hover {
    border-left-color: var(--secondary-color);
    transform: translateX(5px);
}

/* Team Section */
.team-member {
    text-align: center;
    margin-bottom: 2rem;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--secondary-color);
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {

    body {
        padding-top: 34px;
    }

    img.pflegedienst_logo {
        height:33px;
    }

    .hero-section {
        padding-top: 40px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .icon-circle {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }
}
