@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


.left {
    animation: slideInLeft 1s ease-out;
}


body {
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: "Inter", sans-serif;
}

.banner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    margin: 100px 0;
    flex-wrap: wrap;
}

.titre{
    color: var(--text-color);
    font-family: Inter;
    font-size: 68px;
    font-weight: 800;
    width: 670px;
}

.titre-desc{
    color: #737373;
    font-family: Inter;
    font-size: 32px;
    font-weight: 400;
    width: 630px;
}

.btn {
    background-color: var(--menu-color);
    color: var(--text-color);
    font-family: Inter;
    font-size: 40px;
    font-weight: 600;
    padding: 20px 60px;
    border-radius: 100px;
    text-decoration: none;
    margin: 10px 0;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


.btn:active {
    color: #fff;
    background-color: #888888;
}

.mockup {
    max-width: 20%;
    height: auto;
    object-fit: contain;
    animation: slideInRight 1s ease-out;
}

.mission{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin: 100px 0;
    flex-direction: column;
    background: var(--menu-color);
    padding: 20px 0 100px 0;
}

.titre-mission{
    color: var(--text-color);
    font-family: Inter;
    font-size: 40px;
    font-weight: 800;
}

.columns{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
}

.column1, .column2, .column3 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: var(--background-color);
    min-height: 400px;
    border-radius: 50px;
    box-shadow: 0px 33px 19.5px -19px rgba(0, 0, 0, 0.10);
    margin: 20px 20px;
    transition: all 2s cubic-bezier(0.19, 1, 0.22, 1);
    animation: slideInUp 1s ease-out;
    animation-fill-mode: both;
    transform: translateY(0);
}

.column1 {
    animation-delay: 0.2s;
}

.column2 {
    animation-delay: 0.4s;
}

.column3 {
    animation-delay: 0.6s;
}

.column1:hover, .column2:hover, .column3:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.15);
    transition: all 2s cubic-bezier(0.19, 1, 0.22, 1);
}

.mission1, .mission2, .mission3{
    color: var(--text-color);
    width: 80px;
    height: 80px;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}


.title1, .title2, .title3{
    color: var(--text-color);
    font-family: Inter;
    font-size: 24px;
    font-weight: 700;
    margin: 50px 0 0 0;
    width: 50%;
}

.desc1, .desc2, .desc3{
    color: #737373;
    font-family: Inter;
    font-size: 20px;
    font-weight: 400;
    margin: 20px 0 0 0;
    width: 70%;
}

.quisommesnous{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 100px 0 200px 0;
    flex-direction: column;
    animation: fadeIn 1.5s ease-out;
}

.titre-quisommesnous{
    color: var(--text-color);
    font-family: Inter;
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    animation: slideInUp 1s ease-out;
}

.desc-quisommesnous{
    color: var(--text-color);
    font-family: Inter;
    font-size: 24px;
    font-weight: 400;
    margin: 20px 0 0 0;
    width: 70%;
    text-align: center;
    animation: slideInUp 1s ease-out;
    animation-delay: 0.3s;
    animation-fill-mode: both;
}


.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}



@media (max-width: 1070px) {
    .banner {
        gap: 30px;
    }
    .left{
        margin: 0 50px;
    }
    .titre {
        font-size: 48px;
        width: 100%;
        text-align: center;
    }
    
    .titre-desc {
        font-size: 24px;
        width: 100%;
        text-align: center;
    }
    .btn {
        display: block;
        width: fit-content;
        margin: 30px auto;
        font-size: 30px;
        font-weight: 600;
        padding: 15px 40px;
    }
    .mockup {
        max-width: 30%;
        height: auto;
        object-fit: contain;
    }
}

@media (max-width: 768px) {
    .banner {
        margin: 50px 0;
    }
    
    .titre {
        font-size: 36px;
    }
    
    .titre-desc {
        font-size: 20px;
    }
    
    .btn {
        font-size: 20px;
        padding: 8px 30px;
    }
}


.cadreMenu {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    position: fixed !important;
    top: 0 !important;
    left: -100% !important;
    transition: left 0.3s ease !important;
    z-index: 80 !important;
    width: 100% !important;
    height: 100vh !important;
    background-color: var(--menu-color) !important;
    overflow: auto !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.cadreMenu.active {
    left: 0 !important;
}

.no-scroll {
    overflow: hidden !important;
}

.menu-burger {
    display: block !important;
    z-index: 90 !important;
}

.pfp_navbar_div {
    margin: 0 !important;
}

.middleMenu {
    margin-bottom: 150px !important;
}

.middleMenu div a p, .bottomMenu div a p {
    margin: 0 auto !important;
}

.cadreMenu svg {
    margin: 0 !important;
}

.middleMenu div a, .bottomMenu div a {
    width: fit-content !important;
    height: 33px !important;
    margin: 0 !important;
    align-items: center !important;
    gap: 10px !important;
}