 /* Style de base pour votre application */
 body {
    position: relative;
    overflow-x: hidden;
    min-height: 100vh;
}

.offcanvas-header {
    border-bottom: 1px solid #eee;
    padding: 15px;
}

.offcanvas-title {
    font-weight: bold;
    margin: 0;
}

.offcanvas-body {
    padding: 20px 15px;
}

/* Style pour les liens dans l'offcanvas */
.offcanvas .nav-link {
    padding: 10px 0;
    border-bottom: 1px solid #f3f3f3;
}

/* Style pour les liens sociaux dans l'offcanvas */
.social-links-mobile {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.social-link-mobile {
    font-size: 1.2rem;
    color: #333;
    margin: 0 10px;
    transition: color 0.3s;
}

.social-link-mobile:hover {
    color: var(--primary-color);
}

/* Pour le menu dropdown dans l'offcanvas */
.offcanvas .dropdown-menu {
    position: static;
    float: none;
    width: 100%;
    background-color: #f8f9fa;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding-left: 15px;
    margin-top: 0;
}

/* Animations et transitions */
.offcanvas {
    transition: transform 0.3s ease-in-out;
}

@media (min-width: 992px) {
    .offcanvas {
        display: none; /* Cacher l'offcanvas sur desktop */
    }
}
/* Floating shapes animation */
.floating-shapes {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.shape {
    position: absolute;
    background-color: #0e5da0;
    opacity: 0.03;
    border-radius: 50%;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -150px;
    animation: float 25s infinite linear;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -100px;
    animation: float 30s infinite linear reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    left: 20%;
    animation: float 35s infinite linear;
}

.shape-4 {
    width: 180px;
    height: 180px;
    top: 40%;
    left: 70%;
    animation: float 40s infinite linear reverse;
}

.shape-5 {
    width: 120px;
    height: 120px;
    bottom: 30%;
    right: 15%;
    animation: float 22s infinite linear;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(50px, -50px) rotate(120deg);
    }
    66% {
        transform: translate(-30px, 30px) rotate(240deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* Pour assurer que le contenu reste au-dessus des formes */
.main-content {
    position: relative;
    z-index: 1;
}