html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #f8f9fa;
    user-select: none; /* Désactiver la sélection de texte */
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    
}


nav {
    background-color: whitesmoke;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: #333; /* Couleur du texte de la marque */
    
}

span {
    color: red;
    font-weight: 600;
}

.nav-link {
    color: #333; /* Couleur du texte des liens */
  transition: color 0.3s ease, background-color 0.3s ease;
}

.nav-link:hover {
    color: red; /* Couleur du texte au survol */
    background-color: #f8f9fa; /* Arrière-plan au survol */
    border-radius: 5px; /* Bordure arrondie pour l'effet de survol */
    padding: 0.25rem 0.5rem; /* Espacement intérieur pour l'effet de survol */
  }
.car1 {
    width: 90%;
    object-fit: cover; /* Ensures the image covers the area */
    cursor: pointer; /* Add pointer cursor on hover */
}

.second-section {
    padding: 50px 0;
}
.carousel-item .car2 {
    height: 400px;
}

.card-logo {
    width: 50px;  /* Adjust this value to your needs */
    height: 50px; /* Adjust this value to your needs */
    object-fit: contain; /* Ensures the logo maintains its proportions */
    margin-right: 10px; /* Space between the logo and the text */
}


h1 {
    font-family: 'Roboto Slab',sans-serif;
}

.section-title {
    font-size: 2.5rem;
    font-family: 'Roboto Slab', sans-serif;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;  
   padding-bottom: 5px; /* Ajustez l'espacement sous le texte */
}
    
.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px; /* Ajustez la largeur de la ligne */
    height: 3px; /* Ajustez l'épaisseur de la ligne */
    background-color: red; /* Couleur de la ligne */
    border-radius: 2px; /* Pour arrondir légèrement les coins de la ligne */
 }

.section-description {
    font-size: 1rem;
    margin-bottom: 2rem;
}

.section-dessubtitle {
    font-size: 2rem;
}



.team .section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    position: relative;
}

.team .section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background-color: red;
    margin: 10px auto 0;
}

.team .team-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team .team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.team .team-photo-wrapper {
    overflow: hidden;
    position: relative;
    height: 300px; /* Ajustez la hauteur selon vos besoins */
}

.team .team-photo {
    width: 100%;
    height: 150%;
    object-fit: cover; /* Assure que l'image couvre entièrement le conteneur */
    border-bottom: 1px solid #ddd; /* Ajoute une bordure en bas pour séparer l'image des infos */
}

.team .team-info {
    padding: 15px;
}

.team .team-name {
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.team .team-role {
    font-size: 1rem;
    color: #888;
    margin-bottom: 15px;
}

.team .team-description {
    margin-bottom: 0;
}


.contact-section {
    padding: 60px 0;
}
.contact-section h2 {
    margin-bottom: 20px;
}
.contact-section .form-group {
    margin-bottom: 1.5rem;
}
.contact-section .form-check {
    margin-bottom: 1rem;
}
.contact-section .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}
.contact-section .btn-primary:hover {
    background-color: #0056b3;
    border-color: #004085;
}


.breadcrumb-item {
    color: #888;
    text-decoration: none;
}

.card-link {
    text-decoration: none;
}
footer {
    background-color: whitesmoke;
    padding: 15px 0;
}

.footer-links a, .contact-info a {
    color: #000;
    text-decoration: none;
    margin-right: 15px;
}

.footer-links a:hover, .contact-info a:hover {
    text-decoration: underline;
}

.contact-info span.separator {
    display: inline-block;
    width: 1px;
    height: 20px;
    background-color: #000;
    margin: 0 10px;
}

.social-links a {
    margin: 0 10px;
    color: #000;
    font-size: 16px;
}

.social-links a:hover {
    color: #007bff;
}

.card.expanded {
    position: relative;
    z-index: 1000;
    transform: scale(1.1);
    transition: transform 0.3s, z-index 0s 0.3s;
}

.card-content {
    max-height: 100px; /* Hauteur par défaut */
    overflow: hidden;
    transition: max-height 0.3s;
}

.card.expanded .card-content {
    max-height: 500px; /* Hauteur agrandie */
} 

.price {
    font-size: 3.5rem;
}

.card:hover {
    transform: scale(1.05);
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card {
    transition: transform 0.3s, box-shadow 0.3s;

}
