:root{
    --text-warning: #ffc107;
    --text-primary: #0d6efd;
    --text-gris: #808080;
    --text-white: #ffffff;
}

body {
   font-family: 'Montserrat', sans-serif;
   font-size: 18px;
}

.font-family-arial{
    font-family: Arial, Helvetica, sans-serif;
}

.navbar {
    position: relative;
    z-index: 9999;
}

.video-section {
    position: relative;
    width: 100%;
    /* Hauteur responsive : ratio 16:9 */
    padding-top: 600px; /* 16/9 ratio */
    overflow: hidden;
}

.video-section .video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* remplit la section sans déformer */
    z-index: 0;
}

.video-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45); /* overlay sombre */
    z-index: 1;
}

.video-section .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%); /* centre vertical et horizontal */
    z-index: 2;
    color: white;
    padding: 0 120px;
}

.video-section h1 {
    font-size: 2.5rem;
}

.video-section p {
    font-size: 1.2rem;
}

/* Responsive : texte plus petit sur mobile */
@media (max-width: 768px) {
    .video-section h1 {
        font-size: 1.5rem;
    }
    .video-section p {
        font-size: 1rem;
    }
    .video-section .content {
        padding: 0 10px;
    }
}

.bg-image-1{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/invest-1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.border-radius{
    border-radius: 15px;
    border: 2px solid #0d6efd;
}

#map {
    width: 100%;
    height: 400px; /* ajuste selon ton design */
    border-radius: 15px;
}

/* #footer {
    width: 100%;
    height: 100px; 
    background-color: #0d6efd;
    color: white;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    transform: translateY(100%); 
    transition: transform 0.5s ease-out; 
}

#footer.show {
    transform: translateY(0); 
} */

.bg-gris{
    background-color: #808080;
}

.margin-right{
    margin-right: 100px;
}

.background-white{
    background-color: #fff;
    color: #000;
    padding: 10px;
    border-radius: 10px;
}

.padding{
    padding: 15px;
}

.bg-image-2{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/BG.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.height-100{
    height: 190px;
}

.header-100{
    height: 50px;
}

.top-50{
    margin-top: -140px;
}

.top-20{
    margin-top: -10px;
}

.card-blue:hover {
    background-color: #0d6efd;
    color: #ffffff;
}

.logo-bar {
  border-bottom: 1px solid #eee;
}