body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
    color: #212529;
    padding-top: 70px; /* Отступ для фиксированного навбара */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}

.breadcrumb {
    background-color: #f8f9fa;
    padding: 10px 15px;
    border-radius: 5px;
    margin-top: 20px;
}

.breadcrumb-item.active {
    color: #0d6efd;
}

@media (max-width: 991.98px) {
    body {
        padding-top: 90px; /* Высота навбара на мобильных устройствах */
    }
}

.hero-section {
    padding: 200px 0;
    position: relative;
    overflow: hidden;
    background: url('assets/images/hero-bg.jpg') no-repeat center center/cover; /* Fallback изображение */
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Заполняет всю область, обрезая лишнее */
}

@media (max-width: 768px) {
    .video-background video {
        width: auto;
        height: 100%;
    }
}

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

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Градиент для футера */
footer {
    background: linear-gradient(90deg, rgba(33, 37, 41, 1), rgba(52, 58, 64, 1));
}

/* Тень для футера */
footer.shadow-lg {
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}

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

footer a:hover {
    color: #ffc107;
}

iframe {
    max-width: 100%;
}

/* Стили для hover-эффектов */
.hover-effect {
    transition: all 0.3s ease;
    position: relative;
}

.hover-effect::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #fff;
    bottom: 0;
    left: 50%;
    transition: all 0.3s ease;
}

.hover-effect:hover::after {
    width: 100%;
    left: 0;
}

/* Увеличение логотипа при наведении */
.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.1);
}

/* Стили для мобильного меню */
.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    outline: none;
}

.navbar-collapse {
    transition: all 0.3s ease;
}

.navbar-nav {
    padding-top: 10px;
}

@media (max-width: 991.98px) {
    .navbar-nav {
        background: rgba(0, 0, 0, 0.9);
        padding: 10px;
        border-radius: 5px;
    }
}

/* подвал */
/* Стили для кнопки "Наверх" */
footer .btn-outline-light {
    transition: all 0.3s ease;
}

footer .btn-outline-light:hover {
    background-color: #fff;
    color: #000;
}

/* Анимация для контактов */
footer p {
    transition: transform 0.3s ease;
}

footer p:hover {
    transform: translateX(5px);
}

/* Стили для иконок социальных сетей */
footer a.text-white {
    transition: color 0.3s ease;
}

footer a.text-white:hover {
    color: #007bff !important; /* Измените цвет на ваш выбор */
}

.scroll-top {
    transition: all 0.3s ease;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}