/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 24.08.2017, 20:04:42
    Author     : penart
*/

.hero-section {
    background-color: #022d58;
    border-radius: .5rem;
    padding: 2rem;
    margin-bottom: 2rem;
    color: #fff;
}

/* Карточки */
.card {
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.card-title {
    font-weight: 600;
}

/* Навигация */
.navbar-brand {
    font-size: 1.5rem;
}

/* Footer */
footer {
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

footer p {
    margin: 0;
}

/* Адаптивность */
@media (max-width: 768px) {
    .jumbotron h1 {
        font-size: 2rem;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
}
