/*
Theme Name: DVA COM TWO
Author: Volodymyr Diachenko
Description: Base styles, reset, fonts and typography.
Version: 2026-06-14
Requires at least: 7.0
Requires PHP: 8.5
Text Domain: dvacom
*/

/* 1. Reset (Сброс стилей) */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 2. Fonts (Подключение Inter из папки assets/fonts/) */
@font-face {
    font-family: 'Inter';
    src: url('assets/fonts/inter-v20-cyrillic_latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Inter';
    src: url('assets/fonts/inter-v20-cyrillic_latin-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Inter';
    src: url('assets/fonts/inter-v20-cyrillic_latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Inter';
    src: url('assets/fonts/inter-v20-cyrillic_latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Inter';
    src: url('assets/fonts/inter-v20-cyrillic_latin-800.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
}
@font-face {
    font-family: 'Inter';
    src: url('assets/fonts/inter-v20-cyrillic_latin-900.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
}

/* 3. Base Typography (Типографика) */
body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

