/* Importation des polices Google */
@import url('https://fonts.googleapis.com/css2?family=Domine:wght@400;700&family=Poppins:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Définition des couleurs */
:root {
    --primary-color: #e9711b;
    --background-color: #f6f6f6;
    --text-color: #e9711b;
}

html {
    width: 100%;
    height: 100%;
}

/* Style global */
body {
    font-family: 'Domine', serif;
    background-color: var(--background-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

body>main {
    width: 100%;
    height: 100%;
}

h1,
h2 {
    font-family: 'Barlow';
    text-transform: uppercase;
    font-weight: 900;
}

/* Style des liens */
a {
    color: var(--primary-color);
    text-decoration: none;
}


/* Contenu centré avec padding */
.container {
    padding: 0 15px;
}

/* Taille de texte par défaut */
p,
li {
    font-size: 1rem;
}

/* Header - ajout de padding et alignement */
header {
    padding: 20px;
    color: var(--primary-color);
    text-align: center;
}

.w-7 {
    width: 7% !important;
}

.ck-editor__editable_inline {
    min-height: 300px;
    /* ou ce que tu veux */
}

.bg-orange {
    color: var(--primary-color) !important;
}

.link-mdev:hover {
    text-decoration: underline;
}