@import url('https://googleapis.com');

:root {
    --bg-dark: #0A0608;
    --bg-card: #130D11;
    --accent-rose: #C87A8C;
    --rose-gold: linear-gradient(135deg, #C87A8C, #9E5468, #6B3041);
    --text-light: #FDF5F7;
    --text-muted: #8E797E;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Хедер --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(10, 6, 8, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(200, 122, 140, 0.12);
}

.logo {
    font-family: var(--font-secondary);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-accent {
    background: var(--rose-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-rose);
}

.btn-book {
    background: transparent;
    border: 1px solid var(--accent-rose);
    color: var(--accent-rose);
    padding: 12px 28px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 2px;
}

.btn-book:hover {
    background: var(--rose-gold);
    color: #fff;
    box-shadow: 0 0 25px rgba(200, 122, 140, 0.4);
    border-color: transparent;
}

/* --- Главный экран --- */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: 64px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.italic-title {
    font-family: var(--font-secondary);
    font-style: italic;
    background: var(--rose-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 300;
}

/* --- Секции общие --- */
.section {
    padding: 120px 4%;
}

.section-alt {
    background-color: #110B0E;
}

.section-title {
    text-align: center;
    font-family: var(--font-secondary);
    font-size: 38px;
    margin-bottom: 80px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 1px;
    background: var(--accent-rose);
    margin: 25px auto 0;
}

/* --- Презентация услуг --- */
.presentation-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.presentation-block {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 4px;
    border: 1px solid rgba(200, 122, 140, 0.03);
    transition: var(--transition);
}

.presentation-block:hover {
    border-color: rgba(200, 122, 140, 0.15);
    box-shadow: 0 20px 50px rgba(200, 122, 140, 0.08);
}

.presentation-block.reverse {
    grid-template-columns: 1.2fr 1fr;
}

.master-card {
    text-align: center;
    padding: 20px;
}

.presentation-block.reverse .master-card {
    order: 2;
}

.master-card h3 {
    font-family: var(--font-secondary);
    font-size: 24px;
    color: var(--accent-rose);
    margin-bottom: 5px;
}

.master-tag {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.master-text, .zone-desc {
    color: var(--text-muted);
    font-weight: 300;
    font-size: 14px;
}

.zone-info h4 {
    font-family: var(--font-secondary);
    font-size: 32px;
    margin-bottom: 15px;
}

/* --- Отзывы --- */
.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: var(--bg-card);
    padding: 35px;
    border-left: 3px solid var(--accent-rose);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(200, 122, 140, 0.1);
}

.stars {
    color: var(--accent-rose);
    font-size: 13px;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 14px;
}

.review-author {
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Карта и Онлайн-запись --- */
.booking-wrapper {
    max-width: 550px;
    margin: 0 auto;
}

.booking-card {
    background: var(--bg-card);
    padding: 50px;
    text-align: center;
}

.booking-card h3 {
    font-family: var(--font-secondary);
    font-size: 26px;
    color: var(--accent-rose);
    margin-bottom: 10px;
}

.booking-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.contacts-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h3 {
    font-family: var(--font-secondary);
    font-size: 28px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-item i {
    color: var(--accent-rose);
    font-size: 20px;
}

.map-container {
    height: 350px;
    border: 1px solid rgba(200, 122, 140, 0.1);
}

/* --- Футер --- */
.site-footer {
    background-color: #050304;
    padding: 40px 4%;
    text-align: center;
    border-top: 1px solid rgba(200, 122, 140, 0.05);
    font-size: 13px;
    color: var(--text-muted);
}

/* --- Адаптивность --- */
@media (max-width: 992px) {
    .hero-title { font-size: 44px; }
    .presentation-block, .presentation-block.reverse { grid-template-columns: 1fr; gap: 30px; }
    .presentation-block.reverse .master-card { order: 0; }
    .contacts-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .section { padding: 70px 4%; }
    .hero-title { font-size: 32px; }
    .section-title { font-size: 28px; margin-bottom: 40px; }
}
