body {
    width: 100%;
    font-size: 12pt;
    font-family: Georgia, sans-serif;
    background-image: url(FONDSITE.jpg);
    margin: 0;
}

a {
    color: white;
    font-family: Georgia, sans-serif;
}

/* ANIMATIONS*/

.anim {
    animation: rotation 1s infinite linear;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   TEXTE
   ========================= */

#texte {
    filter: blur(0px);
    width: 450px;
    max-width: 100%;
    height: auto;
}

#texte:hover {
    filter: blur(4px);
}

#lum,
#C {
    width: 450px;
    max-width: 100%;
    height: auto;
}

/* =========================
   TITRES
   ========================= */

h1 {
    font-family: Arial Black, sans-serif;
    text-align: center;
    color: white;
}

h2 {
    text-align: center;
    color: white;
}

#effet {
    height: 100%;
    background-color: #BBE2FC;
    color: white;
}

/* =========================
   BLOCS THÉMATIQUES
   ========================= */

.vue {
    width: 100%;
    height: 450px;
    background-color:#FCEBB0;
    display: flex;
	justify-content: flex-start;
}

.Fatigue {
    width: 100%;
    height: 450px;
    background-color: #CD2436;
    display: flex;
	justify-content: flex-start;

}

.concentration {
    width:100%;
    height: 450px;
    background-color:#FCEBB0;
    display: flex;
	justify-content: flex-start;
}

/* =========================
   INTRODUCTION
   ========================= */

.intro {
    width: 70%;
    margin: 40px auto;
    background-color: #CD2436;
    padding: 25px 35px;
    border-radius: 12px;
    border-left: 6px solid #FCEBB0;
    color: white;
    font-size: 1.05rem;
    line-height: 1.7;
    box-shadow: 4px 4px 0px #FCEBB0;
}

/* =========================
   BOÎTES DE CONTENU
   ========================= */

.conteneur-box {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 60px auto;
    padding: 0 20px;
}

.box {
    background-color: #1B348F;
    border: 3px solid #FCEBB0;
    border-radius: 14px;
    width: 290px;
    padding: 25px;
    color: white;
    box-shadow: 4px 4px 0px #CD2436;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeUp 0.5s ease both;
}

.box:hover {
    transform: translateY(-7px);
    box-shadow: 6px 6px 0px #FCEBB0;
    border-color: #CD2436;
}

/* =========================
   HEADER
   ========================= */

header {
    height: 85px;
    background-color: #FCEBB0;
    color: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

/* Logo centré */
header #logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Navigation */
header nav {
    margin-left: auto;
    display: flex;
    align-items: center;
}

header nav ul {
    display: flex;
    margin: 0;
    padding: 0;
}

header li {
    display: inline-block;
    width: 150px;
    height: 60px;
    text-align: center;
    list-style: none;
}

header li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: black;
    text-decoration: none;
}

header li a:hover {
    background-color: red;
    border-radius: 30px;
}

/* Compatibilité ancienne version */

#groupe1 {
    display: inline-block;
    position: relative;
    left: 800px;
    width: 150px;
    text-align: center;
}

#groupe2 {
    display: inline-block;
    position: relative;
    right: 10px;
    width: 150px;
    text-align: center;
}

.membre1 {
    background-color: #CD2436;
    border-radius: 30px;
    display: flex;
	justify-content: flex-start;
}

.membre2{
    background-color: #FCEBB0;
    border-radius: 30px;
    display: flex;
	justify-content: flex-start;
}

#positionTexte{
	width: fit-content;
    margin-left: auto;
    text-align: right;
}

#image-membre{
	width: 212px;
    max-width: 100%;
    height: auto;
}

#Ville{
    position: relative;
    width: fit-content;
    margin-left: auto;
    text-align: right;
    bottom: 300px;
}
/* =========================
   IMAGES
   ========================= */

.EffetGif {
    width: 100%;
    height: auto;
}

#carte{
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/* =========================
   TABLEAU
   ========================= */

tab{
    border: 10px;
   }

/* =========================
   FOOTER
   ========================= */

footer {
    background-color: #FCEBB0;
    color: black;
    text-align: center;
    padding: 30px 1.5rem;
    margin-top: 60px;
}

footer p {
    margin: 5px 0;
    font-size: 14px;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

footer li {
    font-size: 13px;
    color: black;
}

form{
    text-align: center;
    background-color:#CD2436 ;
}