body {
    font-family: "Nunito", sans-serif;
    background: #faf7f4;
    color: #333;
}

.navbar-brand {
    font-size: 1.3rem;
    color: #8a6f64 !important;
}

.nav-link {
    color: #6a564e !important;
    font-weight: 500;
}

.nav-link:hover {
    color: #b18778 !important;
}

.navbar-phone a {
    color: #6a5249;
    font-weight: 600;
    text-decoration: none;
}

.navbar-phone i {
    color: #c6a497;
    margin-right: 5px;
    font-size: 18px;
}

.navbar-phone a:hover {
    color: #b18778;
}


/* Пастельная кнопка */
.btn-pastel {
    background: #e9d7cf;
    color: #6a524a;
    border-radius: 8px;
    border: 1px solid #d8c4bc;
    padding: 8px 16px;
    transition: 0.3s;
}

.btn-pastel:hover {
    background: #d8c4bc;
    color: #503d36;
}

/* Футер */
.pastel-footer {
    background: #f2ebe7;
    color: #6a564e;
}

.dropdown-menu {
    border-radius: 12px !important;
    border: 1px solid #e8d8d3;
    background-color: #fff9f6;
}

.dropdown-item {
    color: #5e4a43 !important;
    font-weight: 500;
    padding: 10px 16px;
}

.dropdown-item:hover {
    background-color: #f2e6e1 !important;
    color: #4b3a34 !important;
}

.dropdown-toggle::after {
    margin-left: 6px;
}


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

.banner-slide {
    height: 520px;
    color: #5e4a43;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Исправление слоем псевдоэлемента */
.banner-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0; /* критично */
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 25px 30px;
    background: rgba(255, 247, 243, 0.55);
    backdrop-filter: blur(8px);
    border-radius: 14px;
}

.banner-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
}

.banner-subtitle {
    font-size: 22px;
    font-weight: 400;
    margin-top: 10px;
}

.btn-pastel-lg {
    background: #e9d7cf;
    color: #6a5249;
    border-radius: 10px;
    padding: 14px 28px;
    border: 1px solid #d9c6be;
    font-size: 18px;
    transition: 0.3s;
}

.btn-pastel-lg:hover {
    background: #d8c4bc;
    color: #4a3933;
}

/* Фейд-анимация Bootstrap */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity .9s ease;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
}

/* Фоновые картинки */
.banner-01 {
    background-image: url('/static/img/banner1.png');
}

.banner-02 {
    background-image: url('/static/img/banner2.png');
}

/* Адаптив */
@media (max-width: 768px) {
    .banner-title {
        font-size: 32px;
    }

    .banner-subtitle {
        font-size: 18px;
    }

    .banner-slide {
        height: 430px;
    }
}

/* ===== Блок “С какими запросами я работаю” ===== */

.work-block {
    background: #faf7f4; /* пастельная основа */
}

.section-title {
    font-size: 34px;
    font-weight: 700;
    color: #5e4a43;
    font-family: "Nunito", sans-serif;
}

/* Карточки */
.work-card {
    background: #fff9f6;
    border: 1px solid #f0e5df;
    border-radius: 14px;
    padding: 30px 20px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.work-card i {
    font-size: 42px;
    color: #c6a497;
    margin-bottom: 15px;
}

.work-card p {
    font-size: 20px;
    color: #5e4a43;
    margin: 0;
}

/* Hover эффект */
.work-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    background: #fff4f0;
}

/* ===== Блок Услуг ===== */

.services-block {
    background: #fff9f6;
}

/* Карточки услуг */
.service-card {
    display: block;
    background: #ffffff;
    border: 1px solid #f1e4dd;
    border-radius: 14px;
    padding: 30px 24px;
    text-align: center;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    color: #4f3e36;
}

.service-card i {
    font-size: 48px;
    color: #c6a497;
    margin-bottom: 15px;
    transition: 0.3s;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #4f3e36;
}

.service-card p {
    color: #6d554e;
    margin-bottom: 0;
    font-size: 16px;
}

/* Hover эффект */
.service-card:hover {
    transform: translateY(-6px);
    background: #fff4f0;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.service-card:hover i {
    color: #b88b7c;
}


/* ===== Секция “Записаться на приём” ===== */

