/* ==========================================
   STYLE COMPLET DE L'ENTÊTE (entete.css)
   ========================================== */

header {
    background-color: #263238;
    color: #ffffff;
    width: 100%;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.header-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 5px;
}

header h1 {
    margin: 0;
    font-size: 2rem;
    font-weight: 600;
}

.pronote-link {
    display: inline-flex;
    align-items: center;
}

.pronote-logo {
    height: 32px;
    width: auto;
    transition: transform 0.2s ease-in-out;
}

.pronote-logo:hover {
    transform: scale(1.08);
}

header p {
    margin: 5px 0 0 0;
    color: #94a3b8;
    font-size: 1rem;
}
