/* Farbschema: Schwarz und verschiedene Grauabstufungen */
body {
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    background-color: #f0f0f0;
}

/* Navbar */
.navbar {
    background-color: #fff !important;
}

.navbar-brand {
    font-weight: bold;
    color: #111 !important;
}

.nav-link {
    color: #111 !important;
    margin: 0 10px;
}

.nav-link:hover {
    color: #aaa !important;
}

/* Hero Section */
.hero {
    /*background: linear-gradient(135deg, #111, #222);*/
    background-image: url(../assets/hero.jpg);
    color: #fff;
    text-align: center;
    margin-top: 150px;
    padding: 200px 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    /*border-radius: 50%;*/
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    /*box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);*/
}

.hero-logo img {
    width: 80%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Leistungen Section */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #111;
    text-align: center;
}

.service-card {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    background-color: #fff;
}

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

/* Über Uns Section */
.bg-light {
    background-color: #f5f5f5 !important;
}

.about-text {
    line-height: 1.7;
    color: #333;
}

/* Kontakt Section */
.contact-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Formular-Elemente */
.form-control {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px;
    background-color: #f9f9f9;
}

.form-control:focus {
    border-color: #999;
    box-shadow: 0 0 0 0.2rem rgba(153, 153, 153, 0.25);
}

.btn-primary {
    background-color: #111;
    border-color: #111;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    color: #fff;
}

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

/* Footer (optional, falls hinzugefügt) */
footer {
    background-color: #111;
    color: #aaa;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

/* Footer Styles */
footer {
    background-color: #111;
    color: #ddd;
    font-size: 0.9rem;
}

footer a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #fff;
    text-decoration: underline;
}

footer .list-unstyled li {
    margin-bottom: 8px;
}

footer .small {
    color: #777;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    footer .row {
        margin-bottom: 15px;
    }
    footer .col-md-6 {
        text-align: center;
    }
    footer .text-md-end {
        text-align: center;
        margin-top: 15px;
    }
}
