/* ===================== ШРИФТ ===================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ===================== БАЗА ===================== */
:root{ --vt-radius:16px; }

/* Доп. палитра под мягкий розовый */
:root{
    --vt-text:#2e2e2e;
    --vt-muted:#8d7a85;
    --vt-heading:#1c1c1c;
    --vt-accent:#e98ea9;     /* розовый акцент (бывш. #1d4ed8) */
    --vt-accent-2:#d77293;   /* hover-акцент (бывш. #2563eb) */
    --vt-line:1.65;
    --vt-bg:#fff6f8;         /* общий фон страницы */
    --vt-bg-soft:#fffafc;    /* светлый фон карточек/плейсхолдеров */
}

/* Общие базовые стили */
html, body { height: 100%; }

body {
    font-family: 'Inter', 'Segoe UI', Roboto, Arial, sans-serif;
    background: var(--vt-bg);
    margin:0;
    color: var(--vt-text);
    line-height:1.65;
    font-size:1rem;
}

/* Контейнер фиксированной ширины */
.container-1120 { max-width:1120px; margin:0 auto; padding:0 16px; }

/* Заголовки */
h1, h2, h3, h4, h5, h6 {
    font-family:'Inter','Segoe UI',Roboto,Arial,sans-serif;
    color: var(--vt-heading);
    font-weight:700;
    margin-bottom:.75rem;
}

/* Абзацы */
p { font-size:1.05rem; margin-bottom:1rem; color: var(--vt-muted); }

/* Ссылки */
a { text-decoration:none; color: var(--vt-accent); transition:color .2s ease; }
a:hover { color: var(--vt-accent-2); }

/* Кнопки */
.btn { font-family:'Inter','Segoe UI',Roboto,Arial,sans-serif; font-size:1rem; }

/* Топбар */
.topbar{ background:#fff; border-bottom:1px solid rgba(0,0,0,.05); }

/* Вспомогательная типографика (совместимость) */
.display-hero{
    font-family:'Playfair Display','Times New Roman',serif;
    font-weight:800; letter-spacing:.2px; line-height:1.15;
}
.lead-muted{ color: var(--vt-muted); font-size:1.05rem; line-height:1.7; }

/* ===================== HERO COVER (светлый фон и тёмный текст) ===================== */
.hero-cover {
    position: relative;
    min-height: 62vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Убираем затемнение (делаем еле заметный розовый фильтр для глубины) */
.hero-cover::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.35);
}

/* Контент теперь тёмный */
.hero-inner {
    position: relative;
    z-index: 1;
    color: #1f1f1f; /* ← читаемый тёмный текст */
}

/* Заголовок */
.hero-title {
    font-weight: 800;
    margin: 0 0 .6rem;
    font-size: clamp(1.8rem, 2.6vw + 1.2rem, 3rem);
    line-height: 1.1;
    color: #1c1c1c; /* ← тёмный */
    text-shadow: none;
}

/* Подзаголовок */
.hero-lead {
    font-size: clamp(1rem, .8vw + .9rem, 1.25rem);
    margin: 0 0 1rem;
    color: #3f3f3f; /* чуть светлее, но всё ещё контрастный */
    opacity: 0.9;
    text-shadow: none;
}
/* ==== ЧЁРНЫЙ ТЕКСТ В HERO ==== */
.hero-inner {
    color: #111; /* базовый цвет для всего текста */
}

.hero-title {
    color: #000 !important; /* глубокий чёрный */
    text-shadow: none !important;
}

.hero-lead {
    color: #222 !important; /* чуть мягче заголовка */
    opacity: 1 !important;
    text-shadow: none !important;
}
/* ==== Кнопка "Написать ВКонтакте" — тёмная стильная версия ==== */
.btn-outline-light {
    color: #fff !important;
    background: #1f1f1f !important;          /* насыщенный графитовый */
    border: 1px solid #1f1f1f !important;
    font-weight: 600;
    box-shadow: 0 6px 16px rgba(0,0,0,.2);
    transition: all .25s ease;
}

.btn-outline-light:hover {
    background: var(--vt-accent) !important; /* мягкий розовый при наведении */
    border-color: var(--vt-accent) !important;
    color: #fff !important;
    box-shadow: 0 8px 22px rgba(233,142,169,.35);
}


.hero-actions{
    display: inline-flex;
    gap: .6rem;
    flex-wrap: wrap;
    justify-content: center;
}
.hero-actions .btn{
    padding: .6rem 1.1rem;
    font-weight: 700;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(0,0,0,.18);
}
.btn-outline-light{
    color:#fff;
    border:1px solid rgba(255,255,255,.85);
    background: transparent;
}
.btn-outline-light:hover{
    color:#111;
    background:#fff;
    border-color:#fff;
}

