/* global.css */


/* Styles généraux */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

/* Styles pour le header */
header {
    background: linear-gradient(135deg, #6AB7F5, #A3D8F4);
    color: black;
    padding: 30px 0;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Styles pour le header */
.header-container {
    background: linear-gradient(135deg, #B3E5FC, #FFECB3);
    color: black;
    padding: 30px 0;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Styles pour le titre principal du header */
.header-container h1 {
    font-size: 2.5rem; /* Taille de police du titre */
    font-weight: 600;  /* Poids de la police (gras) */
    margin: 0;
}

/* Styles pour le sous-titre du header */
.header-container p {
    font-size: 1.2rem; /* Taille de police du sous-titre */
    font-weight: 400;  /* Poids de la police (normal) */
    margin-top: 10px;
    color: #555;       /* Couleur légèrement grisée pour le sous-titre */
}
/* Styles pour le logo */
.logo-container img {
    max-width: 150px;
    height: auto;
}

/* Styles pour le texte du header */
.header-text {
    flex: 2;
    text-align: center;
}

/* Styles pour le footer */
footer {
    background-color: #f4f4f4;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    color: #666;
    font-size: 0.9rem;
}

/* Styles pour le bouton de retour à l'accueil */
.back-container {
    text-align: center;
    margin: 20px 0;
}

.back-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #6AB7F5;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.back-btn:hover {
    background-color: #549ac4;
}