.booking-section {
    background: #f6ede9; /* нежный пастельный фон */
    border-top: 1px solid #ecd9d3;
    border-bottom: 1px solid #ecd9d3;
}

.booking-title {
    font-size: 32px;
    font-weight: 700;
    color: #5e4a43;
    margin-bottom: 15px;
}

.booking-text {
    font-size: 18px;
    color: #6b564e;
    line-height: 1.6;
}

/* Главная кнопка */
.btn-book-main {
    background: #e4cdc3;
    color: #5f4841;
    border: 1px solid #d7c0b6;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 18px;
    transition: 0.3s;
}

.btn-book-main:hover {
    background: #d7c0b6;
    color: #453631;
}

/* Вторичная кнопка */
.btn-book-info {
    background: transparent;
    color: #6b564e;
    border: 1px solid #c2b2ac;
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 18px;
    transition: 0.3s;
}

.btn-book-info:hover {
    background: #e9ddd8;
    color: #463834;
}

/* Иконка внутри кнопки */
.btn-book-main i,
.btn-book-info i {
    margin-right: 8px;
    font-size: 20px;
}

/* ===== Расширенный блок “Обо мне” ===== */

.about-short {
    background: #fff9f6;
    border-top: 1px solid #f0e4dd;
    border-bottom: 1px solid #f0e4dd;
}

.about-photo {
    width: 230px;
    height: 230px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #f2e3db;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.about-title {
    font-size: 30px;
    font-weight: 700;
    color: #5e4a43;
    margin-bottom: 15px;
}

.about-text {
    font-size: 18px;
    color: #6d564e;
    line-height: 1.6;
}

/* Виджеты-счётчики */
.stat-box {
    background: #fff;
    border: 1px solid #f1e4dd;
    padding: 15px 10px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.stat-number {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: #5e4a43;
}

.stat-label {
    font-size: 15px;
    color: #846d63;
    margin-top: 4px;
}

/* Кнопка */
.btn-about-more {
    background: #e4cdc3;
    color: #5f4841;
    border: 1px solid #d5c3bb;
    padding: 10px 22px;
    border-radius: 10px;
    font-size: 17px;
    transition: 0.3s;
    text-decoration: none;
}

.btn-about-more:hover {
    background: #d7c0b6;
    color: #453631;
}

.btn-about-more i {
    margin-right: 6px;
}

/* ===== Карусель отзывов ===== */

.reviews-section {
    background: #faf7f4;
    border-top: 1px solid #f0e4dd;
    border-bottom: 1px solid #f0e4dd;
}

/* Карточка отзыва */
.review-card {
    background: #ffffff;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid #f1e4dd;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    max-width: 450px;
}

.review-image {
    width: 100%;
    border-radius: 12px;
    display: block;
    object-fit: cover;
}

/* Пагинация */
.carousel-indicators [data-bs-target] {
    background-color: #c9a99a;
}

.carousel-indicators .active {
    background-color: #8c6f63;
}

/* Стрелки */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(60%) sepia(10%) saturate(300%) hue-rotate(320deg);
    width: 40px;
    height: 40px;
}

/* Адаптив */
@media (max-width: 768px) {
    .review-card {
        max-width: 90%;
    }
}


/* ===== Блок "Контакты" ===== */

.contacts-section {
    background: #fff9f6;
    border-top: 1px solid #f2e3db;
    border-bottom: 1px solid #f2e3db;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    font-size: 18px;
    color: #5e4a43;
}

.contact-item i {
    font-size: 22px;
    color: #c6a497;
    margin-right: 10px;
}

.contact-item a,
.contact-item span {
    color: #5e4a43;
    text-decoration: none;
    transition: 0.3s;
}

.contact-item a:hover {
    color: #b88b7c;
}

/* Кнопка */
.btn-contact {
    background: #e4cdc3;
    color: #5f4841;
    border: 1px solid #d5c3bb;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 18px;
    transition: 0.3s;
    display: inline-block;
    text-decoration: none;
}

.btn-contact:hover {
    background: #d7c0b6;
    color: #453631;
}

/* Карта */
.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #ecd9d3;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}


.about-page-title {
    font-size: 32px;
    font-weight: 700;
    color: #5e4a43;
    margin-bottom: 10px;
}

