/* Основные стили */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Playfair Display', serif;
    color: #333;
    line-height: 1.6;
    font-size: 16px;
}
ul {
    padding: 0;
    margin: 0;
}
header {
    display: flex;
    justify-content: space-between;
    padding: 20px 10%;
    background-color: #fff;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5em;
    font-weight: bold;
    text-decoration: none;
    color: #333;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 15px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #c5a47e;
}

.nav-toggle {
    display: none;
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 600px;
    color: #fff;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.hero-button {
    padding: 10px 20px;
    background-color: #c5a47e;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.hero-button:hover {
    background-color: #b08a68;
}

.section {
    padding: 50px 10%;
    text-align: center;
}

.section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #c5a47e;
}

.advantages-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.advantage-item {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 50px;
    flex: 1 1 200px;
    max-width: 300px;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-item {
    background-color: #f4f4f4;
    border-radius: 15px;
    padding: 15px;
    width: 30%;
    text-align: center;
}

.service-item img {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 10px;
}

.service-item h3 {
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    font-size: 1.2em;
}
.btn-learn-more {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #c5a47e;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn-learn-more:hover {
    background-color: #b08a68;
}

/* Стили для секции "О нас" */
.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 50px 10%;
    flex-wrap: wrap;
}

.about-container {
    display: flex;
    gap: 20px;
    flex: 1;
}

.about-text {
    flex: 1 1 50%;
    text-align: left;
}

.about-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2em;
    margin-bottom: 20px;
}

.about-text p {
    font-family: 'Playfair Display', serif;
    font-size: 1.1em;
}

.about-image {
    flex: 1 1 50%;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

/* Стили для отзывов */
#testimonials {
    padding: 50px 10%;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
}

.swiper-slide {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Playfair Display', serif;
}

/* Стили для FAQ */
.faq-item {
    margin: 20px 0;
    padding: 15px;
    border-radius: 10px;
    background-color: #f4f4f4;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-item h3 {
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2em;
}

.answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
    color: #333;
}

.faq-item.open .answer {
    max-height: 100px;
}

/* Стили для секций с фоновыми изображениями */
.section {
    padding: 50px 10%;
    background-size: cover;
    background-position: center;
}

/* Стили для кнопки бронирования и попапа */
.btn-book {
    padding: 10px 15px;
    background-color: #c5a47e;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Montserrat', sans-serif;
    margin-left: 10px;
}

.btn-book:hover {
    background-color: #b08a68;
}

.popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

.popup-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
    text-align: center;
}

.popup-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.popup-close:hover,
.popup-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.booking-form input,
.booking-form select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.booking-form button {
    padding: 10px;
    background-color: #c5a47e;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.booking-form button:hover {
    background-color: #b08a68;
}

/* Стили для блока с контактами */
.contact-section {
    padding: 50px 10%;
    color: #333;
    text-align: center;
}

.contact-details p {
    margin: 15px 0;
    font-family: 'Montserrat', sans-serif;
}

.contact-details a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

/* Стили для блока с ценами */
.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.pricing-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    flex: 1 1 200px;
    text-align: center;
}

.pricing-item h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.pricing-item p {
    font-size: 1.2em;
    color: #c5a47e;
}

/* Стили для акционного предложения */
#special-offer {
    padding: 50px 10%;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-content {
    max-width: 600px;
}

.offer-button {
    padding: 10px 20px;
    background-color: #c5a47e;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.offer-button:hover {
    background-color: #b08a68;
}

/* Стили для футера */
.footer {
    background-color: #f4f4f4;
    color: #333;
    padding: 20px 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #ddd;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1 1 200px;
}

.footer-column h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    margin-bottom: 5px;
    color: #333;
    font-weight: bold;
}

.footer-column p {
    margin: 5px 0;
    font-family: 'Playfair Display', serif;
    font-size: 0.9em;
    color: #666;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.footer-logo p {
    font-family: 'Playfair Display', serif;
    font-size: 0.9em;
    color: #666;
    margin-bottom: 5px;
}

