/* ============================================
   БАЗОВЫЕ СТИЛИ И КОНТЕЙНЕРЫ
   ============================================ */

/* ============================================
   ПОДКЛЮЧЕНИЕ ШРИФТА LORA
   ============================================ */
@font-face {
    font-family: 'Lora';
    src: url('/wp-content/themes/nauchim-tochka/assets/fonts/lora/Lora-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lora';
    src: url('/wp-content/themes/nauchim-tochka/assets/fonts/lora/Lora-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Lora';
    src: url('/wp-content/themes/nauchim-tochka/assets/fonts/lora/Lora-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lora';
    src: url('/wp-content/themes/nauchim-tochka/assets/fonts/lora/Lora-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Lora';
    src: url('/wp-content/themes/nauchim-tochka/assets/fonts/lora/Lora-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lora';
    src: url('/wp-content/themes/nauchim-tochka/assets/fonts/lora/Lora-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Lora';
    src: url('/wp-content/themes/nauchim-tochka/assets/fonts/lora/Lora-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lora';
    src: url('/wp-content/themes/nauchim-tochka/assets/fonts/lora/Lora-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* ============================================
   ПОДКЛЮЧЕНИЕ ШРИФТА RUSSIA
   ============================================ */

/* Regular (400) */
@font-face {
    font-family: 'Russia';
    src: url('/wp-content/themes/nauchim-tochka/assets/fonts/russia/russia.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Bold (700) */
@font-face {
    font-family: 'Russia';
    src: url('/wp-content/themes/nauchim-tochka/assets/fonts/russia/russia_bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Black (900) */
@font-face {
    font-family: 'Russia';
    src: url('/wp-content/themes/nauchim-tochka/assets/fonts/russia/russia_black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Black Italic (900 italic) */
@font-face {
    font-family: 'Russia';
    src: url('/wp-content/themes/nauchim-tochka/assets/fonts/russia/russia_blackitalic.otf') format('opentype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

/* ============================================
   ГЛОБАЛЬНЫЕ СТИЛИ
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lora', serif;
    background: #f5f7fa;
    color: #ffffff;
    line-height: 1.5;
}

/* ===== ЗАГОЛОВКИ СО ШРИФТОМ RUSSIA ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Russia', 'Lora', serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Разные начертания для разных уровней заголовков */
h1 {
    font-weight: 900; /* Black — самый жирный */
}

h2, h3 {
    font-weight: 700; /* Bold */
}

h4, h5, h6 {
    font-weight: 400; /* Regular */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ============================================
   КОНТЕЙНЕР
   ============================================ */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   АДАПТИВНОСТЬ
   ============================================ */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
}