/* ===================== ПРАЙСЫ ===================== */
.prices-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}
@media (max-width:991.98px){ .prices-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:575.98px){ .prices-grid{ grid-template-columns:1fr; } }

/* Карточка прайса */
.price-card{
    margin:0;
    background:#fff;
    border-radius:16px;
    padding:12px;
    box-shadow:0 10px 24px rgba(0,0,0,.08);
    text-align:center;
    transition:transform .2s ease, box-shadow .2s ease;
}
.price-card:hover{
    transform:translateY(-2px);
    box-shadow:0 14px 28px rgba(0,0,0,.12);
}

/* Изображение в карточке прайса — полностью видно (без обрезки) */
.price-img{
    width:100%;
    height:520px;        /* компактная высота */
    object-fit:contain;  /* чтобы ничего не урезалось */
    display:block;
    background: var(--vt-bg-soft);
    border-radius:12px;
    transition:transform .25s ease;
}
.price-card:hover .price-img{ transform:scale(1.01); }

@media (max-width:991.98px){ .price-img{ height:440px; } }
@media (max-width:575.98px){ .price-img{ height:380px; } }

/* Подпись под прайсом */
.price-caption{
    margin-top:12px;
    font-size:1.06rem;
    font-weight:700;
    color: var(--vt-accent);
    letter-spacing:.2px;
    transition:color .15s ease, transform .15s ease;
}
.price-card:hover .price-caption{
    color: var(--vt-accent-2);
    transform:translateY(-1px);
}

/* На всякий случай скрыть старые подсказки */
.prices-hint, .prices__hint, .prices__note{ display:none !important; }

/* ===================== ГЛАВНАЯ: Блок с фото "О нас" ===================== */
.about-photos{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin:1.8rem 0 2.2rem;
}
.about-photos img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:10px;
    box-shadow:0 6px 16px rgba(0,0,0,.08);
}
@media (max-width:560px){
    .about-photos{ grid-template-columns:1fr; }
    .about-photos img{ height:220px; }
}

/* ===================== ОБОРУДОВАНИЕ ===================== */
/* Главное изображение (умеренное) */
.laser-photo-main{
    width:100%;
    max-width:640px;
    height:auto;
    border-radius:14px;
    object-fit:cover;
    box-shadow:0 8px 20px rgba(0,0,0,.10);
    display:block;
    margin:0 auto;
    transition:transform .3s ease, box-shadow .3s ease;
}
.laser-photo-main:hover{
    transform:scale(1.01);
    box-shadow:0 10px 28px rgba(215,114,147,.18);
}

/* Миниатюры */
.thumb{
    width:100%;
    max-width:190px;
    height:130px;
    object-fit:cover;
    border-radius:10px;
    box-shadow:0 4px 12px rgba(0,0,0,.08);
    cursor:pointer;
    transition:transform .25s ease, box-shadow .25s ease;
}
.thumb:hover{
    transform:scale(1.05);
    box-shadow:0 8px 20px rgba(215,114,147,.22);
}
.d-flex.justify-content-between img{ margin:0 auto; }

@media (max-width:992px){
    .thumb{ max-width:32%; height:100px; }
}
@media (max-width:575.98px){
    .thumb{ max-width:100%; height:auto; margin-bottom:10px; }
    .d-flex.justify-content-between{ flex-direction:column; align-items:center; }
}

/* ===================== МАСТЕР / ДРУГИЕ ФОТО ===================== */
.studio-carousel .carousel-item img{
    width:100%;
    height:auto;
    border-radius:12px;
}
.master-photo-wrap{
    height:100%;
    min-height:480px;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 8px 24px rgba(0,0,0,.08);
}
.master-photo{ width:100%; height:100%; object-fit:cover; display:block; }
.master-photo-mobile{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:12px;
    box-shadow:0 6px 18px rgba(0,0,0,.08);
}
@media (max-width:991.98px){ .master-photo-wrap{ min-height:360px; } }

/* ===================== О НАС — центрованный аккуратный блок ===================== */
.about-text{
    text-align:center;
    max-width:800px;
    margin:2rem auto;
    line-height:1.9;
    color: var(--vt-text);
    font-size:1.05rem;
}
.about-text h3{
    text-transform:uppercase;
    font-weight:700;
    font-size:1.1rem;
    color: var(--vt-accent-2);
    letter-spacing:1px;
    margin-bottom:1rem;
}
.about-text ul{
    list-style:none;
    padding:0;
    margin:0 auto 1.5rem;
}
.about-text li{ margin:4px 0; }
.about-text p{
    margin-top:1.5rem;
    font-size:1.05rem;
    color: var(--vt-muted);
    line-height:1.8;
}

