/* ============================================ */
/* ОБЩИЕ НАСТРОЙКИ                              */
/* ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #2d2d2d;
    background-color: #f5f5f0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================ */
/* ШАПКА (HEADER)                               */
/* ============================================ */
.header {
    background-color: #1a1a1a;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #6b7b3e;
    text-decoration: none;
    letter-spacing: 2px;
}

.nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #6b7b3e;
}

/* ============================================ */
/* ПОДВАЛ (FOOTER)                              */
/* ============================================ */
.footer {
    background-color: #1a1a1a;
    color: #999;
    text-align: center;
    padding: 30px 0;
    margin-top: 60px;
}

.footer a {
    color: #6b7b3e;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* ============================================ */
/* ГЛАВНЫЙ БАННЕР (HERO)                        */
/* ============================================ */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #6b7b3e;
}

.hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
    background: transparent;
    box-shadow: none;
    color: #ddd;
}

.btn {
    display: inline-block;
    background-color: #6b7b3e;
    color: white;
    padding: 14px 35px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background-color: #556b2f;
    transform: translateY(-3px);
}

/* ============================================ */
/* СЕКЦИЯ О НАС                                 */
/* ============================================ */
.about {
    padding: 60px 0;
    text-align: center;
}

.about h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* ============================================ */
/* СЕКЦИЯ ПЕДАГОГОВ                              */
/* ============================================ */
.trainers-section {
    padding: 60px 0;
    text-align: center;
    background-color: #f5f5f0;
}

.trainers-section h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #666;
    margin-bottom: 40px;
    background: transparent;
    box-shadow: none;
}

.trainers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.trainer-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.trainer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.12);
}

.trainer-photo {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s ease;
}

.trainer-card:hover .trainer-photo {
    transform: scale(1.02);
}

.trainer-card h3 {
    font-size: 1.4rem;
    margin: 15px 0 5px;
    color: #1a1a1a;
}

.trainer-card p {
    background: transparent;
    box-shadow: none;
    padding: 0 15px;
    color: #6b7b3e;
    font-weight: 500;
    margin-bottom: 15px;
}

.btn-more {
    background: #6b7b3e;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-more:hover {
    background: #556b2f;
    transform: scale(1.02);
}

/* ============================================ */
/* МОДАЛЬНОЕ ОКНО                               */
/* ============================================ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    max-width: 600px;
    width: 90%;
    max-height: 85vh;
    border-radius: 30px;
    overflow-y: auto;
    position: relative;
    animation: fadeSlideUp 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    color: #666;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #c44536;
}

.modal-trainer {
    padding: 30px;
    text-align: center;
}

.modal-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #6b7b3e;
}

.modal-trainer h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.modal-directions {
    color: #6b7b3e;
    font-weight: 600;
    margin-bottom: 15px;
    background: transparent;
    box-shadow: none;
}

.modal-experience {
    font-size: 1rem;
    background: #f0f0eb;
    padding: 10px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.modal-trainer h3 {
    font-size: 1.2rem;
    margin: 20px 0 10px;
    color: #1a1a1a;
    text-align: left;
}

.modal-trainer p {
    text-align: left;
    background: transparent;
    box-shadow: none;
    padding: 0;
    margin-bottom: 10px;
}

.btn-book {
    background: #6b7b3e;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s, transform 0.2s;
}

.btn-book:hover {
    background: #556b2f;
    transform: scale(1.02);
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================ */
/* ФОРМА ЗАПИСИ                                 */
/* ============================================ */
.booking-section {
    padding: 60px 0;
    background-color: #fff;
}

.booking-form {
    max-width: 700px;
    margin: 0 auto;
    background: #f9f9f5;
    padding: 35px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0d5;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6b7b3e;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: normal !important;
}

.checkbox-label input {
    width: 18px;
    height: 18px;
}

.btn-submit {
    width: 100%;
    background: #6b7b3e;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-submit:hover {
    background: #556b2f;
    transform: translateY(-2px);
}

.form-note {
    font-size: 0.8rem;
    color: #999;
    text-align: center;
    margin-top: 15px;
    background: transparent;
    box-shadow: none;
}

/* Стилизация обязательных полей */
input:required, select:required {
    border-left: 4px solid #6b7b3e;
}

/* ============================================ */
/* БЛОК ЦЕН И АБОНЕМЕНТОВ                       */
/* ============================================ */
.prices-section {
    padding: 60px 0;
    background-color: #f5f5f0;
}

.prices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.price-card {
    background: white;
    border-radius: 25px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.12);
}

.price-card.popular {
    border: 2px solid #6b7b3e;
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #6b7b3e;
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #6b7b3e;
    margin: 15px 0;
}

.price-card ul {
    text-align: left;
    margin: 20px 0;
    background: transparent;
    border: none;
    padding: 0;
}

.price-card li {
    font-size: 0.9rem;
    margin: 10px 0;
    list-style: none;
}

.btn-price {
    background: #6b7b3e;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-price:hover {
    background: #556b2f;
    transform: scale(1.02);
}

/* Акции */
.promo-section {
    background: white;
    border-radius: 30px;
    padding: 40px;
    text-align: center;
}

.promo-section h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.promo-card {
    background: #f9f9f5;
    border-radius: 20px;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.promo-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.promo-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.promo-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6b7b3e;
    margin: 10px 0;
    background: transparent;
    box-shadow: none;
}

.promo-card p {
    background: transparent;
    box-shadow: none;
    padding: 0;
    margin: 5px 0;
    font-size: 0.85rem;
}

