
:root{
    --primary-color: #3498db;
    --secondary-color: #2c3e50;
    --primary-text-color: #000000;
    --text-color: #333;
    --text-color2 : #0f2942;
    --background-color: #f4f4f4;
    --background-color2: #e2e7dfce;
}

body{
    background-color:  var(--background-color) ;
    
}



.slide-right{
    transform: translatex(-200px) !important;
    opacity: 0;
    transition: all 0.7s linear !important;
}
.slide-top{
    transform: translateY(200px) !important;
    opacity: 0;
    transition: all 0.7s linear !important;
}

.showx{
     transform: translateX(0) !important;
    opacity: 1;
}
.show{
     transform: translateY(0) !important;
    opacity: 1;
}

.navbar-brand-color{
    color: white !important;
}


/* La navigation */
.header-overlay {
    background: rgba(44, 62, 80, 0.45); /* couleur foncée, ajuste l'opacité si besoin */
    pointer-events: none; /* pour que les clics passent à travers */
    z-index: 1;
}

.navbarindex {
    transition: background-color 0.4s, box-shadow 0.4s;
    background-color: transparent ;
    z-index: 10;
}

.navbarindex.scrolled {
    background-color:  var(--secondary-color) ;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}






.link-nav{
    color: white;
    text-decoration: none;
}

.link-nav:hover{
    text-decoration: underline;
    color: var(--text-color2);
}

.se-connecter{
    color: var(--primary-text-color);
    text-decoration: none;

}

.dropdown-menu-end {
    right: 0;
    left: auto;
}

/* Card */

.card {
    transition: transform 0.2s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.card:hover {
    transform: scale(1.02);
}

.item-quantity {
    width: 40px;
    text-align: center;
}

/*about section*/
.about-section {
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    background: white;
}

.about-section h1 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 2rem;
}

.about-section h3 {
    color: #3498db;
    font-size: 1.5rem;
    margin-top: 1.5rem;
    font-weight: 600;
}

.about-section a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-section a:hover {
    color: #2980b9;
}

.service-list li:before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* carte google map */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}



/* 
Piece d'occas */


.btn-article{
    border: solid 3px blue;
    border-radius: 15px;   
    color : blue;
    background-color: white;  
    padding: 5px;  
}

.btn-article:hover{
    color: white;
    background-color: blue;
}


