/* assets/css/style.css */
.vehicle-card {
    transition: transform 0.2s, box-shadow 0.2s;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.search-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.search-section .form-control,
.search-section .form-select {
    border: none;
    border-radius: 8px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.rating-stars {
    color: #ffc107;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.footer a {
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Адаптивность */
@media (max-width: 768px) {
    .vehicle-card .card-img-top {
        height: 150px !important;
    }
    
    .carousel-inner img {
        height: 250px !important;
    }
}

/* Кастомные стили для карточек */
.card {
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

/* Стили для кнопок */
.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}