*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}

@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
    font-family: "Belgan Aesthetic";
    src: url('../fonts/belgan-aesthetic.ttf');
}

html {
    background-color: #020406;
}

header {
    width: 100vw;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #FCF8EF;
    padding: 16px 72px;
    border-bottom: #FCF8EF solid 1px;
}

.burger-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 24px;
    height: 3px;
    background-color: #FCF8EF ;
    margin: 3px 0;
}

.nav-links {
    list-style: none;
    display: flex;
}

.navbar .nav-links li {
    margin: 0 32px;
    display: flex;
}

.navbar a {
    color: #FCF8EF;
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    font-weight: 200;
}

.navbar .logo, footer .logo {
    color: #FCF8EF;
    font-family: 'Belgan Aesthetic', serif;
    font-size: 32px;
}

#lang_active{
    text-decoration: underline;
    font-weight: bold;
}

body {
    margin: 0;
}

h1, h2 {
    color: #FCF8EF;
    font-family: 'Belgan Aesthetic', serif;
    margin: 0;
}

h1 {
    font-size: 120px;
    line-height: 156px;
}

h2 {
    font-size: 64px;
    line-height: 76px;
}

p {
    color: #FCF8EF;
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 200;
}

button {
    color: #FCF8EF;
    font-family: 'Archivo', sans-serif;
    text-transform: uppercase;
    font-size: 16px;
    border: #FCF8EF solid 1px;
    background: none;
    border-radius: 2rem;
    padding: 16px 24px;
    width: fit-content
}

.title {
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
}

.title-text {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.hero {
    display: flex;
    flex-direction: column;
}

.hero, .a-propos {
    min-height: 100vh;
    margin: 0 72px;
    display: flex;
    justify-content: center;
}

.hero p {
    width: 50%;
}

.a-propos {
    display: flex;
    align-items: center;
}

h3 {
    color: #FCF8EF;
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.a-propos .cat-title {
    margin-bottom: 24px;
}

.a-propos .center-content {
    width: 50vw;
}

.a-propos .center-content p {
    margin-bottom: 8px;
}

.a-propos .center-content .a-propos-text {
    margin-bottom: 24px;
}

.a-propos .center-content .btn-div {
    display: flex;
    justify-content: center;
}


.projets p {
    color: #FCF8EF;
    font-family: 'Archivo', sans-serif;
    font-size: 32px;
    line-height: 40px;
}

.projets .card div:not(.link) {
    margin-bottom: 24px;
}

.projets .card .link a {
    color: #FCF8EF;
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    margin-bottom: 8px;
    margin-right: 8px;
}

.link {
    display: flex;
    justify-content: center;
    align-items: start;
    margin-top: 48px;
}


h4 {
    color: #FCF8EF;
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    font-weight: 200;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.projets .cat-title {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bottom-content {
    display: flex;
    flex-direction: column;
}

.bottom-content .row {
    border-top: #FCF8EF 1px solid;
    display: flex;
    justify-content: center;
}

.bottom-content .row .card.left {
    border-right: #FCF8EF 1px solid;
}

.bottom-content .row .card {
    padding: 48px 96px;
}

.left-content, .container-cover{
    position: relative;
    width: 100%;
    height: auto;
}

.img-a-propos, .cover{
    width: 100%;
    height: auto;
    display: block;
}

footer {
    display: flex;
    flex-direction: column;
    border-top: #FCF8EF 1px solid;
    padding: 48px 72px;
}

footer p {
    font-size: 16px;
    text-align: center;
}

footer div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 48px;
}

footer .footer-link {
    color: #FCF8EF;
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    margin-bottom: 16px;
}

.container-links{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.link-footer {
    display: flex;
}

.link-footer a {
    color: #FCF8EF;
    font-family: 'Belgan Aesthetic', serif;
    font-size: 24px;
    margin-right: 8px;
}

.link-footer img {
    width: 24px;
}

@media screen and (max-width: 900px) {
    .title::after, .left-content::after, .left-content::before{
        display: none;
    }

    .a-propos {
        flex-direction: column;
        justify-content: center;
    }

    .a-propos .center-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .a-propos .cat-title {
        align-self: start;
    }

    .bottom-content .row {
        border-top: #FCF8EF 1px solid;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .bottom-content .row .card.left {
        border-bottom: #FCF8EF 1px solid;
        border-right: none;

    }
    
    .bottom-content .row .card {
        padding: 48px 48px;
    }

    footer {
        align-items: center;
        padding: 24px;
    }

    h4 {
        font-size: 16px;
    }

    footer .logo {
        font-size: 24px;
        margin-bottom: 32px;
    }
    
    footer p {
        font-size: 14px;
    }

    footer div {
        flex-direction: column;
        align-items: center;
        margin-bottom: 32px;
    }

    footer .footer-link {
        font-size: 14px;
    }

    .link-footer {
        display: flex;
        flex-direction: row;
        margin-bottom: 8px;
    }
    
    .link-footer a {
        font-size: 20px;
    }
    
    .link-footer img {
        width: 20px;
    }

    .container-links:nth-child(4) {
        margin-bottom: 8px;
    }


}

@media screen and (max-width: 768px) {
    .navbar {
        padding: 16px 24px;
    }

    .burger-icon {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        background-color: #020406;
        width: 100%;
        top: 60px;
        left: 0;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        position: fixed;
        top: 140px;
        overflow-y: auto;
        height: 100vh;
    }

    .navbar .nav-links.active li {
        margin: 16px 48px;
    }

    .navbar .nav-links.active li:last-child {
        display: flex;
        flex-direction: column;
    }
}

@media screen and (max-width: 425px) {
    section {
        width: 100%;
    }

    h1 {
        font-size: 56px;
        line-height: 64px;
    }
    
    h2 {
        font-size: 32px;
        line-height: 38px;
        margin-bottom: 8px;
    }

    p {
        font-size: 16px;
        font-weight: 200;
        line-height: 24px;
    }

    .hero, .a-propos{
        margin: 0 24px;
    }

    .hero{
        min-height: 75vh;
    }

    .hero p {
        width: 100%;
    }

    .title {
        margin-bottom: 16px;
    }


    button {
        font-size: 16px;
    }

    section {
        margin: 0 16px;
    }

    .a-propos {
        flex-direction: column;
        align-items: start;
    }
    
    .a-propos .center-content {
        width: 100%;
    }


}