.promo-desc {
    font-size: 0.75rem;
    color: #888;
    display: block;
    margin-top: 10px;
}

/* ============================================ */
/* РАСПИСАНИЕ И ВИДЕО                           */
/* ============================================ */
.schedule-section {
    padding: 60px 0;
    background-color: #fff;
}

.schedule-wrapper {
    overflow-x: auto;
    margin: 30px 0;
}

.schedule-table {
    min-width: 700px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.schedule-row {
    display: grid;
    grid-template-columns: 200px repeat(7, 1fr);
    border-bottom: 1px solid #eee;
}

.schedule-row.header {
    background-color: #1a1a1a;
    color: white;
    font-weight: 600;
}

.schedule-row div {
    padding: 12px 8px;
    text-align: center;
    border-right: 1px solid #eee;
}

.schedule-row.header div {
    border-right: 1px solid #333;
}

.schedule-row div:last-child {
    border-right: none;
}

.trainer-name {
    font-size: 0.7rem;
    color: #6b7b3e;
    font-weight: 500;
}

.schedule-row:first-child div {
    font-weight: 600;
}

/* ============================================ */
/* ЗАЛ: ОПИСАНИЕ + ВИДЕО                         */
/* ============================================ */
.hall-section {
    padding: 60px 0;
    background-color: #fff;
}

.hall-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.hall-info {
    flex: 1;
}

.hall-info h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.hall-subtitle {
    font-size: 1rem;
    color: #6b7b3e;
    font-weight: 500;
    margin-bottom: 20px;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.hall-info p {
    background: transparent;
    box-shadow: none;
    padding: 0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.hall-list {
    background: transparent;
    border: none;
    padding: 0;
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.hall-list li {
    list-style: disc;
    font-size: 0.95rem;
    margin: 0;
    padding: 5px 0;
    margin-left: 20px;
}

.hall-area {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 15px;
}

.hall-video {
    flex-shrink: 0;
}

.hall-video video {
    width: 300px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    display: block;
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .hall-wrapper {
        flex-direction: column-reverse;
        gap: 30px;
    }
    
    .hall-list {
        grid-template-columns: 1fr;
    }
    
    .hall-video video {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}/* ============================================ */
/* СТИЛИ ДЛЯ СТРАНИЦЫ FAQ                       */
/* ============================================ */
.faq-hero {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.faq-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.faq-section {
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-toggle {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 25px 20px 25px;
    border-top: 1px solid #eee;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ============================================ */
/* АРЕНДА ЗАЛА (если ещё нет)                   */
/* ============================================ */
.rent-section {
    padding: 60px 0;
    background-color: #f5f5f0;
}

.rent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.rent-card {
    background: white;
    border-radius: 25px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.rent-card:hover {
    transform: translateY(-5px);
}

.rent-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.rent-price {
    font-size: 2rem;
    font-weight: 700;
    color: #6b7b3e;
    margin: 15px 0;
}

.rent-card ul {
    text-align: left;
    margin-top: 20px;
    background: transparent;
    border: none;
    padding: 0;
}

.rent-card li {
    list-style: none;
    margin: 8px 0;
}

.rent-note {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 20px;
    margin-top: 20px;
}

.rent-card.popular {
    border: 2px solid #6b7b3e;
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #6b7b3e;
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ============================================ */
/* ВИДЕО                                       */
/* ============================================ */
.video-section {
    padding: 40px 0;
    text-align: center;
    background-color: #fff;
}

.video-section video {
    max-width: 300px;
    border-radius: 20px;
    margin: 0 auto;
    display: block;
}/* ============================================ */
/* КРУТЯЩАЯСЯ АКЦИЯ                             */
/* ============================================ */
/* ============================================ */
/* КРУТЯЩАЯСЯ АКЦИЯ                             */
/* ============================================ */
.spinner-promo {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 110px;
    height: 110px;
    z-index: 1000;
    cursor: pointer;
    animation: rotatePromo 8s linear infinite;
}

.spinner-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6b7b3e, #8a9c56);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(107, 123, 62, 0.5);
}

.spinner-content {
    text-align: center;
    color: white;
    animation: counterRotate 8s linear infinite;
}

.spinner-price {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.spinner-text {
    font-size: 0.6rem;
    font-weight: 500;
    text-transform: uppercase;
}

.spinner-close {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #333;
    color: white;
    border: none;
    font-size: 12px;
    cursor: pointer;
    opacity: 0.7;
}

.spinner-close:hover {
    opacity: 1;
}

@keyframes rotatePromo {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes counterRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

@media (max-width: 768px) {
    .spinner-promo {
        width: 90px;
        height: 90px;
        bottom: 15px;
        left: 15px;
    }
    .spinner-price {
        font-size: 1.2rem;
    }
}

.spinner-text {
    font-size: 0.7rem;
    font-weight: 500;
}

.spinner-sub {
    font-size: 0.6rem;
    opacity: 0.9;
}

.spinner-close {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #333;
    color: white;
    border: none;
    font-size: 14px;
    cursor: pointer;
    opacity: 0.7;
}

.spinner-close:hover {
    opacity: 1;
}

@keyframes rotatePromo {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes counterRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

@media (max-width: 768px) {
    .spinner-promo {
        width: 100px;
        height: 100px;
        bottom: 15px;
        left: 15px;
    }
    .spinner-price {
        font-size: 1.2rem;
    }
}/* Для доступности: фокус на ссылках и кнопках */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
    outline: 3px solid #6b7b3e;
    outline-offset: 3px;
}