/* ===================== TYPOGRAPHY — единый стиль на главной ===================== */
html{ font-size:16px; }
@media (max-width:575.98px){ html{ font-size:15px; } }
.small, small{ color:var(--vt-muted); }
.lead{ font-size:1.125rem; color: var(--vt-muted); }
.lead-muted{ font-size:1.06rem; color: var(--vt-muted); }

/* Список «с галочками» (совместимый) */
.feature-hearts{
    list-style:none;
    margin:.4rem 0 0;
    padding:0;
}
.feature-hearts li{
    position:relative;
    padding-left:1.35rem;
    margin:.35rem 0;
}
.feature-hearts li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:.1rem;
    font-weight:800;
    color: var(--vt-accent);
}

/* Секции — унифицированные отступы */
section{ padding-top:1.25rem; padding-bottom:1.25rem; }
.hero-about{ padding-top:1.6rem; padding-bottom:1.6rem; }

/* Подписи под изображениями */
.caption, .price-caption{
    margin-top:.6rem;
    font-weight:700;
    font-size:1rem;
    color: var(--vt-accent);
}

/* Контейнер */
.container-1120{ max-width:1120px; margin:0 auto; padding:0 16px; }

/* ===================== О НАС (фото слева, текст справа) ===================== */
.about-photos-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-photos-side img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
    transition: transform .3s ease, box-shadow .3s ease, opacity .6s ease;
    opacity: 0;
    transform: translateX(-20px);
}

/* Плавное появление */
.about-photos-side img.visible {
    opacity: 1;
    transform: translateX(0);
}

@media (min-width: 992px) {
    .about-photos-side img {
        height: 260px;
    }
}

@media (max-width: 991.98px) {
    .about-photos-side {
        flex-direction: row;
        justify-content: center;
    }
    .about-photos-side img {
        width: 48%;
        height: 200px;
    }
}

/* Картинки в блоке О НАС */
.about-left-pics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.about-pic {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .08);
    display: block;
}
.about-pic:hover{
    box-shadow:0 10px 26px rgba(233,142,169,.22);
}

@media (max-width: 991.98px) {
    .about-pic { height: 200px; }
}

/* Галочки у списка */
.about-checks li {
    position: relative;
    padding-left: 1.6rem;
    margin: .4rem 0;
    line-height: 1.6;
    color: var(--vt-text);
}
.about-checks li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--vt-accent-2);
    font-weight: 700;
}

/* ===== DIKIDI MODAL ===== */
.vt-modal {
    position: fixed;
    inset: 0;
    z-index: 1060;           /* выше, чем карусели/хедер */
    display: none;
}
.vt-modal.show { display: block; }

.vt-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, .55);
    backdrop-filter: blur(2px);
}

.vt-modal__dialog {
    position: absolute;
    inset: 0;
    margin: 4vh auto;
    max-width: 980px;
    width: calc(100% - 24px);
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 24px 48px rgba(233,142,169,.25);
    display: flex;
    flex-direction: column;
}

.vt-modal__close {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: #fde2e8;
    color: #6b021f;
    font-size: 18px;
    cursor: pointer;
}
.vt-modal__close:hover { background: #fbc6d5; }

.vt-modal__body {
    padding: 46px 14px 14px 14px;  /* отступ под кнопку закрытия */
    height: 72vh;
}

.vt-iframe-wrap {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: var(--vt-bg-soft);
    box-shadow: inset 0 0 0 1px #e5e7eb;
}
#dikidiFrame {
    width: 100%;
    height: 100%;
    border: 0;
}

.vt-fallback {
    margin-top: 10px;
    text-align: center;
    color: var(--vt-muted);
    font-size: .95rem;
}

@media (max-width: 768px) {
    .vt-modal__dialog {
        margin: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
    .vt-modal__body {
        height: calc(100% - 46px);
    }
}
/* ===== /DIKIDI MODAL ===== */
/* ===================== ЭЛЕГАНТНЫЙ ЗАГОЛОВОК ===================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&display=swap');

.elegant-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 2.8rem;
    color: #1f1f1f;
    text-align: center;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
    .elegant-title {
        font-size: 2rem;
        line-height: 1.2;
    }
}
