/* Базовые настройки */
:root {
    --bg-main: #000000;
    --text-main: #ffffff;
    --accent: #d1c0a3;
    --border-soft: rgba(255, 255, 255, 0.5);
    --font-heading: "Playfair Display", "Times New Roman", serif;
    --font-body: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --letter-wide: 0.18em;
}

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

html,
body {
    height: 100%;
}

body {
    margin: 0;
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
}

/* Шапка и навигация */
.site-header {
    font-size: 0.9rem;
}

.main-navbar {
    background-color: rgba(0, 0, 0, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: var(--letter-wide);
}

.tracking-wide {
    letter-spacing: var(--letter-wide);
    text-transform: uppercase;
}

.main-menu .nav-link {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    padding-left: 1.1rem;
    padding-right: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.main-menu .nav-link:hover,
.main-menu .nav-link:focus {
    color: #ffffff;
}

.main-menu .nav-link.active {
    background-color: #ffffff;
    color: #000000;
}

/* Основной контент */
.site-main {
    min-height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
}

/* Hero секция */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 92px; /* под фиксированное меню */
    padding-bottom: 0;
    background-image: url("../images/hero-bg.jpg"); /* фоновая картинка */
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #ffffff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.92));
    pointer-events: none;
}

.hero-card {
    position: relative;
    padding: 2.8rem 2.2rem 2.3rem;
    background-color: rgba(0, 0, 0, 0.85);
    border: 1px solid var(--border-soft);
    max-width: 520px;
    margin: 3rem auto 4rem;
}

.hero-eyebrow {
    font-size: 0.9rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 0.25rem;
}

.hero-dots span {
    display: inline-block;
    width: 4px;
    height: 4px;
    margin: 0 3px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
}

/* Кнопка */
.hero-btn {
    padding: 0.55rem 2.8rem;
    border-radius: 0;
    border-width: 1px;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    font-weight: 500;
}

.hero-btn:hover,
.hero-btn:focus {
    background-color: #ffffff;
    color: #000000;
}

/* Соцсети */
.hero-socials img {
    width: 30px;
    height: 30px;
    display: block;
}

.social-link {
    display: inline-flex;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: background-color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.social-link:hover,
.social-link:focus {
    background-color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-1px);
}

/* Баннер магазина */
.shop-banner {
    background-color: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.shop-banner-link {
    padding: 1.1rem 1.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.78rem;
}

.shop-banner-text {
    opacity: 0.7;
    margin-right: 0.5rem;
}

.shop-banner-text-alt {
    font-weight: 500;
}

/* Футер */
.site-footer {
    background-color: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* Адаптивность */
@media (max-width: 991.98px) {
    .main-menu .nav-link {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        padding-top: 0.6rem;
        padding-bottom: 0.6rem;
    }

    .hero {
        background-attachment: scroll;
    }

    .hero-card {
        margin-top: 2.5rem;
        padding: 2.2rem 1.6rem 2rem;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand {
        font-size: 0.7rem;
    }

    .hero-title {
        font-size: 1.2rem;
    }

    .hero-eyebrow {
        font-size: 0.78rem;
    }

    .hero-card {
        margin-top: 2rem;
    }

    .shop-banner-link {
        font-size: 0.72rem;
        letter-spacing: 0.2em;
    }
}
.hero-socials {
    margin-top: 0.5rem;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #ffffff;
    font-size: 1.1rem; /* размер иконки */
    transition:
        background-color 0.2s ease,
        transform 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.social-link:hover,
.social-link:focus {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #000000;
    transform: translateY(-1px);
}
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 92px; /* под фиксированное меню */
    padding-bottom: 0;
    background-image: url("../images/bg.png"); /* сюда положи своё фото */
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed; /* можно сделать scroll, если будет дёргаться на мобилках */
    color: #ffffff;
}
/* ABOUT page */
.about-card {
    max-width: 720px;
    margin: 3rem auto 4rem;
}

.about-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.9rem;
}

@media (max-width: 575.98px) {
    .about-card {
        margin-top: 2.2rem;
    }
}
/* BOOK RESERVATION page */
.reservation-card {
    max-width: 860px;
    margin: 3rem auto 4rem;
}

.reservation-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.9rem;
}

.reservation-form .form-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.8);
}

.reservation-form .form-control,
.reservation-form .form-select,
.reservation-form textarea {
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 0.85rem;
}

.reservation-form .form-control:focus,
.reservation-form .form-select:focus,
.reservation-form textarea:focus {
    background-color: rgba(0, 0, 0, 0.9);
    border-color: #ffffff;
    box-shadow: none;
    color: #ffffff;
}

.reservation-small {
    font-size: 0.7rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 991.98px) {
    .reservation-card {
        margin-top: 2.5rem;
    }
}

@media (max-width: 575.98px) {
    .reservation-card {
        margin-top: 2.2rem;
        padding: 2rem 1.4rem 1.8rem;
    }
}
/* LOCATION page */
.location-card {
    max-width: 860px;
    margin: 3rem auto 4rem;
}

.location-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.9rem;
}

.location-info-box {
    background-color: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1.5rem 1.4rem;
}

.location-subtitle {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.location-list-item + .location-list-item {
    margin-top: 0.6rem;
}

.location-item-label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.1rem;
}

.location-item-value {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.location-small {
    font-size: 0.7rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 991.98px) {
    .location-card {
        margin-top: 2.5rem;
    }
}

@media (max-width: 575.98px) {
    .location-card {
        margin-top: 2.2rem;
        padding: 2rem 1.4rem 1.8rem;
    }

    .location-info-box {
        padding: 1.3rem 1.1rem;
    }
}
/* CONTACT page */
.contact-card {
    max-width: 860px;
    margin: 3rem auto 4rem;
}

.contact-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.9rem;
}

.contact-list-item + .contact-list-item {
    margin-top: 0.6rem;
}

.contact-item-label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.1rem;
}

.contact-item-value {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-form .form-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.8);
}

.contact-form .form-control,
.contact-form textarea {
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 0.85rem;
}

.contact-form .form-control:focus,
.contact-form textarea:focus {
    background-color: rgba(0, 0, 0, 0.9);
    border-color: #ffffff;
    box-shadow: none;
    color: #ffffff;
}

.contact-small {
    font-size: 0.7rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 991.98px) {
    .contact-card {
        margin-top: 2.5rem;
    }
}

@media (max-width: 575.98px) {
    .contact-card {
        margin-top: 2.2rem;
        padding: 2rem 1.4rem 1.8rem;
    }
}
