/**
 * Definições de fontes para o site Essência Company
 * Implementação da fonte Fahkwang
 */

/* Definições das fontes Fahkwang em vários pesos */
@font-face {
    font-family: 'Fahkwang';
    src: url('../fontes/fahkwang/Fahkwang-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fahkwang';
    src: url('../fontes/fahkwang/Fahkwang-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Fahkwang';
    src: url('../fontes/fahkwang/Fahkwang-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fahkwang';
    src: url('../fontes/fahkwang/Fahkwang-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Fahkwang';
    src: url('../fontes/fahkwang/Fahkwang-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fahkwang';
    src: url('../fontes/fahkwang/Fahkwang-ExtraLightItalic.ttf') format('truetype');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Fahkwang';
    src: url('../fontes/fahkwang/Fahkwang-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fahkwang';
    src: url('../fontes/fahkwang/Fahkwang-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Fahkwang';
    src: url('../fontes/fahkwang/Fahkwang-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fahkwang';
    src: url('../fontes/fahkwang/Fahkwang-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Fahkwang';
    src: url('../fontes/fahkwang/Fahkwang-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fahkwang';
    src: url('../fontes/fahkwang/Fahkwang-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* Aplicação da fonte em todo o site */
html, body {
    font-family: 'Fahkwang', Arial, sans-serif;
}

/* Ajustes específicos para elementos diferentes */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Fahkwang', Arial, sans-serif;
    font-weight: 600;
}

p, span, a, li, input, textarea, button {
    font-family: 'Fahkwang', Arial, sans-serif;
}

/* Classes de uso comum */
.light-text {
    font-weight: 300;
}

.regular-text {
    font-weight: 400;
}

.medium-text {
    font-weight: 500;
}

.semibold-text {
    font-weight: 600;
}

.bold-text {
    font-weight: 700;
}
