
.logout-button {
    background-color: #850000; 
    color: #fff; 
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.logout-button:hover {
    background-color: #6c0000; 
}

.login-button {
    background-color: #850000;
    color: #fff;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    display: block;
    margin: 0 auto; 
    max-width: 200px; 
}

.login-button:hover {
    background-color: #6c0000; 
}

/* ------------------------------ POLICE ---------------------------------- */
@font-face {
    font-family: 'Gold_Lines';
    font-weight: 400;
    src: url('../Polices/gold_lines/Gold_Lines_Serif_Trial.woff') format('woff'),
         url('../Polices/gold_lines/Gold_Lines_Serif_Trial.otf') format('opentype');
}
@font-face {
    font-family: 'Minions';
    font-weight: 400;
    src: url('../Polices/Minion_Pro_Cond_Subhead/Minion_Pro_Cond_Subhead.otf') format('opentype');
}

#Titre {
    font-family: 'Gold_Lines';
    color: #000000;
    font-weight: bolder;
    font-size: 18px ;
    letter-spacing: 6px;
}

#TitreOeuvre {
    padding-top: 15px;
    font-family: "Minions";
    font-weight: bolder;
    font-size: 28px;
    letter-spacing: 1.1px;
}

/* -------------------------------- MOSAIC -------------------------------- */
.mosaic-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin: 10px;
}

.mosaic-container:hover {
    transform: scale(0.979);
    transition: transform 0.3s ease;
    box-shadow: #C51028;
}

.mosaic-container {
    display: flex;
    width: 48%;
    min-width: 300px; 
    margin: 10px;
    box-sizing: border-box;
    box-shadow: 1px 1px 2px rgba(105, 99, 99, 0.6);
    border-radius: 10px;
    background-color: #d7d7d7;
}

.image-container {
    width: 100%;
    padding-bottom: 0%;
    position : relative;
    overflow: hidden;
}

img {
    width: 100%;
    height: 100%;
    border-radius: 7.8px;
}

.text-container {
    width: 100%;
    letter-spacing: 0.1px;
    font-size: 18px;
    padding-left: 10px;
}

.text-container a:hover {
    color: #C51028;
}

.text-container a {
    font-family: 'Minions';
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
}

.text-container .bolder {
    font-weight: bolder;
}

.divFormulaire{
    padding-top: 70%;
}

body, h1, h2, p, ul, li {
    margin: 0;
    padding: 0;
}

#logo {
    width: 49px;
    height: auto;
    margin: 1px auto;
    transition: width 0.3s ease;
}

.small-logo {
    width: 30px;
}

/* ------------------------------ HEADER ------------------------------------ */
header {
    background-color: #ffffff;
    color: #ffffff;
    padding: 10px;
    text-align: center;
    letter-spacing: 10px;
    position: sticky;
    top: 0;
    border: 0.3px solid #ffffff; 
    z-index: 900;
    transition: padding 0.7s ease, height 0.7s ease;
}



.divTitre {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 180px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: #850000;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline-block;
    margin: 0 10px;
}

nav ul li a {
    padding: 10px 20px;
    text-decoration: none;
    color: #ffffff;
    background-color: #850000;
    border-radius: 5px;
}

/* ---------------------------------- BODY ---------------------------------- */
body {
    background-color: rgb(250, 250, 250);
}

/* ------------------------------- FOOTER ---------------------------------- */
footer {
    font-family: 'Minions';
    margin-top: 20px;
    padding: 10px;
    background-color: #e4e3e3;
    display: flex;
    flex-direction: row;
}

#Copyright{
    width: 100%;
    display: flex;
    justify-content: left;
}

#Contact{
    width: 40%;
    display: flex;
    justify-content: right;
}

/* ------------------------------- MEDIA QUERIES ---------------------------------- */

@media only screen and (max-width: 768px) {
    .mosaic-container {
        width: 100%; 
        min-width: auto; 
        margin: 0; 
    }

    .image-container {
        padding-bottom: 56.25%; 
    }
}


