/* Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Header Styles */
header {
    background-color: #FFD700; /* Jaune */
    color: #0000FF; /* Bleu */
    padding: 20px 0;
}

header h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: #0000FF; /* Bleu */
    font-size: 1.1rem;
    padding: 8px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #FF8C00; /* Orange clair */
    color: white;
}

/* Main Content Styles */
main {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.intro {
    text-align: center;
    margin-bottom: 50px;
}

.intro h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.intro ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.intro ul li {
    font-size: 1.1rem;
}

.intro ul li a {
    color: #0000FF; /* Bleu */
    font-weight: bold;
    padding: 8px 20px;
    background-color: #FFD700; /* Jaune */
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.intro ul li a:hover {
    background-color: #FF8C00; /* Orange clair */
    color: white;
}

/* Footer Styles */
footer {
    background-color: #FFD700; /* Jaune */
    color: #0000FF; /* Bleu */
    text-align: center;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .intro ul {
        flex-direction: column;
        gap: 15px;
    }

    .intro ul li a {
        width: 100%;
        text-align: center;
    }
}

/* Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Header Styles */
header {
    background-color: #FFD700; /* Jaune */
    color: #0000FF; /* Bleu */
    padding: 20px 0;
}

header h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: #0000FF; /* Bleu */
    font-size: 1.1rem;
    padding: 8px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #FF8C00; /* Orange clair */
    color: white;
}

/* Vehicle Details Styles */
#vehicle-details {
    background-color: white;
    padding: 30px;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.vehicle-header {
    text-align: center;
    margin-bottom: 20px;
}

.vehicle-header h2 {
    font-size: 2rem;
    color: #0000FF; /* Bleu */
}

.vehicle-header .price {
    font-size: 1.5rem;
    color: #FF8C00; /* Orange clair */
}

.vehicle-info {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 20px;
}

.vehicle-info img {
    width: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.details {
    max-width: 600px;
}

.details p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.details strong {
    color: #0000FF; /* Bleu */
}

/* Buttons */
.actions {
    text-align: center;
    margin-top: 30px;
}

button {
    padding: 10px 20px;
    margin: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.btn-inquiry {
    background-color: #0000FF; /* Bleu */
    color: white;
    border: none;
}

.btn-inquiry:hover {
    background-color: #0057b7; /* Bleu foncé */
}

.btn-buy {
    background-color: #FF8C00; /* Orange clair */
    color: white;
    border: none;
}

.btn-buy:hover {
    background-color: #e57e00; /* Orange foncé */
}

/* Footer Styles */
footer {
    background-color: #FFD700; /* Jaune */
    color: #0000FF; /* Bleu */
    text-align: center;
    padding: 15px 0;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .vehicle-info {
        flex-direction: column;
        align-items: center;
    }

    .vehicle-info img {
        width: 100%;
    }

    .details {
        max-width: 100%;
    }
}

/* Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Header Styles */
header {
    background-color: #FFD700; /* Jaune */
    color: #0000FF; /* Bleu */
    padding: 20px 0;
}

header h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: #0000FF; /* Bleu */
    font-size: 1.1rem;
    padding: 8px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #FF8C00; /* Orange clair */
    color: white;
}

/* Categories Container */
.categories-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

/* Category Section */
section {
    flex: 1;
    padding: 0 20px;
}

/* Category Styles */
#cars h2, #motorcycles h2, #trucks h2 {
    text-align: center;
    color: #0000FF;
    font-size: 2rem;
    margin-bottom: 20px;
}

.category-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.category-item {
    background-color: white;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.category-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.category-item h3 {
    font-size: 1.5rem;
    color: #0000FF;
    margin: 10px 0;
}

.category-item p {
    font-size: 1rem;
    color: #555;
}

.category-item a {
    display: inline-block;
    margin-top: 10px;
    color: #0000FF;
    font-size: 1rem;
    padding: 8px 15px;
    border: 1px solid #0000FF;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.category-item a:hover {
    background-color: #0000FF;
    color: white;
}

/* Footer Styles */
footer {
    background-color: #FFD700; /* Jaune */
    color: #0000FF; /* Bleu */
    text-align: center;
    padding: 15px 0;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .categories-container {
        flex-direction: column;
        align-items: center;
    }

    section {
        width: 100%;
        margin-bottom: 30px;
    }
}

/* Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Header Styles */
header {
    background-color: #FFD700; /* Jaune */
    color: #0000FF; /* Bleu */
    padding: 20px 0;
}

header h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: #0000FF; /* Bleu */
    font-size: 1.1rem;
    padding: 8px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #FF8C00; /* Orange clair */
    color: white;
}

/* Contact Form Styles */
.contact-section {
    padding: 40px 0;
    text-align: center;
}

.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.contact-form label {
    display: block;
    font-size: 1.2rem;
    margin: 10px 0;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #0000FF; /* Bleu */
    outline: none;
}

.contact-form button {
    background-color: #FFD700; /* Jaune */
    color: #0000FF; /* Bleu */
    border: none;
    padding: 12px 20px;
    font-size: 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #FF8C00; /* Orange */
}

.contact-form textarea {
    resize: vertical;
    height: 200px;
}

/* Footer Styles */
footer {
    background-color: #FFD700; /* Jaune */
    color: #0000FF; /* Bleu */
    text-align: center;
    padding: 15px 0;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-form {
        padding: 20px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 10px;
        font-size: 1rem;
    }

    .contact-form button {
        padding: 10px 15px;
    }
}
/* Page Acheter Maintenant */
main {
    padding: 20px;
}

#vehicle-summary {
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

#vehicle-summary h3 {
    color: #0000FF; /* Bleu */
}

form {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

form label {
    display: block;
    margin-top: 10px;
}

form input,
form select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #FFD700; /* Jaune */
    color: #0000FF; /* Bleu */
    padding: 15px 30px;
    border: none;
    margin-top: 20px;
    cursor: pointer;
    font-size: 16px;
}

form button:hover {
    background-color: #FFA500; /* Orange */
}
/* Style pour le bouton Acheter maintenant */
.btn-buy {
    background-color: #FFD700; /* Jaune */
    color: #0000FF; /* Bleu */
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-buy:hover {
    background-color: #FFA500; /* Orange */
    color: #fff; /* Texte blanc lorsqu'on survole */
}

/* Style pour le bouton PayPal */
#paypal-button-container {
    margin-top: 20px;
}

/* Personnalisation de l'input de la carte bancaire */
input[disabled] {
    background-color: #f5f5f5;
    cursor: not-allowed;
}


/* Formulaire de paiement */
form {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}

input, select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background-color: #FFD700; /* Jaune */
    color: #0000FF; /* Bleu */
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #FFA500; /* Orange */
    color: #fff;
}

.payment-details input {
    width: 100%;
    margin-bottom: 10px;
}
/* Style pour le bouton PayPal */
#paypal-button-container {
    margin-top: 20px;
}

/* Personnalisation de l'input de la carte bancaire */
input[disabled] {
    background-color: #f5f5f5;
    cursor: not-allowed;
}
