@charset "UTF-8";

/* Шрифты подключены в <head> (Google Fonts: Manrope + Playfair Display, display=swap) */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    /* colors */
    --titlecolor:#FFFFFF;
    --backcolor:#333C42;
    --footercolor: #242B33;
    --textcolor:#E9F3FF;

    /* шрифтовая пара: serif — бренд/слоганы, sans — интерфейс/тело */
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Manrope', 'Helvetica Neue', Helvetica, Arial, sans-serif;

    /* единый вертикальный ритм между секциями */
    --section-gap-y: 96px;
}

h1 {
    font-family: var(--font-serif);
    font-size: 55.12pt;
    color: var(--textcolor);
}
h2 {
    font-size: 33pt;
    font-family: var(--font-serif);
    color: var(--textcolor);
}

h3 {
    font-size: 25pt;
    color: var(--textcolor);
    font-family: var(--font-sans);
    font-weight: normal;
    
}

h4 {
    font-size: 25pt;
    color: var(--textcolor);
    font-family: var(--font-sans);
    font-weight: normal;
}

p {
    font-size: 19pt;
    color: var(--textcolor);
    font-family: var(--font-sans);
    font-weight: normal;
    line-height: 45px;
}

body {

    background-color: var(--backcolor);
    font-family: var(--font-sans);
    margin: 0;
    
}






.headerNav {
    display: flex;
    list-style: none; 
    gap: 30px;        
    margin: 0;
    padding: 0;
    align-items: center; 
}   
.headerNav a {
    color: #FFFFFF;
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 25pt;
    text-decoration: none;
}
.primaryButton {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);

    color: #fff;

    padding: 12px 24px;
    border-radius: 999px;

    border: 1px solid rgba(255, 255, 255, 0.3);
    font-family: var(--font-sans);
    text-decoration: none;
    transition: 0.3s;
}

.primaryButton:hover {
    background: rgba(255, 255, 255, 0.25);
}
.headerNav {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.headerNav a {
    color: #fff;
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 18px;
    position: relative;
    padding: 5px 0;
    transition: 0.3s;
}

.headerNav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 0%;
    height: 2px;
    background: white;

    transition: 0.3s;
}

.headerNav a:hover::after {
    width: 100%;
}

.headerNav a:hover {
    color: #d5e9ff;
}

.header {
    display: flex;
    align-items: center;
    gap: 30px;

    position: absolute;
    top: 20px;
    right: 40px;

    padding: 10px 20px;
    border-radius: 12px;

    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);

    z-index: 10;
}
    
.hero {
    
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

       

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
     
}
.heroTitle {
    position: absolute;
    top: 50%;
    left: 18%;
    transform: translate(-50%, -50%);
    
    z-index: 5;
    color: white;
    text-align: center;
    
}
.aboutUs {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--section-gap-y) clamp(16px, 5vw, 24px) 0;
}
.aboutUs p {
    max-width: 720px;
    text-align: left;
}
.galery {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--section-gap-y) clamp(16px, 5vw, 24px) 0;
}
.carousel {
    max-width:  1000px;
    overflow-x: scroll;
    scroll-snap-type:  X mandatory;
    display: flex; 
    gap: 10px;
    margin: 0 auto ;
    scroll-behavior: smooth;
    overflow-x: auto;
    scrollbar-width: none;      /* Firefox */
    -ms-overflow-style: none;
    
}
.carousel::-webkit-scrollbar {
    display: none;              
}
.carousel-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.carousel img {
    height: 320px;
    width: auto;
    object-fit: cover;
    border-radius: 12px;
    scroll-snap-align: center;
}
.prev-button,
.next-button {
    width: 45px;
    height: 45px;

    border: none;
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.5);
    color: white;

    font-size: 26px;
    line-height: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
}
.price {
    padding: var(--section-gap-y) 0 0;
}
.priceIMG {
    position: relative;
    width: 100%;
}
.priceIMG img {
    width: 100%;
    height: auto;
    display: block;
}
/* текст по центру баннера */
.priceText {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    z-index: 5;
    text-align: center;
    width: 100%;
    padding: 0 16px;
}
.FAQ {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--section-gap-y) clamp(16px, 5vw, 24px) 0;
    display: grid;
    gap: 16px;
}
.qusetion {
    background-color:#242B33 ;
    border-radius: 16px;
    
}
.qusetion-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    gap: 24px;
    cursor: pointer;
}

