.navbar .fa-bars {
    color: white; /* Couleur de l'icône */
}

.navbar {
    background-color: #542b8b;
    color: white;
    border-bottom: 2px solid white;
}

.navbar .nav-link,
.navbar .navbar-brand {
    color: white;
}

.section {
    width: 100vw !important;
    min-height: 100vh;
    height: auto; /* Permet à la section de s'ajuster à son contenu */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: "Chakra Petch", sans-serif;
    padding: 5vh 0;
}


 body {
    overflow-x: hidden;
    width: 100vw !important;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #1d3263, #442063, #1f2d51, #342557, #2b233c);
}

video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw !important;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.flipped-video {
    transform: scaleX(-1);
}

.end-video {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
}


@keyframes bounce {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.chakra-petch {
    font-family: "Chakra Petch", sans-serif;
}

.chakra-petch-light { font-weight: 300; }
.chakra-petch-regular { font-weight: 400; }
.chakra-petch-medium { font-weight: 500; }
.chakra-petch-semibold { font-weight: 600; }
.chakra-petch-bold { font-weight: 700; }

.chakra-petch-light-italic { font-weight: 300; font-style: italic; }
.chakra-petch-regular-italic { font-weight: 400; font-style: italic; }
.chakra-petch-medium-italic { font-weight: 500; font-style: italic; }
.chakra-petch-semibold-italic { font-weight: 600; font-style: italic; }
.chakra-petch-bold-italic { font-weight: 700; font-style: italic; }

h1 {
    color: white !important;
    font-family: "Chakra Petch", sans-serif;
    font-weight: 100 !important;
    font-size: 2.5rem;
}

.lead {
    color: #5ce1e6 !important;
    font-style: italic;
}

/* Styles spécifiques pour mobile */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 20px;
        text-align: center;
    }

    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.4rem; }
    .lead { font-size: 1rem; }
    .btn {
        font-size: 14px;
        padding: 8px 10px;
    }
}

.btn {
    color: white;
    background-color: #1d3263;
    transition: opacity 0.3s ease;
}

.btn:hover {
    opacity: 0.8;
}

.btn-primary {
    background-color: #542b8b;
    border: 2px solid white;
}
