/* Generelle Stile */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Header-Styling */
.top-row {
    background-color: #f8f8f8;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px; /* Oder eine andere Breite */
    margin: 0 auto;
    padding: 0 15px;
}

.navbar-brand {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1.2;
}

    .navbar-brand .tagline {
        font-size: 0.9rem;
        font-weight: normal;
        color: #666;
    }

.main-nav .nav-link {
    color: #555;
    text-decoration: none;
    padding: 5px 15px;
    margin-left: 10px;
    transition: color 0.3s ease;
}

    .main-nav .nav-link:hover,
    .main-nav .nav-link.active {
        color: #007bff; /* Beispiel-Akzentfarbe */
    }

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 60vh; /* Oder eine feste Höhe */
    overflow: hidden;
    display: flex; /* Für die Zentrierung des Overlays */
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Bild füllt den Bereich aus und wird nicht verzerrt */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-overlay {
    position: relative; /* Wichtig, damit das Overlay über dem Bild liegt */
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.5); /* Dunkler, halbtransparenter Hintergrund */
    padding: 30px 40px;
    color: white;
    text-align: center;
    max-width: 600px; /* Max. Breite des Textfeldes */
    border-radius: 8px;
}

    .hero-overlay h1 {
        font-size: 2.8rem;
        margin-bottom: 15px;
    }

    .hero-overlay p {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }

.btn {
    display: inline-block;
    background-color: #007bff; /* Beispiel-Akzentfarbe */
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

    .btn:hover {
        background-color: #0056b3;
    }

/* Features Section */
.features-section {
    padding: 60px 0;
    text-align: center;
    background-color: #f4f4f4;
}

    .features-section .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

.feature-item {
    padding: 20px;
    margin-bottom: 30px;
}

    .feature-item h3 {
        color: #333;
        margin-bottom: 10px;
    }

/* Footer-Styling */
.footer {
    background-color: #333;
    color: white;
    padding: 30px 0;
    font-size: 0.9rem;
}

    .footer .container-fluid {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.footer-info span {
    margin-right: 15px;
}

.social-icons a {
    color: white;
    font-size: 1.2rem;
    margin-left: 15px;
    transition: color 0.3s ease;
}

    .social-icons a:hover {
        color: #007bff; /* Beispiel-Akzentfarbe */
    }