.about-page-subtitle {
    font-size: 20px;
    color: #7a6359;
    margin-bottom: 15px;
}

.about-page-text {
    font-size: 17px;
    color: #6b564e;
    line-height: 1.7;
}

.about-photo-lg {
    width: 260px;
    height: 260px;
}

/* Таблица образования */
.about-table th {
    background: #f6ede9;
    color: #5e4a43;
}

.about-table td, .about-table th {
    border-color: #ecd9d3;
}

/* Карточки подходов */
.approach-card {
    background: #fff9f6;
    border-radius: 14px;
    padding: 20px 18px;
    border: 1px solid #f0e4dd;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    height: 100%;
}

/* Кредо */
.credo-box {
    background: #f6ede9;
    border-radius: 14px;
    padding: 22px 24px;
    border: 1px solid #e3d2ca;
    font-size: 17px;
    color: #5b463f;
}

/* Кому и как я помогаю */
.format-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px 18px;
    border: 1px solid #f0e4dd;
    height: 100%;
}

.format-card h3 i {
    margin-right: 6px;
}

/* CTA в конце */
.about-cta .section-title {
    font-size: 28px;
}

.about-big-photo {
    width: 100%;
    max-width: 300px;
    border-radius: 12px;
    border: 4px solid #f2e3db;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}


/* ===== КОНТАКТЫ ===== */

.contacts-header {
    background: #fff9f6;
}

.contacts-title {
    font-size: 38px;
    font-weight: 700;
    color: #5e4a43;
}

.contacts-subtitle {
    color: #7a635b;
}

/* Карточки контактов */
.contact-card {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #f0e4dd;
    text-align: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    background: #fff4f0;
}

.contact-card i {
    font-size: 42px;
    color: #c6a497;
    margin-bottom: 10px;
}

.work-list {
    padding: 0;
    list-style: none;
}

.work-list li {
    font-size: 18px;
    margin-bottom: 5px;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    margin: 20px 0 40px;
}

/* Форма */
.contact-form input,
.contact-form textarea {
    border-radius: 10px;
    border: 1px solid #e5d6cf;
}

.contact-form textarea {
    resize: none;
}


/* booking */

/* Заголовок */
.booking-header {
    text-align: center;
    margin-bottom: 30px;
}

.booking-header h2 {
    font-size: 34px;
    font-weight: 700;
    color: #5e4a43;
}

.booking-header p {
    font-size: 18px;
    color: #6d564e;
    margin-top: 10px;
}

/* Календарь */
#my-calendar {
    max-width: 500px;
    margin: 0 auto;
}

.available-day {
    background-color: rgba(197, 159, 140, 0.25) !important;
    border-radius: 6px;
    cursor: pointer;
    color: #5e4a43 !important;
    border: 1px solid #d8c4bc;
}

/* Блок слотов */
#slots-box {
    margin-top: 25px;
    padding: 20px;
    border-radius: 12px;
    background: #fff9f6;
    border: 1px solid #f0e4dd;
    display: none;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

#slots-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: #5e4a43;
}

.slot-button {
    display: inline-block;
    padding: 10px 18px;
    margin: 6px;
    background: #e4cdc3;
    color: #5f4841;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #d5c3bb;
    transition: 0.3s;
}

.slot-button:hover {
    background: #d7c0b6;
    color: #453631;
}

/* services */
.service-detail .service-title {
    font-size: 36px;
    font-weight: 700;
    color: #5e4a43;
}

.service-short {
    font-size: 18px;
    color: #6d564e;
    margin-top: 10px;
    line-height: 1.6;
}

.service-price {
    font-size: 20px;
    color: #8a6f63;
    margin-top: 10px;
}

.service-duration {
    color: #8a6f63;
    font-size: 18px;
}

.service-img {
    width: 100%;
    max-width: 420px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.service-stats .stat-box {
    background: #fff9f6;
    padding: 25px;
    border-radius: 14px;
    border: 1px solid #f0e4dd;
    height: 100%;
}

.stat-box i {
    font-size: 40px;
    color: #c6a497;
    margin-bottom: 10px;
}

.service-features li {
    list-style: none;
    margin-bottom: 12px;
    font-size: 18px;
    color: #5e4a43;
}

.service-features i {
    color: #b99589;
    margin-right: 8px;
}