/*
Theme Name: Jógatokató - Meta setup
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Version: 0.1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

/* Typography setup */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/poppins-v24-latin_latin-ext-regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('fonts/poppins-v24-latin_latin-ext-500.woff2') format('woff2');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/poppins-v24-latin_latin-ext-600.woff2') format('woff2');
}

@font-face {
    font-family: 'Cinzel';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/cinzel-v26-latin_latin-ext-regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Cinzel';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('fonts/cinzel-v26-latin_latin-ext-500.woff2') format('woff2');
}

@font-face {
    font-family: 'Cinzel';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/cinzel-v26-latin_latin-ext-600.woff2') format('woff2');
}

@font-face {
    font-family: 'Cinzel';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/cinzel-v26-latin_latin-ext-700.woff2') format('woff2');
}

:root {
    --jogatokato-color-primary: rgba(153, 131, 85, 1);
    --jogatokato-color-secondary: rgba(255, 255, 255, 1);
    --jogatokato-color-heading: rgba(70, 80, 74, 1);
    --jogatokato-color-text: rgba(56, 56, 56, 1);
    --jogatokato-color-button-bg: rgba(232, 225, 211, 1);
    --jogatokato-color-button-text: rgba(70, 80, 74, 1);
    --jogatokato-font-base: 'Poppins', sans-serif;
    --jogatokato-font-heading: 'Poppins';
    --site-header-height: 50px;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--jogatokato-font-base);
    font-weight: 400;
    color: var(--jogatokato-color-text);
    background: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--jogatokato-font-heading);
    font-weight: 500;
    color: var(--jogatokato-color-heading);
    line-height: 1em;
}

h1 {
    font-size: 4rem;
    letter-spacing: -2px;
}

h2 {
    font-size: 3rem;
    letter-spacing: 0;
}

h3 {
    font-size: 1.5rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

p {
    font-family: var(--jogatokato-font-base);
    font-weight: 400;
    color: var(--jogatokato-color-text);
    font-size: 1rem;
}

button,
.button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    font-family: var(--jogatokato-font-base);
    font-size: 1.25rem;
    font-weight: 400;
    background-color: var(--jogatokato-color-button-bg);
    color: var(--jogatokato-color-button-text);
}

.site-content {
    padding-top: var(--site-header-height, 70px);
}
