:root {
    --bs-primary: #040f27;  /* Nouvelle couleur principale */
    --bs-primary-rgb: 4, 15, 39;  /* Nouvelle couleur principale */
    --bs-secondary: #00f7ff; /* Nouvelle couleur secondaire */
    --bs-secondary-rgb: 0, 247, 255; /* Nouvelle couleur secondaire */
    --bs-success: #28a745;   /* Nouvelle couleur success */
}

@import "@fontsource/poppins/index.css";

body {
    background-color: var(--bs-primary);
    color: #ebebec;
    /* font-family: 'Poppins', sans-serif; */
    font-size: 0.98rem;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.mt-4 {
    margin-top: 1.5rem!important;
}

.mt-5 {
    margin-top: 2rem!important;
}

.navbar {
    width: 90%;
    margin: auto;
    background-color: var(--bs-primary);
    color: #ebebec!important;
}
.navbar .nav-link {
    color: #ebebec;
    margin: 0 10px;
}
.navbar .nav-link.active {
    color: var(--bs-secondary);
}

.container {
    padding-top: 100px;
}

.container .home {
    display: flex;
    margin: auto;
    margin-top: 100px;
    margin-bottom: 100px;
    /* align-items: center; */
    height: 100vh;
}

.home .title {
    font-size: 3.0em;
    color: var(--bs-secondary);
}

.home .desc {
    margin-top: 30px;
    text-align: justify;

}

.home .techno-logo {
    display: block;
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.home .section-tech {
    margin-top: 100px;
}

.project-card {
    border : 1px solid var(--bs-secondary);
    border-radius: 5px;
    padding: 10px;
    margin: 5px 1%;
    width: 33%;
}

.exp-card {
    padding-left: 25px;
    border-left: 1px solid var(--bs-secondary);
}

.contact-form {
    width: 50%;
}

.contact-info {
    margin: 1rem;
    padding: 1rem;
}

@media (max-width: 991px) {
    .container {
        width: 100%!important;
        padding: 1rem;
        padding-top: 100px;
    }

    .container .home {
        display: flex;
        margin: auto;
        height: 100vh;
    }

    .contact-form {
        width: 100%;
    }
    .contact-info {
        margin: 1rem 0;
        padding: 0;
    }

    .navbar {
        width: 100%;
    }

    .project-card {
        min-width: 100%;
    }
}