.qusetion-title h4 {
    font-size: 28px;
}
.qusetion-title .close {
    color: var(--textcolor);
}

.qusetion-title .open {
    color: var(--textcolor);
}

.qusetion-toggle {
    font-size: 40px;
}
.question-content {
    max-height:  0;
    overflow: hidden;
    transition: .3s ease-in-out;
    background-color: #D5E9FF;
    border-radius: 16px;
    
}

.question-content p {
    color: #242B33;
}
.question-content .text {
    padding: 32px;
    font-size: 25.6px;
}

.qusetion-title .open,
.qusetion-title.active .close {
    display: block;
}
.qusetion-title.active .open,
.qusetion-title .close {
    display: none;
}
.qusetion-title.active + .question-content {
    max-height: 1120px;
}
.fa-solid {
}
.fa-plus {
}
.open {
}
.fa-minus {
}
.question-content {
}
.text {
}
.mapBlock {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--section-gap-y) clamp(16px, 5vw, 24px) var(--section-gap-y);
}
.map {
    display: flex;
    justify-content: center;
    padding: 24px 0 0;
}
.footer {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 40px;
    padding: 64px clamp(24px, 6vw, 96px);
    background-color: var(--footercolor);
}
.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
}
.footer-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-requisites {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(233, 243, 255, 0.5);
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
}
.footer-links a {
    font-size: 13px;
    color: rgba(233, 243, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}
.footer-sep {
    color: rgba(233, 243, 255, 0.3);
    font-size: 13px;
}

.footer p {
    font-size: 15px;
    line-height: 25px;
    
}
.footer h3 {
    font-size: 35px;
    line-height: 25px;
    font-family: var(--font-serif);
    
}

.footerTextBlock1 {
}
.footerTextBlock2 {
}
.footerBlock3 a {
    display: inline-block;
    margin-top: 10px;
}

@media (min-width: 769px) and (max-width: 1024px) {

    .heroTitle {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        padding: 0 24px;
    }

    .heroTitle img {
        max-width: 400px;
        height: auto;
        margin-bottom: 16px;
    }

    .heroTitle h1 {
        font-size: 46px;
        line-height: 1.05;
    }

    .heroTitle h2 {
        font-size: 24px;
        line-height: 1.3;
    }
}

@media (max-width: 768px) {

    /* меньший вертикальный ритм на мобиле (вся шкала пересчитается) */
    :root {
        --section-gap-y: 56px;
    }

    /* HEADER */
    .header {
        left: 10px;
        right: 10px;
        display: flex;
        align-items: center;
        padding: 10px 12px;
        gap: 10px;
    }

    .headerNav {
        display: flex;
        justify-content: space-between;
        width: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .headerNav li {
        flex: 1;
        text-align: center;
    }

    .headerNav a {
        font-size: 12px;
        display: block;
    }

    .primaryButton {
        font-size: 12px;
        padding: 8px 12px;
        white-space: nowrap;
    }

    /* HERO */
    .heroTitle {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        padding: 0 16px;
    }

    .heroTitle h1 {
        font-size: 28px;
    }

    .heroTitle h2 {
        font-size: 16px;
    }

    /* ABOUT (отступы берёт базовый блок через --section-gap-y) */
    .aboutUs p {
        font-size: 16px;
        line-height: 26px;
    }

    /* GALLERY */
    .carousel {
        max-width: 100%;
        padding: 0 10px;
    }

    .carousel img {
        height: 200px;
        width: auto;
    }

    /* PRICE MOBILE — только размеры текста; геометрию задаёт базовый блок */
    .priceText p {
        font-size: 13px;
        line-height: 18px;
        margin: 6px 0;
    }

    .priceText h3 {
        font-size: 20px;
        margin: 8px 0;
    }

    /* FAQ (отступы берёт базовый блок) */
    .qusetion-title {
        padding: 16px;
    }

    .qusetion-title h4 {
        font-size: 16px;
    }

    .question-content .text {
        font-size: 14px;
        padding: 16px;
        line-height: 22px;
    }

    /* FOOTER */
    .footer {
        gap: 28px;
        padding: 48px 16px;
    }
    .footer-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }
    .footer-legal {
        align-items: center;
        text-align: center;
    }
    .footer-links {
        justify-content: center;
    }
}

/* === Адаптивные фиксы (2026-06-08) === */
/* 1. Ни одна картинка не вылезает за свой контейнер (в nullstyle этого не было) */
img {
    max-width: 100%;
}
/* 2. (баннер цен теперь полностью описан в базовом блоке .price/.priceIMG) */
/* 3. Яндекс-карта вшита с width=900 — заставляем её быть по ширине контейнера (важно для мобилы) */
.mapBlock {
    overflow: hidden;
}
.map {
    width: 100%;
}
.map iframe {
    width: 100% !important;
    max-width: 100%;
}
/* 4. Длинные ответы FAQ не должны обрезаться при раскрытии */
.qusetion-title.active + .question-content {
    max-height: 2000px;
}
/* 5. Страховка: никакого горизонтального скролла на узких экранах */
body {
    overflow-x: hidden;
}

/* Логотип в hero не упирается в края на мобиле */
@media (max-width: 768px) {
    .heroTitle img {
        max-width: 220px;
        height: auto;
    }
}

/* === Блок «Дополнительные услуги» === */
.services {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--section-gap-y) clamp(16px, 5vw, 24px) 0;
}
.servicesTable {
    width: 100%;
    margin-top: 32px;
    border-collapse: collapse;
    background-color: #242B33;
    border-radius: 16px;
    overflow: hidden;
    font-family: var(--font-sans);
    color: var(--textcolor);
}
.servicesTable th {
    text-align: left;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(233, 243, 255, 0.6);
    padding: 18px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.servicesTable td {
    font-size: 18px;
    padding: 18px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    vertical-align: top;
}
.servicesTable tbody tr:last-child td {
    border-bottom: none;
}
/* колонка цены — по правому краю */
.servicesTable th:last-child,
.servicesTable td:last-child {
    text-align: right;
    color: #fff;
}
/* подсветка строки при наведении */
.servicesTable tbody tr {
    transition: background-color 0.2s;
}
.servicesTable tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.04);
}
/* бейдж «Скоро» — приглушённый акцент */
.badge {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: 999px;
    color: #d8c294;
    background: rgba(201, 169, 106, 0.16);
    border: 1px solid rgba(201, 169, 106, 0.35);
    vertical-align: middle;
    white-space: nowrap;
}
.services-soon td:first-child {
    color: rgba(233, 243, 255, 0.72);
}
/* сноска */
.servicesNote {
    max-width: 720px;
    margin-top: 18px;
    font-size: 14px;
    line-height: 20px;
    color: rgba(233, 243, 255, 0.55);
}

/* мобильный вид: каждая строка → карточка «услуга / цена» */
@media (max-width: 768px) {
    .servicesTable {
        background-color: transparent;
        border-radius: 0;
        margin-top: 20px;
    }
    .servicesTable thead {
        display: none;
    }
    .servicesTable,
    .servicesTable tbody,
    .servicesTable tr,
    .servicesTable td {
        display: block;
        width: 100%;
    }
    .servicesTable tr {
        background-color: #242B33;
        border-radius: 12px;
        padding: 14px 16px;
        margin-bottom: 10px;
    }
    .servicesTable tr:hover {
        background-color: #242B33;
    }
    .servicesTable td {
        padding: 2px 0;
        border: none;
    }
    .servicesTable td:first-child {
        font-size: 16px;
        font-weight: 600;
    }
    .servicesTable td:last-child {
        text-align: left;
        font-size: 15px;
        color: var(--textcolor);
        margin-top: 6px;
    }
    /* подпись «Стоимость:» над ценой в карточке */
    .servicesTable td:last-child::before {
        content: attr(data-label) ": ";
        display: block;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: rgba(233, 243, 255, 0.45);
        margin-bottom: 2px;
    }
    .servicesNote {
        font-size: 13px;
    }
}
