/* Дополнительные стили */
.card {
    transition: transform 0.2s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.jumbotron {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem !important;
}

.jumbotron a.btn-primary {
    background-color: white;
    color: #667eea;
    border: none;
}

.jumbotron a.btn-primary:hover {
    background-color: #f8f9fa;
    color: #764ba2;
}

.alert {
    border-radius: 10px;
}

.btn-group-sm > .btn, .btn-sm {
    margin-right: 5px;
}

.gallery-item {
    margin-bottom: 20px;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .jumbotron {
        padding: 2rem !important;
    }

    .jumbotron h1 {
        font-size: 2rem;
    }

    .card {
        margin-bottom: 15px;
    }
}