﻿/* ============================================================
   Главная страница — секции
   ============================================================ */

/* Заголовки секций */
.section-header {
    max-width: 400px;
    margin: 0 auto 20px auto;
    border-radius: 10px;
    background: #f8f9fa;
    border: 1px solid #e2e2e2;
}

/* Описание клуба */
.club-description {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
}

/* Контейнер для блока с типами тренировок */
.training-container {
    border-radius: 10px;
    background: #fafafa;
}

/* Контейнер карточек */
.training-types {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    margin-top: 10px;
}

/* Карточки типов тренировок */
.training-card {
    border: 1px solid #ddd;
    background: #ffffff;
    border-radius: 10px;
    width: 300px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: 0.2s;
}

    .training-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    }

/* Разделители внутри карточек */
.divider {
    width: 70%;
    height: 1px;
    background: #e5e5e5;
    margin: 14px auto;
}

/* Описание тренировок */
.training-card .desc {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

/* Цена */
.training-card .price {
    font-size: 18px;
    color: #333;
}
