@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&family=Libre+Franklin:ital,wght@0,100..900;1,100..900&display=swap');

*{
    font-family: 'DM Serif Text';
}

a{
    text-decoration: none;
    font-weight: bold;
    font-family: 'Libre Franklin';
}

body{
    margin: 0 auto;
}

header.header img{
    width: 10%;
}

header.header {
    background-color: white;
    padding: 1vh;
    display: flex;
    align-items: center;
}


section.top-page{
    background-color: orange;
    height: 25vh;
    padding: 1vh;
}

/* landing page*/

.big-title{
    color:white;
    font-size: 5vh;
    padding: 1vh 5%;
}

.published{
    color:black;
    font-size: 1.5vh;
    padding: 1vh 5%;
}

.box{
    color:black;
    font-size: 1.5vh;
    padding: 1vh 5%;
}

.image{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 40%;
}

/* FORMATAGE BOUTONS HOME SIDE BY SIDE*/
.button-column{
    float: left;
    width: 40%;
    padding: 50px;
}

.button-row{
    content: "";
    display: table;
    clear: both;
}

.homebutton{
    font-family: 'Libre Franklin';
    background-color: white;
    color: black;
    border: none;
    padding: 15px 32px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    padding: 20px 20px;
    margin: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);

    transition: 0.3s;
    cursor: pointer;
}

.homebutton:hover {
    background-color: black;
    color: white;
}



/* FORMATAGE TABLEAU */
td, th{
    font-family: Libre Franklin;
}

table{
    color: black;
    border-collapse: collapse;
    margin: 5% 0;
    font-size: 0.9em;
    min-width: 400px;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

table a{
    color: black;
    font-weight:700;
}

table a:hover{
    color: white;
    background-color: black;
    transition: 0.3s;
}

table thead tr{
    
    background-color: #ffc500;
    color: black;
    text-align: left;
    font-weight: bold;
}

table th, table td{
    padding: 12px 15px;
}

table tbody tr{
    border-bottom: 1px solid black;
}

table tbody tr:nth-last-of-type(even) {
    background-color: white;
}

table tbody tr:nth-last-of-type(odd) {
    background-color: rgb(190, 190, 190);
}

table tbody tr:last-of-type{
    border-bottom: 2px solid black;
}


/* FORMATAGE IMAGES SIDE BY SIDE*/
.image-column{
    float: left;
    width: 40%;
    padding: 5px;
}

.image-row{
    content: "";
    display: table;
    clear: both;
}
/* menu de navigation */

nav.nav{
    font-size: 120%;
    display: flex;
    justify-content: space-between;
    list-style: none;
    width: 40vh;
    margin-left: 50px;

}

nav.nav li{
    color: black;
}

nav.nav a{
    color: orange;
    
}
nav.nav a:hover{
    color: black;
}

nav.vlist a{
    color: black;
}

/* box texte */
section.box{
    background-color: orange;
    min-height: 80vh;
    padding: 5%;
    font-family: 'Libre Franklin';
    text-align: left;
}

section.box div{
    display: flex;
    justify-content: center;
    align-items: center;
}

/* pieds de page */
footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1% 5%;
}

footer a.cgv {
    text-decoration: none;
    color: black;
}

.copyright{
    font-family: Libre Franklin;
}

/* CONTACT */
.contact-container{
    height: 50vh;
}

.contact-form{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}

.contact-form textarea{
    height: 140px;
    padding-top: 15px;
    border-radius: 20px;
}

.contact-form button{
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 15px;
    color: black;
    gap: 10px;
    border: none;
    border-radius: 50px;
    background: white;
    cursor: pointer;
}

.contact-form button:hover{
    background-color: black;
    color: white;
    transition: 0.3s;
}

.contact-inputs:focus{
    border: 1px solid black;
}

.contact-inputs::placeholder{
    color: black;
}

.contact-inputs{
    font-family: 'Libre Franklin';
    font-size: 20px;
    color: black;
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color: black;
    border-radius: 50px;
}
