/* styles.css */
@font-face {
    font-family: 'Ploquine var';
    src: url('fonts/Ploquine_var-Upright.woff2') format('woff2');
    font-weight: 100 800; /* Define the range of weights available in the variable font */
    font-style: normal;
}

@font-face {
    font-family: 'Baudricourt';
    src: url('fonts/Baudricourt-Regular.woff2') format('woff2');
    font-weight: 400; 
    font-style: normal;
}

@font-face {
    font-family: 'Baudricourt';
    src: url('fonts/Baudricourt-Bold.woff2') format('woff2');
    font-weight: 700; 
    font-style: normal;
}


/* Styles pour les liens */
a {
    color: rgb(0, 0, 0); 
    text-decoration-style: dotted; /* Soulignement du lien */
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
    transition: filter 0.3s ease;
}

a:hover {
    color: rgb(0, 0, 0); /* Couleur du texte du lien au survol */
    text-decoration-style: dotted; /* Soulignement du lien */
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
    filter: blur(2px);
}

body {
    font-family: 'Ploquine var', serif;
    font-weight: 100; /* Thin */
    font-size: 60px;
    line-height: 1.25;
    background-color: white;
    color: black;
    text-align: center;
    padding: 20px;
}

.intro {
    position:relative;
    top: -50px;
}


.intro p {
    font-size: 1.2em;
    margin-bottom: 50px;
}


/* FOOTER */


footer a {
    color: rgb(0, 0, 0); 
    text-decoration: none; /* Soulignement du lien */
    text-underline-offset: 5px;
    transition: filter 0.3s ease;
}

footer a:hover {
    color: rgb(0, 0, 0); /* Couleur du texte du lien au survol */
    text-decoration: none; /* Soulignement du lien */
    text-underline-offset: 5px;
    filter: blur(2px);
}

footer {
    border-top: 1px solid #000;
    padding: 20px 0;
    margin-top: 40px;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    max-width: 2000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left;
}

.footer-section {
    margin: 0 10px;
}


.footer-section h3 {
    font-family: 'Baudricourt', sans-serif;
    font-weight: 700; /* Bold */
    font-size: 14px;
    margin-bottom: 10px;
}

#colonne {
    width: 300px;

}

#colonne2 {
    width: 300px;

}

.footer-section ul {
    font-family: 'Baudricourt', sans-serif;
    font-weight: 400; 
    font-size: 14px;
    line-height: 1,2;
    list-style-type: none;
    padding: 0;
    margin: 5px 0;
}


/* copyright */
.footer-bottom {
    font-family: 'Baudricourt', sans-serif;
    font-weight: 700; /* Bold */
    font-size: 14px;
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #000;
    font-weight: bold;
}


/* téléphone */
@media (max-width: 700px) {
    body {
        font-size: 30px;
    }

    .intro {
        top: -20px;
    }

    .footer-container {
        display:inline;
    }
}