/* ========================================
   BASE GÉNÉRALE
   ======================================== */


body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--theme-text);
    background-color: var(--bs-body-bg);
}



/* ========================================
   LINKS
   ======================================== */

a {
  color: inherit;
  text-decoration: underline dotted;
}

a:hover {
  color: inherit;
  text-decoration: underline dotted;
  color: darkgrey;
}



/* ========================================
   IMAGES
   ======================================== */

.entry-content img {
    max-width: 500px !important;
    max-height: 500px !important;
    object-fit: cover !important;
}

/* ========================================
   TYPOGRAPHIE - TITRES
   ======================================== */

/* H1 - Titre principal de la page */
.entry-title {
    color: var(--theme-primary);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

/* H2 - Sections principales dans le contenu */
.entry-content h2 {
    color: var(--theme-primary);
    font-size: 28px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    line-height: 1.3;
    padding-bottom: 10px;
}

/* H3 - Sous-sections */
.entry-content h3 {
    color: var(--theme-primary);
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    line-height: 1.3;
}

/* H4 - Sous-sous-sections */
.entry-content h4 {
    color: var(--theme-primary);
    font-size: 18px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 12px;
}