/* Фоновое изображение */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "Ubuntu Condensed", sans-serif;
}

.hero {
    background: url('/public/assets/img/background.jpg') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.65);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    color: white;
    padding: 2rem;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-content p {
        font-size: 1.1rem;
    }
}

/* Стили для меню */
.navbar-dark .navbar-nav .nav-link {
    color: #fff !important;
}

.navbar {
    z-index: 1050;
}

.navbar .nav-link:focus,
.navbar .dropdown-toggle:focus {
    outline: none !important;
    box-shadow: none !important;
}

.dropdown-menu {
    background-color: #1c1c1c;
    border: none;
}

.dropdown-item {
    color: #fff;
}

.dropdown-item:hover {
    background-color: #333;
    color: #ffd700;
}

.hover-lift {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

section.py-5 {
    background-color: #004d99;
}

.container {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

h2.fw-bold {
    color: #004d99;
}

.text-muted {
    color: rgba(255, 255, 255, 0.8);
}

.card-body i {
    min-width: 32px;
}