/* 1. ГЛОБАЛЬНЫЕ НАСТРОЙКИ */
* {
    /* Применяем шрифт ко всем элементам без исключения */
    font-family: 'Saira Extra Condensed', sans-serif !important;
    text-transform: uppercase; /* Всё в верхнем регистре как в лого */
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    height: auto; 
    min-height: 100%;
}

body {
    font-weight: 300;
    background-color: #ffffff; 
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    color: #000000; /* Цвет основного текста теперь черный */
}

/* 2. ТИПОГРАФИКА */
h1, h2, h3, h4, h5, .section-title, .promo-text, .navbar-brand, .tex {
    font-weight: 100 !important; /* Тонкий как в лого */
    letter-spacing: 5px;        /* Разрядка букв */
    line-height: 1.1;
}

/* Обычные параграфы и списки */
p, li, span, a, .btn {
    font-weight: 200;           /* Чуть плотнее для читаемости */
    letter-spacing: 1px;
}

.card-title {
    font-weight: 400;
    letter-spacing: 2px;
}

/* 3. НАВИГАЦИЯ */
.navbar-color {
    background-color: #000000 !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Цвет ссылок в навбаре, чтобы они были видны на черном фоне */
.navbar-nav .nav-link {
    color: #ffffff !important;
}

.navbar-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

/* 4. СЕКЦИИ */
.start-section, .trener-section, .about-section {
    width: 100%;
    position: relative;
    clear: both;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-box {
    background-color: #000000; 
    padding: 2rem 3rem;
    display: inline-block;
    box-shadow: 10px 10px 0px rgba(255, 255, 255, 0.1);
    margin-top: 150px;
}

.coach-details {
    background-color: #212529 !important;
    border-left: 4px solid #ffffff;
    padding: 20px;
}

/* 5. АНИМАЦИИ */
.hide {
    opacity: 0;
    filter: blur(5px);
    transform: translateX(-50px);
    transition: all 1s;
}

.show {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

/* 6. АДАПТИВНОСТЬ (МОБИЛКИ) */
@media (max-width: 991px) {
    .navbar-center {
        position: static; 
        transform: none;
    }
    .container-fluid {
        display: flex;
        justify-content: space-between !important;
    }
    .navbar-collapse {
        margin-top: 15px;
    }
    .coach-details {
        border-left: none;
        border-top: 4px solid #ffffff;
    }
}

@media (max-width: 768px) {
    body {
        background-attachment: scroll !important;
    }
    .start-section, .trener-section, .about-section {
        min-height: auto;
        padding: 80px 0 !important;
    }
    .promo-box {
        margin-top: 80px;
        padding: 1.5rem;
        display: block;
    }
    .section-title {
        font-size: 1.8rem;
    }
}

/* Общий стиль для информационного блока в меню */
.menu-info-block {
    text-transform: uppercase;
}

.menu-info-block h3 {
    font-weight: 300 !important;
    letter-spacing: 3px;
    margin-top: 2rem;
}

.menu-info-block p {
    font-weight: 100 !important;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.menu-info-block .promo-text {
    font-weight: 100 !important;
    letter-spacing: 6px;
}

/* СТИЛИ ДЛЯ ТЕКСТА О ДЖИУ-ДЖИТСУ (ФИЛОСОФИЯ) */
.philosophy-black-text {
    font-size: 1.8rem;
    font-weight: 200 !important; 
    line-height: 1.3;
    color: #000000 !important;
}

.philosophy-black-subtext {
    font-size: 1.5rem;
    font-weight: 100 !important;
    letter-spacing: 0.5px;
    color: #000000 !important;
    opacity: 0.9;
}

.philosophy-black-text-caps {
    font-size: 1.4rem;
    font-weight: 200 !important;
    letter-spacing: 1.5px;
    color: #000000 !important;
}


@media (max-width: 576px) {
    .image-block-section img {
        height: 300px !important; /* На маленьких телефонах делаем чуть компактнее */
    }
    .image-block-section .promo-text {
        font-size: 2rem !important; /* Уменьшаем заголовок, чтобы не переносился криво */
    }
}
/* Якоря */
section[id] {
    scroll-margin-top: 80px;
}