/* Allgemeine Stile */
.hero-section {
    /*background-image: url('./images/hero_background.mp4');
    background-size: cover;
    background-position: center;
    height: 100vh;
    */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
    text-align: center;
    position: relative;
    min-height: 650px;
    /*padding: 0 15px;*/
}

video {
    right: 0;
    top: 0;
    min-width: 100%;
    object-fit: cover;
    height: 650px;
    z-index: -1;
    position: absolute;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
}

.hero-section p {
    font-size: 1.2rem;
}

.hero-section a {
    color: white;
    background-color: rgb(61, 79, 157); 
}

.text_highlight_blau {
  color: rgb(61, 79, 157);
}

.v-card {
    color: white;
    background-color: rgb(61, 79, 157); 
}

.button-link {
    color: white;
    background-color: rgb(61, 79, 157); 
}

.sub-btn {
    color: white;
    background-color: rgb(61, 79, 157); 
}

.google-iframe {
    border:0; 
    width: 100%; 
    height: 300px;
}

.services img {
    border-radius: 10px;
}

.team img {
    border-radius: 50%;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

.footer {
    background-color: #333;
    color: white;
    padding: 1rem 0;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.map-container iframe {
    border-radius: 10px;
}

/* Benachrichtigung */

.notification {
    display: none;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.success {
    background-color: #d4edda;
    color: #155724;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
}

.navbar-brand img {
    height: 75px;
}

/* Mobile Optimierung */
@media (max-width: 768px) {

    /* Navbar */
    .navbar-brand {
        font-size: 1.2rem;
    }

    .navbar-nav .nav-link {
        font-size: 0.9rem;
        padding: 0.5rem 0.7rem;
    }

    .navbar {
        padding: 0.5rem 1rem;
    }

    /* Hero Section */
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .hero-section video {
        display: none;
    }

    .hero-section {
        background-size: cover;
        background-position: center;
        height: 100vh;
        background-image: url('./images/hero_background_mobile.gif');
    }

    /* Leistungen */
    .services img {
        width: 100%;
    }

    /* Über uns */
    .team img {
        width: 80px;
        height: 80px;
    }

    .team h5 {
        font-size: 1rem;
    }

    /* Kontaktformular */
    form .form-label {
        font-size: 0.9rem;
    }

    .map-container iframe {
        height: 200px;
    }

    /* Footer */
    .footer p {
        font-size: 0.9rem;
    }
}

.offcanvas {
    background-color: #f8f9fa;
    /* Gleiche Farbe wie die Navbar */
}

.offcanvas-header {
    border-bottom: 1px solid #ddd;
}

.offcanvas-title {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Navbar Höhe */
section {
    scroll-margin-top: 75px; /* Entspricht der Navbar-Höhe */
}

#references .text-start {
    text-align: left;
    margin: 0 auto;
    max-width: 800px; /* Breite anpassen nach Bedarf */
}

.custom-link {
    color: rgb(61, 79, 157); /* Primäre Hyperlink-Farbe */
    text-decoration: none; /* Entfernt die Unterstreichung */
}
.custom-link:hover {
    text-decoration: underline; /* Unterstreichung bei Hover */
}

