/* COGYC - Typography Customization
   Tailles de police optimisées et justification des textes
   ================================================== */

/* Reset des tailles de police par défaut du body */
body {
    font-size: 16px !important; /* Taille standard recommandée */
    line-height: 1.6 !important; /* Hauteur de ligne optimisée pour la lisibilité */
}

/* Paragraphes - Taille standard et justification */
p {
    font-size: 16px !important;
    line-height: 1.6 !important;
    text-align: justify !important;
    margin-bottom: 1rem !important;
}

/* Titres - Réduction des tailles */
h1, .main-title, .intro-title {
    font-size: 2.25rem !important; /* 36px - au lieu de tailles plus grandes */
    line-height: 1.2 !important;
    margin-bottom: 1.5rem !important;
}

h2, .sub-title {
    font-size: 1.875rem !important; /* 30px */
    line-height: 1.3 !important;
    margin-bottom: 1.25rem !important;
}

h3 {
    font-size: 1.5rem !important; /* 24px */
    line-height: 1.4 !important;
    margin-bottom: 1rem !important;
}

h4 {
    font-size: 1.25rem !important; /* 20px */
    line-height: 1.4 !important;
    margin-bottom: 0.875rem !important;
}

h5 {
    font-size: 1.125rem !important; /* 18px */
    line-height: 1.4 !important;
    margin-bottom: 0.75rem !important;
}

h6 {
    font-size: 1rem !important; /* 16px */
    line-height: 1.4 !important;
    margin-bottom: 0.75rem !important;
}

/* Textes spécialisés */
.lead {
    font-size: 1.125rem !important; /* 18px - légèrement plus grand que le texte normal */
    line-height: 1.6 !important;
    text-align: justify !important;
}

/* Listes - Justification et espacement */
ul li, ol li {
    font-size: 16px !important;
    line-height: 1.6 !important;
    text-align: justify !important;
    margin-bottom: 0.5rem !important;
}

/* Blockquotes */
blockquote p {
    font-size: 1.125rem !important;
    line-height: 1.5 !important;
    text-align: justify !important;
    font-style: italic !important;
}

/* Textes de navigation et menus - Tailles normales */
.navbar-nav .nav-link {
    font-size: 15px !important;
}

/* Footer - Texte plus petit */
.footer-style-one {
    font-size: 14px !important;
}

.footer-style-one p {
    font-size: 14px !important;
    text-align: left !important; /* Footer pas justifié */
}

/* Breadcrumb */
.page-breadcrumb {
    font-size: 14px !important;
}

/* Boutons - Textes normaux */
.btn, .msg-btn, .btn-eighteen {
    font-size: 15px !important;
}

/* Cards et blocs de contenu */
.block-style-six p, 
.block-style-fifteen p,
.service-details-meta p {
    font-size: 16px !important;
    line-height: 1.6 !important;
    text-align: justify !important;
}

/* Sections spéciales - Maintenir la justification */
.fancy-feature-five p,
.counter-block-one p,
.form-style-one p {
    text-align: justify !important;
}

/* Médias queries pour responsive */
@media (max-width: 768px) {
    body {
        font-size: 15px !important;
    }
    
    h1, .main-title, .intro-title {
        font-size: 1.875rem !important; /* 30px sur mobile */
    }
    
    h2, .sub-title {
        font-size: 1.5rem !important; /* 24px sur mobile */
    }
    
    p, .lead {
        font-size: 15px !important;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px !important;
    }
    
    h1, .main-title, .intro-title {
        font-size: 1.625rem !important; /* 26px sur très petit écran */
    }
    
    h2, .sub-title {
        font-size: 1.375rem !important; /* 22px sur très petit écran */
    }
    
    p, .lead {
        font-size: 14px !important;
    }
}