/*
================================================================================
header.css 
================================================================================
Version 1.0 - Header CSS for Educational Website
Auteur : Emile SNYERS 
Date : 2025-06-10
/* LICENCE ET CONDITIONS D'UTILISATION
----------------------------------------

Emile SNYERS - Tous droits réservés - 2025

📢Toute utilisation nécessite une autorisation préalable du propriétaire (Emile SNYERS).
🚨Usage non commercial uniquement.

Type d'utilisation autorisée: 
- Utilisation pour des projets éducatifs ou associatifs.
- Ne pas redistribuer sans autorisation.

Critères d'attribution d'une autorisation: 
- Contribution à des projets éducatifs ou associatifs.
- L'entraide et le partage du savoir.
- Contribue à la promotion de l'éducation et de la culture.
----------------------------------------
 */

/*
================================================================================
UNIFIED CSS SYSTEM FOR HISTORY-GEOGRAPHY EDUCATIONAL WEBSITE
================================================================================
Version 2.0 - Complete and optimized interface
Author: Emile SNYERS
Date: 2025-06-10
/* LICENSE AND TERMS OF USE
----------------------------------------

Emile SNYERS - All rights reserved - 2025

📢Any use requires prior authorization from the owner (Emile SNYERS).
🚨Non-commercial use only.

Type of authorized use:
- Use for educational or associative projects.
- Do not redistribute without authorization.

Authorization attribution criteria:
- Contribution to educational or associative projects.
- Mutual aid and knowledge sharing.
---------------------------------------- */

/*
================================================================================
バージョン 2.0 - 完全かつ最適化されたインターフェース
作者：Emile SNYERS 
日付：2025-06-10
/* ライセンスと利用規約
----------------------------------------

Emile SNYERS - 全著作権所有 - 2025

📢いかなる使用も所有者（Emile SNYERS）の事前許可が必要です。
🚨非営利目的での使用に限ります。

許可されている使用タイプ：
- 教育またはアソシエイティブプロジェクトでの使用。
- 許可なく再配布しないでください。

許可付与基準：
- 教育またはアソシエイティブプロジェクトへの貢献。
- 相互援助と知識の共有。
---------------------------------------- */

/*
================================================================================

================================================================================

מחבר: Emile SNYERS / עוזר בינה מלאכותית
תאריך: 2025-06-10
/* רישיון ותנאי שימוש
----------------------------------------

Emile SNYERS - כל הזכויות שמורות - 2025

📢כל שימוש דורש אישור מראש מהבעלים (Emile SNYERS).
🚨לשימוש לא מסחרי בלבד.

סוג השימוש המורשה:
- שימוש לפרויקטים חינוכיים או חברתיים.
- אין להפיץ מחדש ללא אישור.

קריטריונים להענקת אישור:
- תרומה לפרויקטים חינוכיים או חברתיים.
- עזרה הדדית ושיתוף ידע.
---------------------------------------- */

/*
Description : CSS unifié intégrant tous les composants éducatifs nécessaires
Compatibilité : Multi-écrans, système de thèmes dynamiques, IA-friendly
================================================================================
*/
header {
    /* Utilisation de la variable */
    background-color: var(--theme-header); 
    border-radius: 5px;
    padding: 20px;

    text-align: center;
    /* Utilisation de la variable */
    box-shadow: var(--theme-header-shadow); 
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
    header h1 {
    /* Les titres du header suivent la couleur du texte principal */
    color: var(--theme-text);
}
