
body {
    font-family: "Playfair Display", serif  !important; /* Liste de polices sans-serif */
    margin: 0; /* Supprimer les marges par défaut */
    padding: 0; /* Supprimer les marges internes */
    font-family: "Playfair Display", serif !important;
}

.hr-centered {
    width: 60px;
    border: 2px solid #000;
    margin: 0 auto;
}

.hr-left {
    width: 60px;
    border: 2px solid #000;
    
}

.bandeau {
    background-color: black;
    color:white;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:10px 20px;
    gap:20px
}

.bandeau p {
    margin:0;
    font-size:1.2rem;
    font-weight:bold
}

.btn-estimation {
    background:transparent;
    color:#fff;
    border:2px solid #fff;
    padding:10px 20px;
    text-decoration:none;
    font-weight:bold;
    border-radius:5px;
    transition:background-color .3s ease , color .3s ease;
    margin-left:20px
}

.btn-estimation:hover {
    background-color:#fff;
    color:#000
}
/*-----HEADER -----*/

header {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px;
    background-color: #000000;
}
.bg-dark{
    background-color: rgb(98, 15, 15);
}
header .logo img {
    max-height: 135px; /* Hauteur maximale du logo */
    max-width: 100%; /* Empêche le débordement horizontal */
    height: auto; /* Maintient les proportions */
    object-fit: contain; /* S'assure que le logo reste entier dans la zone définie */
}
 
.nav-link{
    color: rgb(255, 255, 255);
}
 .nav-link:hover {
  color: rgba(202, 141, 46, 0.8);
}

header nav ul {
    list-style:none;
    display:flex;
    gap:20px
}

header nav ul li {
    display:inline-block;
    list-style:none
}

header nav ul li a {
    text-decoration:none;
    color: black;
    font-size:1.1rem;
    padding:5px 10px;
    transition:background-color .3s ease
}

header nav ul li a:hover {
    border-radius:5px;
    color: #e38e20;
}


/* Section avec image et formulaire */
.image-filtrage {
    position: relative;
    height: 400px; 
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; 
    margin: 30px;
}

.image-filtrage .background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: -1; 
}
/* Formulaire de filtrage */
.form-filtrage {
    background-color: rgba(0, 0, 0, 0.7); 
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    width: 100%; 
    max-width: 1000px; 
    margin: 0 auto; 
}

.form-filtrage h2 {
    margin-bottom: 15px;
    font-size: 1.8rem;
}


.form-filtrage form {
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    flex-wrap: wrap; 
}

.form-filtrage input,
.form-filtrage select,
.form-filtrage button {
    background-color: transparent;
    border: 2px solid #fff; 
    padding: 10px 15px;
    margin: 5px;
    color: #fff;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #333;
}


.form-filtrage button {
    background-color: #fff;
    color: #000;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-filtrage button:hover {
    background-color: #f0f0f0;
}



/* Section Nos services */

.services {
    text-align: center;
    padding: 40px 20px;
    background-color: #f8f9fa;
}

.services-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.services-divider {
    width: 60px;
    border: 2px solid #000;
    margin: 0 auto 30px;
}

.services-row {
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    gap: 20px; 
}

.service-item {
    flex: 1; 
    text-align: center;
    padding: 10px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-image {
    width: 100%; 
    height: auto;
    border-radius: 5px;
}

.service-title {
    margin-top: 10px;
    font-size: 22px;
    color: #bb9058;
    font-weight: bold;
}

                                            /*--------- PRESENTATION DE LENTREPRISE ----------*/

.presentation {
    background-color: #f8f9fa; 
}

.presentation img {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    margin-left: 20%;
}

.presentation h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.presentation p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #555;
}

.presentation .btn .contact-agency {
    background:transparent;
    color:black;
    border:2px solid black;
    padding:10px 20px;
    text-decoration:none;
    font-weight:bold;
    border-radius:5px;
    transition:background-color .3s ease , color .3s ease;
    margin-left:20px
  }

.presentation .btn:hover {
    background-color: #333;
}


                                    /*------ ICONE RESEAUX SOCIAUX ------*/
.social-icons {
    position: fixed;
    top: 50%; 
    left: 10px; 
    transform: translateY(-50%); 
    display: flex;
    flex-direction: column; 
    gap: 10px; 
    z-index: 1000; 
}

/* Style des bulles */
.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #000; 
    border-radius: 50%; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); 
    transition: transform 0.3s ease, background-color 0.3s ease; 
}

/* Logo des reseaux */
.social-icon img {
    width: 24px; 
    height: 24px;
    filter: invert(1); 
}

/* Animation au survol */
.social-icon:hover {
    transform: scale(1.1); 
    background-color: #333; 
}

                                                           /* Section de contact */
.contact-agency {
    background-color: #000000; /* Fond noir */
    color: #fff; /* Texte blanc */
    padding: 40px 0;
    margin: 5% ;
    padding: 5%;
    
}

.contact-agency h2 {
    color: white; /* Titre en blanc */
    margin-bottom: 30px;
}

.contact-agency .contact-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.contact-agency .contact-info {
    width: 40%; /* Prend 40% de la largeur */
    text-align: left; /* Alignement gauche */
}

