@import url('https://fonts.googleapis.com/css2?family=Oswald&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto";
}

body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
}

.navbar {
    width: 70%;
    backdrop-filter: blur(10px);
    border-radius: 30px;
    margin: 20px auto;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    position: fixed; /* Fixe la navbar */
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100; /* Assure la superposition de la navbar */
}


.logo-ul {
    margin-right: auto;
}

.logo img {
    width: 105px;
    height: 44px;
}

.menu {
    list-style-type: none;
    display: flex;
    gap: 20px;
}

.menu li {
    position: relative;
}

.menu a {
    text-decoration: none;
    color: white; /* Doré */
    font-size: 16px;
    padding: 10px;
    display: block;
    transition: color 0.3s ease;
    border-radius: 20px;
    position: relative;
}

.ligne::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #FFD700; /* Ligne dorée */
    transition: width 0.4s ease;
}

.ligne:hover::after {
    width: 100%;
}

.dropdown:hover .submenu {
    display: block;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    padding: 10px 0;
    list-style-type: none;

}

.submenu li {
    text-align: center;
}

.submenu a {
    padding: 10px 20px;
}



/* Responsive */
@media (max-width: 768px) {
    .navbar {
        width: 90%;
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 10px;
        
        
    }
    

    .menu {
        flex-direction: column;
        align-items: center;
    }

    .submenu {
        position: static;
        display: none;
    }

    .dropdown:hover .submenu {
        display: block;
    }
}

.banner {
    width: 100%;
    height: 100vh;
    background-image: url('banner.jpg'); /* Remplacez par le chemin de votre image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px; /* Espace pour la navbar */
}

.overlay {
    margin-left: 40px;
    margin-top: 20px;
    color: #fff;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
}

.overlay h1 {
    font-size: 10rem;
    margin-bottom: 10px;
}

.overlay p {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .overlay h1 {
        font-size: 2rem;
    }
    .overlay p {
        font-size: 1.2rem;
    }
}
.footer {
    background-color: #000; /* Fond noir */
    color: #FFF; /* Texte blanc */
    padding: 40px 0;
    text-align: center;
    width: 100%;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.2);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px; /* Espace plus grand entre les sections */
}

.footer-section {
    width: 80%;
    max-width: 350px;
    margin: 0 auto;
}

.footer-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #FFF; /* Texte blanc pour les titres */

    text-align: center; /* Centrer les titres */
}

.footer-section p,
.footer-section a {
    color: #FFF; /* Texte blanc */
    font-size: 1rem;
    text-decoration: none;
    margin-bottom: 10px; /* Espacement entre les paragraphes */
    display: block;
}

.footer-section ul {
    list-style-type: none; /* Supprime les puces */
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin: 10px 0; /* Espacement entre les items de la liste */
    text-align: center; /* Centrer les éléments de la liste */
}

.footer-section ul li a {
    display: inline-block; /* Permet de traiter les liens comme des éléments en ligne */
    color: #FFF; /* Couleur blanche */
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FFD700; /* Change la couleur au survol (doré) */
}

.footer-section.social ul {
    display: flex;
    justify-content: center;
    gap: 20px; /* Espace entre les icônes */
    padding-top: 20px;
}

.footer-section.social ul li {
    list-style: none; /* Supprime les puces des icônes */
}

.footer-section.social ul li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px; /* Taille des icônes Font Awesome */
    color: #FFF; /* Icônes blanches par défaut */
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-section.social ul li a:hover {
    color: #FFD700; /* Change la couleur des icônes au survol */
    transform: scale(1.2); /* Grossit l’icône au survol */
}

/* Footer bottom */
.footer-bottom {
    margin-top: 40px;
    font-size: 0.9rem;
    color: #FFF; /* Texte en blanc */
    opacity: 0.8;
}

/* Responsivité */
@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-around;
    }

    .footer-section {
        max-width: 350px; /* Largeur des sections du footer */
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        max-width: 100%; /* Largeur des sections en mode mobile */
    }
}
.btn-louer {
    display: inline-block;
    
    padding: 15px 30px;
    background-color: transparent; /* Fond transparent */
    color: #FFF; /* Texte blanc */
    border: 2px solid #FFF; /* Bordure blanche */
    border-radius: 15px; /* Bords arrondis */
    font-size: 1.8rem;
    font-weight: 600;
    text-decoration: none; /* Enlever la décoration du lien */
    transition: all 0.3s ease; /* Transition pour les effets de survol */
    margin-top: 20px; /* Espacement entre le texte et le bouton */
}

.btn-louer:hover {
    background-color: #FFF; /* Fond blanc au survol */
    color: #000; /* Texte noir au survol */
    transform: scale(1.1); /* Agrandir légèrement le bouton au survol */
}
/* Arrière-plan noir avec texte blanc */
body {
    background-color: #000;
    
    font-family: "Roboto", sans-serif;
}

/* Section location */
.location-section {
    margin-top: 100px; /* Pour laisser de l'espace pour la navbar */
    padding: 20px;
    text-align: center;
}

.location-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #FFF;
}

.location-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #CCC;
}

/* Grille de produits */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.product-card {
    background-color: #1a1a1a; /* Fond légèrement plus clair */
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.product-image {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.product-brand {
    font-size: 1.5rem;
    color: #FFF;
    margin-bottom: 10px;
}

.product-model {
    font-size: 1.2rem;
    color: #AAA;
}
/* Section contact */
.contact-section {
    margin-top: 100px;
    padding: 20px;
    text-align: center;
    color: #FFF;
}

.contact-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.contact-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #CCC;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
}

#map {
    width: 100%;
    max-width: 600px;
    height: 400px;
    background-color: #333;
    border-radius: 10px;
}

.contact-info {
    max-width: 400px;
    text-align: left;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.social-links a {
    font-size: 2rem;
    color: #FFF;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    color: #FFD700;
    transform: scale(1.2);
}

/* Formulaire de contact */
.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    border: none;
    background-color: #1a1a1a;
    color: #FFF;
    font-size: 1rem;
}

.contact-form button {
    background-color: #FFD700;
    color: #000;
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-form button:hover {
    background-color: #FFF;
    transform: scale(1.05);
}


