/* ==========================================================================
   1. ОБЩИЕ СБРОСЫ СТИЛЕЙ И ШРИФТЫ
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fbf9f6;
    scroll-behavior: smooth;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 600;
    letter-spacing: 1px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* ==========================================================================
   2. ШАПКА САЙТА (ИСПРАВЛЕННЫЙ МИНИМАЛИСТИЧНЫЙ ЛОГОТИП И КНОПКИ)
   ========================================================================== */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.04);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px; /* Чуть увеличили высоту для воздушности */
}

.logo-wrapper {
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo-wrapper:hover {
    transform: rotate(15deg) scale(1.05); /* Легкий интерактивный эффект при наведении на знак */
}

.site-logo-svg {
    display: block;
}

/* Новые стильные кнопки меню */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link {
    text-decoration: none;
    color: #444;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    transition: color 0.3s ease;
}

/* Эффект выезжающей снизу линии при наведении */
.nav-link:not(.nav-btn-accent)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 20px;
    background-color: #bfa38a;
    transition: width 0.3s ease;
}

.nav-link:not(.nav-btn-accent):hover::after {
    width: calc(100% - 40px);
}

.nav-link:hover {
    color: #bfa38a;
}

/* Премиальная кнопка "Book Now" в меню */
.nav-btn-accent {
    background-color: transparent;
    border: 1px solid #bfa38a;
    color: #bfa38a;
    border-radius: 4px;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.nav-btn-accent:hover {
    background-color: #bfa38a;
    color: #ffffff !important;
}

/* ==========================================================================
   3. ГЛАВНЫЙ БАННЕР (HERO SECTION)
   ========================================================================== */
.hero {
    background: linear-gradient(rgba(44, 38, 35, 0.75), rgba(44, 38, 35, 0.75)), 
                url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding-top: 75px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-logo-container {
    width: 120px;
    height: 120px;
    margin-bottom: 25px;
    animation: fadeIn 1.5s ease;
}

.hero-logo-svg {
    width: 100%;
    height: 100%;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 5px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.5rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #bfa38a;
    margin-bottom: 25px;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    font-weight: 300;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    background-color: #bfa38a;
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #a68c75;
    transform: translateY(-2px);
}

/* ==========================================================================
   4. СЕКЦИЯ "О НАС" (ABOUT)
   ========================================================================== */
.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    color: #666;
}

.about-text p {
    margin-bottom: 20px;
}

/* ==========================================================================
   5. ВЫЕЗЖАЮЩИЕ ВКЛАДКИ И ПРАЙС-ЛИСТ (ACCORDION & PRICES)
   ========================================================================== */
.services-bg {
    background-color: #f4effa; 
}

.accordion-wrapper {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-trigger {
    display: none;
}

.accordion-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 30px;
    background: #ffffff;
    color: #222;
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: 1px;
    cursor: pointer;
    user-select: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.accordion-title:hover {
    background: #faf7f4;
    color: #bfa38a;
}

.accordion-icon {
    position: relative;
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background-color: #bfa38a;
    transition: transform 0.3s ease;
}

.accordion-icon::before {
    top: 5px;
    left: 0;
    width: 12px;
    height: 2px;
}

.accordion-icon::after {
    top: 0;
    left: 5px;
    width: 2px;
    height: 12px;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #ffffff;
}

.price-list-grid {
    padding: 10px 30px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-top: 1px solid #fbf9f6;
}

.accordion-trigger:checked ~ .accordion-content {
    max-height: 1000px; 
}

.accordion-trigger:checked ~ .accordion-title .accordion-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.price-item {
    display: flex;
    flex-direction: column;
}

.price-item-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
}

.price-item h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
    background: #fff;
    padding-right: 8px;
    margin: 0;
}

.dots {
    flex-grow: 1;
    border-bottom: 1px dotted #ddd;
    margin-bottom: 5px;
    min-width: 20px;
}

.item-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #bfa38a;
    background: #fff;
    padding-left: 8px;
}

.item-duration {
    font-size: 0.85rem;
    color: #888;
    margin-top: 2px;
    font-weight: 300;
}

/* ==========================================================================
   6. ФОРМА ОНЛАЙН-БРОНИРОВАНИЯ И КОНТАКТЫ
   ========================================================================== */
#contacts {
    background-color: #ffffff;
}

.booking-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    margin-top: 20px;
}

.booking-form {
    flex: 1.6;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #eeded0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.contact-sidebar {
    flex: 1;
    background: #fbf9f6;
    padding: 40px;
    border-radius: 8px;
    border-top: 4px solid #bfa38a;
    box-shadow: 0 4px 15px rgba(0,0,0,0.01);
}

.contact-sidebar h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
    color: #222;
}

.contact-sidebar p {
    margin-bottom: 18px;
    font-size: 1rem;
    color: #444;
}

.contact-sidebar a {
    color: #bfa38a;
    text-decoration: none;
    font-weight: 600;
}

.sidebar-notice {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eaddd0;
    font-size: 0.85rem;
    color: #888;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 22px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #333;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
    position: relative;
    z-index: 1;
}

input:focus, select:focus {
    outline: none;
    border-color: #bfa38a;
}

.btn-submit {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 10px;
}

/* ==========================================================================
   7. ПОДВАЛ (FOOTER) И АНИМАЦИИ
   ========================================================================== */
footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 30px 0;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 1px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* ==========================================================================
   8. АДАПТИВНОСТЬ (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 900px) {
    .booking-container {
        flex-direction: column;
        gap: 30px;
    }
    .booking-form, .contact-sidebar {
        width: 100%;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .hero-description {
        font-size: 1rem;
    }
    .navbar {
        flex-direction: row; /* На мобилках выстраиваем логотип и кнопки в один ряд */
        justify-content: space-between;
        height: 70px;
        padding: 0 15px;
    }
    .nav-menu {
        gap: 2px;
    }
    .nav-link {
        padding: 6px 10px;
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }
    .nav-btn-accent {
        margin-left: 2px;
    }
    .hero {
        padding-top: 70px;
    }
    .hero-logo-container {
        width: 90px;
        height: 90px;
    }
    .accordion-title {
        padding: 18px 20px;
        font-size: 1rem;
    }
    .price-list-grid {
        padding: 10px 20px 20px 20px;
    }
    .price-item h4 {
        font-size: 0.95rem;
    }
    .item-price {
        font-size: 1rem;
    }
}

@media (max-width: 500px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}