.contact-agency .contact-info h4,
.contact-agency .contact-info p {
    margin: 10px 0;
    color: white;
}

.contact-agency .contact-form {
    width: 55%; /* Prend 55% de la largeur */
}

.contact-agency .contact-form h4 {
    margin-bottom: 20px;
    color: white;
}

/* Champs côte à côte */
.contact-agency .inline-fields {
    display: flex;
    gap: 15px; /* Espacement entre les champs */
    margin-bottom: 15px;
}

.contact-agency .inline-fields .form-group {
    flex: 1; /* Les champs prennent une largeur égale */
    position: relative;
}

/* Champs de saisie */
.contact-agency .contact-form input,
.contact-agency .contact-form textarea {
    background-color: transparent;
    color: white;
    border: none;
    border-bottom: 2px solid white; /* Ligne blanche */
    width: 100%;
    padding: 10px 0;
    font-size: 14px;
}

/* Effet focus sur les champs */
.contact-agency .contact-form input:focus,
.contact-agency .contact-form textarea:focus {
    outline: none;
    border-bottom-color: #aaa; /* Ligne gris clair au focus */
}

/* Labels */
.contact-agency .contact-form label {
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 12px;
    color: white;
    transition: 0.3s;
}


/* Bouton Envoyer */
.contact-agency .btn-primary {
    background:transparent;
    color:black;
    border:2px solid black;
    padding:10px 20px;
    text-decoration:none;
    font-weight:bold;
    border-radius:5px;
    transition:background-color .3s ease , color .3s ease;
    margin-left:20px
}

.contact-agency .btn-primary {
    background-color: white;
    color: black;
}


.contact-agency .btn-primary:hover {
    background-color: #555;
    border-color: #555;
}

.contact-description {
    font-size: 90%;
    color: #fff;
    margin-bottom: 1.5rem;
    margin-left: 4%;
}


.contact-info {
    color: #ffffff; 
}

.contact-item {
    display: flex; 
    align-items: center;
    margin-bottom: 15px; 
}

.contact-icon {
    margin-right: 10px; 
    font-size: 20px; 
    color: #fff; 
}

.contact-item p {
    margin: 0; 
}


                                                            /*  AVIS CLIENT */
/* Section globale */
.client-reviews {
    background-color: #222; /* Fond foncé élégant */
    color: #fff;
    padding: 50px 20px;
    border-radius: 10px;
}

/* Titres */
.client-reviews h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.client-reviews p {
    color: #ccc;
}

                                                    /* Carrousel */
.carousel-inner {
    min-height: 200px; 
}

.carousel-item {
    display: none; 
    transition: opacity 0.5s ease-in-out;
}

.carousel-item.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1; 
}

/* Images */
.carousel-item img {
    border: 2px solid #fff;
    padding: 5px;
}

/* Texte */
.blockquote {
    color: #fff;
    font-style: italic;
    margin-bottom: 10px;
}

.blockquote-footer {
    color: #ddd;
}

/* Indicateurs */
.carousel-indicators {
    margin-top: 20px;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    border: none;
    margin: 0 5px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.carousel-indicators button.active {
    opacity: 1;
    background-color: #007bff; /* Couleur d'accent */
}

/* Espacement pour les textes et indicateurs */
.carousel-inner .carousel-item {
    padding: 20px 0;
}

/* Titre avec lignes horizontales */
.title-with-lines {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.title-with-lines h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #bb9058;
    margin: 0 10px;
}

.title-with-lines .line-left,
.title-with-lines .line-right {
    flex: 1;
    border-top: 2px solid #fff;
    margin: 0 10px;
}


/* Footer */
.site-footer {
    background-color: #333; /* Fond gris foncé */
    color: #fff; /* Texte blanc */
    padding: 40px 20px;
    font-size: 0.9rem;
}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

.site-footer .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.site-footer .footer-section {
    flex: 1;
    min-width: 200px;
}

.site-footer h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #bb9058; /* Couleur dorée pour les titres */
}

.site-footer p,
.site-footer ul {
    margin: 0;
    line-height: 1.5;
}

.site-footer ul {
    list-style: none;
    padding: 0;
}

.site-footer ul li {
    margin-bottom: 10px;
}

.site-footer ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
}

.site-footer ul li a:hover {
    color: #bb9058; /* Doré au survol */
}

.site-footer .footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8rem;
    border-top: 1px solid #555;
    padding-top: 10px;
}

.site-footer .footer-bottom p {
    margin: 0;
    color: #aaa;
}

/* Icônes */
.site-footer i {
    margin-right: 10px;
    color: #bb9058; /* Couleur dorée pour les icônes */
}

/* RESPONSIVE DESIGN POUR MOBILE */
@media (max-width: 768px) {
    header {
        flex-direction: column; /* Empile les éléments sur mobile */
        text-align: center;
    }

    header .logo img {
        max-height: 40px;
    }

    header nav ul {
        flex-direction: column; /* Le menu devient une colonne */
        gap: 15px;
    }

    footer .footer-content {
        padding: 15px;
    }

    footer nav ul {
        flex-direction: column;
        gap: 10px;
    }
}

.estimation-logo {
    width: 15%;
}


