/* Общие настройки для всего сайта */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #121212; /* Темный стильный фон */
    color: #ffffff;
}

/* Шапка сайта */
header {
    background-color: #1e1e1e;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    border-bottom: 2px solid #ff4500; /* Оранжевый акцент */
    position: sticky;
    top: 0;
    z-index: 100;
}

header h1 {
    margin: 0;
    color: #ff4500;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 20px;
    font-size: 18px;
}

nav a:hover {
    color: #ff4500;
}

/* Главный баннер */
.banner {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(180deg, #1e1e1e 0%, #121212 100%);
}

.banner h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

/* Каталог */
.catalog {
    padding: 40px 20px;
    text-align: center;
}

.catalog h2 {
    color: #ff4500;
    font-size: 32px;
}

.cars-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap; /* Автоматически переносит карточки на новую строку */
    margin-top: 30px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Карточки машин */
.car-card {
    background-color: #1e1e1e;
    border-radius: 12px;
    width: 280px;
    padding: 15px;
    border: 1px solid #333;
    transition: transform 0.3s, border-color 0.3s;
}

.car-card:hover {
    transform: translateY(-8px); /* Легкий подъем при наведении */
    border-color: #ff4500;
}

.car-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.car-card h3 {
    margin: 15px 0 5px 0;
    font-size: 20px;
}

.price {
    font-size: 22px;
    color: #ff4500;
    font-weight: bold;
    margin: 10px 0;
}

button {
    background-color: #ff4500;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
}

button:hover {
    background-color: #e03e00;
}

/* История */
.history {
    background-color: #1e1e1e;
    padding: 50px 20px;
    text-align: center;
    margin-top: 50px;
}

.history h2 {
    color: #ff4500;
}

.history p {
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    color: #ccc;
    font-size: 18px;
}

/* Подвал */
footer {
    background-color: #0a0a0a;
    text-align: center;
    padding: 20px;
    border-top: 1px solid #333;
    color: #777;
}