.footer-logo .logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}
.offer-container {
    display: flex;
    gap: 20px;
    align-items: stretch;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.offer-image {
    max-width: 50%;
}

.offer-image img {
    width: 100%;
    border-radius: 10px;
}

.offer-content {
    flex: 1 1 50%;
    max-width: 50%;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.offer-content h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 10px;
}

.offer-content p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 20px;
}

.offer-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.offer-form input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

.offer-form button {
    padding: 10px 15px;
    background-color: #c5a47e;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    transition: background-color 0.3s;
}

.offer-form button:hover {
    background-color: #b08a68;
}

@media (max-width: 768px) {
    .offer-container {
        flex-direction: column;
        text-align: center;
    }

    .offer-image,
    .offer-content {
        max-width: 100%;
    }
    .section h2 {
        font-size: 2rem;
    }
}
.offers-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    padding: 20px 0;
}

.offer-item {
    flex: 1 1 calc(50% - 20px);
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.offer-item h3 {
    font-size: 1.5em;
    color: #c5a47e;
    margin-bottom: 10px;
}

.offer-item p {
    font-size: 1em;
    color: #333;
    margin-bottom: 10px;
}

.offer-item strong {
    color: #555;
}

.offer-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .offer-item {
        flex: 1 1 100%;
    }
}
.swiper-slide {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Playfair Display', serif;
    text-align: center;
    position: relative;
    width: 30%;
}

.swiper-slide p {
    font-size: 1em;
    color: #333;
    margin-bottom: 15px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
}

.testimonial-author span {
    font-weight: bold;
    color: #c5a47e;
    margin-bottom: 5px;
}

.rating {
    color: #FFD700; /* Gold color for stars */
    font-size: 1.2em;
}
.swiper-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.contact-section {
    padding: 50px 10%;
    background-color: #fff;
    color: #333;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-details {
    flex: 1 1 40%;
    background: #f8f8f8;
    border-radius: 10px;
}

.contact-details h2 {
    font-size: 2em;
    color: #c5a47e;
    margin-bottom: 20px;
}

.contact-details p {
    font-size: 1em;
    margin-bottom: 10px;
}

.contact-map {
    flex: 1 1 55%;
}

.contact-form-container {
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-container h2 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    padding: 10px 15px;
    background-color: #c5a47e;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #b08a68;
}
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.newsletter-form input {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 0.9em;
}

.newsletter-form button {
    padding: 10px;
    background-color: #c5a47e;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #b08a68;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 5px;
}

.footer-links a, .footer-column a {
    color: #333;
    text-decoration: none;
    font-size: 0.9em;
}

.footer-links a:hover {
    text-decoration: underline;
}
.footer-bottom p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85em;
    color: #fff;
    background: #c5a47e;
    text-align: center;
    padding: 10px;
    margin: 0;
}
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #f4f4f4;
        padding: 20px 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
        text-align: center;
    }

    .nav-toggle {
        display: block;
        background: #c5a47e;
        border: none;
        color: #fff;
        width: 25px;
        height: 25px;
        border-radius: 3px;
        font-size: 16px;
    }
    .service-item, .swiper-slide {
        width: 100%;
    }
    .about-container {
        flex-direction: column;
    }
    .team-member {
        flex: 1 1 calc(100% - 40px)!important;
    }
}
.about-section,
.advantages-section,
.team-section {
    padding: 50px 10%;
    background-color: #fff;
    color: #333;
}

.about-section h1,
.advantages-section h2,
.team-section h2 {
    font-family: 'Montserrat', sans-serif;
    color: #c5a47e;
    margin-bottom: 20px;
}

.advantages-section ul {
    list-style-type: disc;
    padding-left: 20px;
}

.advantages-section li {
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1em;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-around;
}

.team-member {
    flex: 1 1 calc(33.333% - 40px);
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    margin-bottom: 15px;
}

.team-member h3 {
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

.team-member p {
    font-family: 'Playfair Display', serif;
    color: #666;
    margin-bottom: 10px;
}
.hero-overlay {
    background: #00000057;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
li {
    list-style: none;
}