body {
    overflow-x: hidden;
}
.container, .container-fluid {
    overflow: hidden;
}

/* Шапка (Header) */
.navbar-brand img {
    max-height: 60px;
    width: auto;
}

.top-bar {
    font-size: 1.1rem; /* Увеличен размер текста для читаемости */
    padding: 0.5rem 0; /* Увеличен вертикальный отступ */
    background-color: #0d2f5a; /* Тёмно-синий фон */
}

.top-bar a {
    color: #fff; /* Белый цвет для ссылок */
    text-decoration: none; /* Убираем подчёркивание */
}

.top-bar a:hover {
    color: #e0e0e0; /* Лёгкий серый акцент при наведении */
}

.top-bar .bi {
    color: #fff; /* Белый цвет иконок */
    margin-right: 0.5rem; /* Увеличен отступ между иконкой и текстом */
}

/* Hero-секция */
.hero {
    min-height: 500px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4)), url('/assets/images/hero-bg.jpg')
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}


.hero .btn:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

/* Секция Warum Uns */
.why-us .card {
    transition: transform 0.3s, box-shadow 0.3s;
}

.why-us .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.why-us .bi {
    font-size: 2.5rem;
    color: #0d6efd;
}


/* Секция Unsere Leistungen */

.services {
    background: #2d4466;
}

.services .card {
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.services .bi {
    font-size: 2.5rem;
    color: #0d6efd;
}


/* Секция Kundenstimmen */
.testimonials {
    background: #8fb4ca;
}
.testimonials .card {
    border: none;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonials .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.testimonials .avatar {
    width: 85px;
    height: 100px;
    object-fit: cover;
}

.testimonials .bi-quote {
    font-size: 2rem;
    color: #0d6efd;
}


/* Секция Häufig gestellte Fragen */
.faq .accordion-button {
    font-weight: 500;
    background-color: #f8f9fa;
    color: #333;
    transition: all 0.3s ease;
}

.faq .accordion-button:hover,
.faq .accordion-button:focus {
    background-color: #e9ecef;
    color: #0d6efd;
}

.faq .accordion-button::after {
    transition: transform 0.3s ease;
}

.faq .accordion-button:not(.collapsed) {
    background-color: #e9ecef;
    color: #0d6efd;
}

.faq .accordion-body {
    background-color: #fff;
    padding: 1.5rem;
}

/* Футер */
footer {
    background-color: #0d2f5a;
    color: #fff;
}

footer h5 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

footer a:hover {
    color: #e0e0e0;
}

footer .social-icons a {
    font-size: 1.5rem;
}

footer .social-icons a:hover {
    color: #0d6efd;
}

footer p {
    font-size: 0.9rem;
}

/* Кастомные стили для CTA в Unsere Leistungen */
.services .text-center.mt-5 {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 2rem;
    border-radius: 0.5rem;
}

.services .btn-success {
    font-size: 1.2rem;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
    display: flex; /* Убедимся, что Flexbox применяется */
    align-items: center; /* Вертикальное центрирование */
    justify-content: center; /* Горизонтальное центрирование */
}

.services .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 128, 0, 0.3);
}

.btn-warning:hover {
    background-color: #ffca2c; /* Усиленный жёлтый при наведении */
    transform: translateY(-2px); /* Лёгкий подъём */
    transition: all 0.3s ease;
}


/* Секция CTA */
.home-cta {
    background: #2d4466;
}


/* Карточки (общие) */
.card {
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

/* Иконки */
.bi {
    font-size: 1rem;
}
.social-icons .bi {
    font-size: 2rem;
    margin: 0 5px;
}

section {
    scroll-margin-top: 160px;
}

/* Кастомные стили для модального окна */
.modal-content {
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.modal-body .form-control {
    border: 1px solid #444;
    transition: border-color 0.3s ease;
}

.modal-body .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 5px rgba(13, 110, 253, 0.5);
}

.modal-body .btn-success {
    font-size: 1.1rem;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.modal-body .btn-success:hover {
    background-color: #28a745;
    transform: translateY(-2px);
}


/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 20px;
    z-index: 1000;
    display: none;
}
.cookie-banner.show {
    display: block;
}
.cookie-banner .btn {
    margin: 0 10px;
}


@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #0d2f5a;
        color: #fff;
        opacity: 0;
        transition: opacity 0.2s ease;
        z-index: 1000;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        align-content: center;
        flex-wrap: wrap;
    }

    .navbar-collapse.collapsing {
        opacity: 0; /* Состояние во время анимации */
        height: 100%; /* Фиксируем высоту */
    }

    .navbar-collapse.show {
        opacity: 1; /* Плавное появление */
    }

    .navbar-nav,
    .social-icons {
        text-align: center;
        margin: 1rem 0;
    }

    .nav-item {
        margin: 0.5rem 0;
    }

    .nav-link {
        color: #fff !important;
        font-size: 1.5rem;
        padding: 0.5rem;
    }

    .social-icons a {
        color: #fff;
        font-size: 2rem;
        margin: 0 1rem;
    }

    /* Предотвращение сдвига контента */
    body.navbar-open {
        overflow: hidden;
    }

    /* Скрытие основного контента при открытом меню */
    .navbar-collapse.show ~ main,
    .navbar-collapse.show ~ footer {
        filter: blur(5px);
        pointer-events: none;
    }

    /* Стили для кнопки тогглера */
    .navbar-toggler {
        border: none;
        padding: 0.5rem 1rem;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .close-menu-btn {
        display: none;
    }

    .navbar-collapse.show .close-menu-btn {
        display: block;
        z-index: 1001; /* Выше меню */
    }

    .close-menu-btn {
        font-size: 1.5rem;
    }

}
