/* styles.css */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #333; /* Fond noir */
    color: #f5a623; /* Texte orange */
}

header {
    background: linear-gradient(135deg, #f5a623, #333); /* Orange vers noir */
    color: white;
    text-align: center;
    padding: 30px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header h1 {
    margin: 0;
    font-size: 2rem;
    letter-spacing: 1px;
    color: #fff; /* Texte blanc */
}

main {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.choice {
    margin: 30px 0;
    text-align: center;
}

.choice h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #f5a623; /* Texte orange */
}

.options {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.button {
    display: inline-block;
    background: linear-gradient(135deg, #f5a623, #b35900); /* Orange vers orange foncé */
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.button:hover {
    background: linear-gradient(135deg, #b35900, #4c2000); /* Orange foncé vers presque noir */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

footer {
    background-color: #111; /* Noir intense */
    color: #f5a623; /* Texte orange */
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

footer p {
    margin: 0;
}

/* Liste des voitures */
.car-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.car-card {
    background-color: #444; /* Gris foncé */
    border: 1px solid #555; /* Contour gris plus clair */
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 300px;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #f5a623; /* Texte orange */
}

.car-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    background-color: #555; /* Gris un peu plus clair */
}

.car-card img {
    max-width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
    border: 2px solid #f5a623; /* Bordure orange */
}

.car-card h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #f5a623; /* Texte orange */
}

.car-card p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #ddd; /* Gris clair */
}

.car-card .price {
    font-weight: bold;
    color: #f5a623; /* Texte orange */
}
