/* Основные стили для лендинга */

/* CSS переменные для цветов */
:root {
    --color-primary: #FAFAFA;
    --color-secondary: #F4F4F5;
    --color-dark: #131316;
    --color-border-translucent: rgba(250, 250, 250, 0.08);
    --color-footer-bg: #1A1A1E;
    --color-footer-text-muted: rgba(250, 250, 250, 0.36);
    --color-footer-links: #D1D1D6;
    --color-accent: #FFDB92;
}

/* Основной шрифт для всего документа */
body {
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    background-color: #131316;
}

/* Стили для заголовков */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Dela Gothic One', cursive;
    font-weight: 400;
    line-height: 1.2;
}

/* Дополнительный класс для элементов с акцентным шрифтом */
.font-dela {
    font-family: 'Dela Gothic One', cursive;
    font-weight: 400;
}

/* Классы для разных весов основного шрифта */
.font-light {
    font-weight: 300;
}

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

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

/* Базовые стили для секций */
.section {
    padding: 60px 0;
}

@media (max-width: 768px) {
    .section {
        padding: 40px 0;
    }
}

/* Общие стили для ссылок */
a {
    transition: all 0.3s ease;
}

/* Общие стили для кнопок */
.btn {
    border-radius: 60px;
    font-family: 'Geologica', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Общие стили для бейджей */
.badge-accent {
    color: var(--color-accent);
    font-family: 'Geologica', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.48px;
}

/* Общие стили для аккордеона */
.accordion-item {
    background: rgba(250, 250, 250, 0.02);
    border-radius: 12px;
    border: 2px solid rgba(250, 250, 250, 0.02);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: rgba(250, 250, 250, 0.06);
    background: rgba(250, 250, 250, 0.04);
}

.accordion-item.active {
    border-color: rgba(250, 250, 250, 0.08);
    background: rgba(250, 250, 250, 0.06);
}

/* Здесь будут добавляться общие стили для всех секций */