@import "./variable.css";

/* === FONT FAMILY === */

@font-face {
    font-family: 'Parkinsans-Bold';
    src: url('/fonts/static/Parkinsans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Parkinsans-ExtraBold';
    src: url('/fonts/static/Parkinsans-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Parkinsans-Light';
    src: url('/fonts/static/Parkinsans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Parkinsans-Medium';
    src: url('/fonts/static/Parkinsans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Parkinsans-Regular';
    src: url('/fonts/static/Parkinsans-Refular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Parkinsans-SemiBold';
    src: url('/fonts/static/Parkinsans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

/* === TITLE === */

h1 {
    font-family: 'Parkinsans-ExtraBold', sans-serif !important;
    font-size: 30px !important;
}

h2 {
    font-family: 'Parkinsans-Bold', sans-serif !important;
    font-size: 25px !important;
}

h3 {
    font-family: 'Parkinsans-Bold', sans-serif !important;
    font-size: 20px !important;
}


p, strong, td, tr, li {
    font-family: 'Parkinsans-Light', sans-serif;
    font-size: 16px;
}



/* === COLOR === */
.t-white {
    color: #ffffff !important;
}

.t-red {
    color: var(--primary-color);
}

.t-blue {
    color: var(--blue-color);
}
/* === */

/* === DECORATION === */
.t-underline-none {
    text-decoration: none;
}
.t-underline-none:hover {
    text-decoration: none;
}

.thick-underline {
    text-decoration: underline;
    text-decoration-thickness: 4px;
    text-underline-offset: 4px;
    text-decoration-color: #000;
}

.partial-underline-pseudo {
    position: relative; /* Nécessaire pour positionner le pseudo-élément */
    display: inline-block; /* Permet de limiter la largeur au contenu */
    z-index: 1;
    padding-left: 5px;
    font-size: 23px;
    font-weight: bold;
}

.partial-underline-pseudo::after {
    content: '';
    position: absolute;
    left: 0;
    width: 30px; /* Premier quart de la largeur totale */
    height: 100%; /* Épaisseur du soulignement */
    background-color: #EFF0F2; /* Couleur rouge avec opacité, ajustez selon t-red */
    z-index: -1;
}
/* === */

/* === FONT SIZE === */
/* public/css/text.css */

/* Tailles de police de 2px à 50px, par incréments de 2 */
.fs2  { font-size: 2px; }
.fs4  { font-size: 4px; }
.fs6  { font-size: 6px; }
.fs8  { font-size: 8px; }
.fs10 { font-size: 10px; }
.fs12 { font-size: 12px; }
.fs14 { font-size: 14px; }
.fs16 { font-size: 16px; }
.fs18 { font-size: 18px; }
.fs20 { font-size: 20px; }
.fs22 { font-size: 22px; }
.fs24 { font-size: 24px; }
.fs26 { font-size: 26px; }
.fs28 { font-size: 28px; }
.fs30 { font-size: 30px; }
.fs32 { font-size: 32px; }
.fs34 { font-size: 34px; }
.fs36 { font-size: 36px; }
.fs38 { font-size: 38px; }
.fs40 { font-size: 40px; }
.fs42 { font-size: 42px; }
.fs44 { font-size: 44px; }
.fs46 { font-size: 46px; }
.fs48 { font-size: 48px; }
.fs50 { font-size: 50px; }
/* === */

/* ANCHOR */
.no-style {
    text-decoration: none;

}