/* Relax For You — тёмная палитра: фиолетовый неон, розовый, эротическая эстетика */
:root {
    --color-bg: #0f0a14;
    --color-bg-card: #16101d;
    --color-bg-elevated: #1c1525;
    --color-border: #2d2438;
    --color-neon-purple: #a855f7;
    --color-neon-purple-bright: #c084fc;
    --color-neon-pink: #ec4899;
    --color-pink-soft: #f472b6;
    --color-accent: #d946ef;
    --color-text: #e9e0f0;
    --color-text-soft: #b8a9c4;
    --color-white: #fff;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', sans-serif;
    --glow-purple: 0 0 20px rgba(168, 85, 247, 0.4), 0 0 40px rgba(168, 85, 247, 0.2);
    --glow-pink: 0 0 20px rgba(236, 72, 153, 0.35);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(168, 85, 247, 0.1);
    --radius: 12px;
    --container: min(1200px, 92vw);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
}

.container {
    width: var(--container);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(15, 10, 20, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.08);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
    text-decoration: none;
    letter-spacing: 0.02em;
    text-shadow: 0 0 24px rgba(168, 85, 247, 0.3);
    transition: color 0.2s, text-shadow 0.2s;
}

.logo:hover {
    color: var(--color-neon-purple-bright);
    text-shadow: var(--glow-purple);
}

.nav__list {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__link {
    color: var(--color-text-soft);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s, text-shadow 0.2s;
}

.nav__link:hover {
    color: var(--color-neon-pink);
    text-shadow: 0 0 12px rgba(236, 72, 153, 0.5);
}

/* Hero */
.hero {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #05020a;
    padding: 6rem 0 4rem;
    text-align: center;
    overflow: hidden;
}

.hero--photo {
    background-image: url("../img/hero-main.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(5, 2, 10, 0.65), rgba(5, 2, 10, 0.2));
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 1;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.25;
    margin: 0 0 1rem;
    text-shadow: 0 0 40px rgba(168, 85, 247, 0.25), 0 0 80px rgba(236, 72, 153, 0.15);
}

.hero__tagline {
    font-size: 1.1rem;
    color: var(--color-text-soft);
    max-width: 480px;
    margin: 0 auto 2rem;
    font-weight: 400;
}

.button {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background: linear-gradient(135deg, var(--color-neon-purple) 0%, var(--color-neon-pink) 100%);
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius);
    transition: box-shadow 0.2s, transform 0.2s, filter 0.2s;
    box-shadow: 0 0 24px rgba(168, 85, 247, 0.4), 0 0 48px rgba(236, 72, 153, 0.2);
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-purple), var(--glow-pink);
    filter: brightness(1.1);
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 600;
    color: var(--color-text);
    text-align: center;
    margin: 0 0 2rem;
    text-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
}

/* About */
.about {
    background: var(--color-bg-card);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.about__text {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    color: var(--color-text-soft);
    font-size: 1.05rem;
}

/* Gallery — три картинки друг над другом */
.gallery {
    background: var(--color-bg);
}

.gallery__stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 480px;
    margin: 0 auto;
}

.gallery__item {
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    transition: box-shadow 0.25s, border-color 0.25s;
}

.gallery__item:hover {
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.25), 0 0 60px rgba(236, 72, 153, 0.1);
    border-color: rgba(168, 85, 247, 0.4);
}

.gallery__item img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.gallery__caption {
    padding: 1rem 1.25rem;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-text-soft);
    text-align: center;
    background: var(--color-bg-card);
}

/* Services catalog */
.services {
    background: var(--color-bg-elevated);
    border-top: 1px solid var(--color-border);
}

.services__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    padding: 1.75rem;
    background: var(--color-bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    transition: box-shadow 0.25s, border-color 0.25s;
}

.service-card:hover {
    box-shadow: 0 0 28px rgba(168, 85, 247, 0.2), 0 0 0 1px rgba(236, 72, 153, 0.2);
    border-color: rgba(168, 85, 247, 0.5);
}

.service-card__name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 0.5rem;
}

.service-card__desc {
    color: var(--color-text-soft);
    font-size: 0.95rem;
    margin: 0 0 0.75rem;
}

.service-card__price {
    font-weight: 600;
    color: var(--color-neon-pink);
    font-size: 1.1rem;
    text-shadow: 0 0 12px rgba(236, 72, 153, 0.3);
}

/* Contacts */
.contacts {
    background: var(--color-bg-card);
    border-top: 1px solid var(--color-border);
}

.contacts__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (max-width: 768px) {
    .contacts__content {
        grid-template-columns: 1fr;
    }
}

.contacts__info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contacts__address,
.contacts__hours {
    color: var(--color-text-soft);
    margin: 0;
}

.contacts__phone {
    margin: 0.5rem 0 0;
}

.contacts__phone a {
    color: var(--color-neon-purple-bright);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s, text-shadow 0.2s;
}

.contacts__phone a:hover {
    color: var(--color-neon-pink);
    text-shadow: 0 0 12px rgba(236, 72, 153, 0.5);
}

.social {
    display: flex;
    gap: 1rem;
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
}

.social__link {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
}

.social__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 16px rgba(168, 85, 247, 0.4);
}

.social__link_vk {
    background: linear-gradient(135deg, #5c3d99 0%, #7c5cbf 100%);
    color: var(--color-white);
    box-shadow: 0 0 12px rgba(124, 92, 191, 0.4);
}

.social__link_tg {
    background: linear-gradient(135deg, var(--color-neon-purple) 0%, var(--color-neon-pink) 100%);
    color: var(--color-white);
    box-shadow: 0 0 12px rgba(168, 85, 247, 0.4);
}

.contacts__map {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.3);
}

.contacts__map iframe {
    display: block;
    min-height: 300px;
}

/* Footer */
.footer {
    padding: 1.5rem 0;
    background: #0a0610;
    color: var(--color-text-soft);
    text-align: center;
    border-top: 1px solid var(--color-border);
}

.footer__copy {
    margin: 0;
    font-size: 0.9rem;
}

/* Адаптив навигации */
@media (max-width: 640px) {
    .nav__list {
        gap: 1rem;
    }

    .nav__link {
        font-size: 0.9rem;
    }
}
