/* Arrière-plan général */
body {
    background-image: url('../img/fond.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
}

/* Navbar Ricard */
.navbar {
    background-color: #002868 !important;
    /* Bleu Ricard */
}

.navbar-brand img {
    height: 40px;
}

.navbar-dark .nav-link {
    color: #ffffff;
    transition: color 0.2s ease-in-out;
}

.navbar-dark .nav-link:hover {
    color: #FFCC00;
    /* Jaune Ricard */
}

/* Cartes */
.card {
    background-color: rgba(0, 40, 104, 0.9);
    /* Bleu Ricard semi-transparent */
    color: #fff;
    border: none;
    transition: transform 0.3s ease-in-out, background-color 0.3s;
}

.card:hover {
    transform: scale(1.03);
    background-color: rgba(0, 40, 104, 1);
    /* plus foncé au survol */
}

/* Icônes dans les cartes */
.card i {
    color: #FFCC00;
    /* Jaune Ricard */
}

.clickable-card {
    background-color: rgba(0, 40, 104, 0.9);
    /* Bleu Ricard semi‑transparent */
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease-in-out, background-color 0.3s;
}

.clickable-card:hover {
    transform: scale(1.03);
    background-color: rgba(0, 40, 104, 1);
    /* Plus foncé au survol */
}

.clickable-card .card-body i {
    color: #FFCC00;
    /* Jaune Ricard */ 
}

/* Titres des sections (Photos, etc.) */
h2 {
    color: #FFCC00;
    font-weight: bold;
}

/* Ombres et bordures arrondies pour les images */
img.img-fluid {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.table-striped tbody tr:nth-of-type(odd) {
    color: #FFDE59;
    /* jaune clair */
    background-color: #003366;
    /* bleu Ricard */
}

.table-striped tbody tr:nth-of-type(even) {
    color: #9c8801;
    /* jaune plus foncé */
    background-color: #003366;
    /* bleu Ricard */
}

/* Pour les en-têtes */
.table thead th {
    background-color: #002244;
    /* bleu Ricard plus foncé */
    color: #FFDE59;
    /* jaune clair */
}

/* Pour la card-header */
.card-header {
    background-color: #002244 !important;
    color: #FFDE59 !important;
}