/* =====================================
   UHR - Université Houphouëtisme de Recherche
   Feuille de style principale
===================================== */

body{
    margin:0;
    font-family: "Segoe UI", Arial, sans-serif;
    background:#f4f6f8;
    color:#222;
}

/* ===============================
   CONTENEUR
================================ */

.uhr-container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ===============================
   HEADER
================================ */

.uhr-topbar{
    background:#0b3d91;
    color:white;
    padding:15px 0;
}

.uhr-topbar-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.uhr-brand{
    text-decoration:none;
    color:white;
}

.uhr-brand-title{
    font-size:20px;
    font-weight:bold;
}

/* ===============================
   MENU
================================ */

.uhr-nav{
    display:flex;
    gap:20px;
}

.uhr-nav a{
    color:white;
    text-decoration:none;
    font-weight:500;
}

.uhr-nav a:hover{
    text-decoration:underline;
}

.uhr-nav a.is-active{
    border-bottom:2px solid white;
}

/* ===============================
   HERO / ACCUEIL
================================ */

.uhr-hero{
    background:white;
    padding:40px 0;
    border-bottom:1px solid #ddd;
}

.uhr-hero h1{
    margin:0;
    font-size:32px;
}

.uhr-hero p{
    font-size:18px;
    margin-top:10px;
    color:#555;
}

/* ===============================
   BOUTONS
================================ */

.uhr-btn{
    display:inline-block;
    padding:10px 18px;
    background:#0b3d91;
    color:white;
    text-decoration:none;
    border-radius:5px;
    font-size:14px;
}

.uhr-btn:hover{
    background:#062c66;
}

.uhr-btn-secondary{
    background:#888;
}

.uhr-btn-secondary:hover{
    background:#555;
}

/* ===============================
   CARDS / MODULES
================================ */

.uhr-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:20px;
    margin-top:30px;
}

.uhr-card{
    background:white;
    border-radius:6px;
    padding:20px;
    box-shadow:0 2px 5px rgba(0,0,0,0.08);
}

.uhr-card h3{
    margin-top:0;
}

.uhr-card p{
    color:#555;
}

/* ===============================
   BIBLIOTHEQUE
================================ */

.uhr-publication{
    background:white;
    padding:20px;
    margin-bottom:20px;
    border-radius:6px;
    box-shadow:0 2px 5px rgba(0,0,0,0.08);
}

.uhr-publication-title{
    font-size:20px;
    margin-bottom:10px;
}

.uhr-publication-meta{
    font-size:14px;
    color:#666;
    margin-bottom:10px;
}

/* ===============================
   FORMULAIRES
================================ */

input, select, textarea{
    width:100%;
    padding:10px;
    margin-top:6px;
    margin-bottom:15px;
    border:1px solid #ccc;
    border-radius:4px;
}

label{
    font-weight:500;
}

/* ===============================
   FOOTER
================================ */

.uhr-footer{
    background:#222;
    color:white;
    text-align:center;
    padding:20px;
    margin-top:40px;
}

.uhr-footer a{
    color:#ccc;
    text-decoration:none;
}

.uhr-footer a:hover{
    color:white;
}

/* ===============================
   TABLEAUX ADMIN
================================ */

table{
    width:100%;
    border-collapse:collapse;
}

th, td{
    padding:10px;
    border-bottom:1px solid #ddd;
}

th{
    background:#f1f1f1;
    text-align:left;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width:768px){

    .uhr-topbar-inner{
        flex-direction:column;
        gap:10px;
    }

    .uhr-nav{
        flex-wrap:wrap;
        justify-content:center;
    }

}



