:root {
    --primary-color: #568c3b;
    --secondary-color: #2c4a1e;
    --accent-color: #f8f9d7;
    --text-color: #333333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
}

.navbar {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    margin-left: 15px;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover, 
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.hero {
    /* background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/media/Main.jpg'); */
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('media/headtwo.jpeg');
    backdrop-filter:var(--text-color);
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 25px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.feature-item {
    text-align: center;
    margin-bottom: 30px;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

section {
    padding: 80px 0;
}

.section-title {
    position: relative;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
    color: var(--secondary-color);
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.service-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-img {
    height: 200px;
    object-fit: cover;
}

.about-img {
    border-radius: 10px;
    overflow: hidden;
}

.team-member {
    text-align: center;
    margin-bottom: 30px;
}

.team-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.contact-info {
    padding: 30px;
    border-radius: 10px;
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 50px 0 20px;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: white;
}

.copyright {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.social-icon {
    font-size: 1.2rem;
    color: white;
    margin-right: 15px;
    transition: color 0.3s;
}

.social-icon:hover {
    color: var(--accent-color);
}

/* Styling für die Tabs */
.nav-tabs {
    border-bottom: 2px solid var(--primary-color);
}

.nav-tabs .nav-link {
    border: none;
    color: var(--text-color);
    font-weight: 600;
    margin-right: 5px;
}

.nav-tabs .nav-link.active {
    border-bottom: 3px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
}

/* Sonderklassen für Bereiche */
.bg-light-green {
    background-color: rgba(86, 140, 59, 0.1);
}