 
/* Основні стилі */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    color: #242424;
    background-color: #f6f6f6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Шапка сайту */
header {
    background-color: #F6E9E4;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-height: 60px;
}

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

.menu a {
    text-decoration: none;
    color: #242424;
    font-weight: 500;
    transition: color 0.3s;
}

.menu a:hover {
    color: #D6B981;
}

.header-button {
    background-color: #242424;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 15px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
    text-decoration: none;
    text-transform: uppercase;
}

.header-button:hover {
    background-color: #69727d;
}

/* Головний банер */
.hero {
    padding: 180px 0 100px;
    background-color: #F6E9E4;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text {
    max-width: 50%;
}

.hero-text h1 {
    font-size: 33px;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-text p {
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-image {
    max-width: 45%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}
.services {
    padding: 80px 0;
    background-color: #fff;
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
  }
  
  .section-title h2 {
    font-size: 36px;
    font-weight: 700;
    display: inline-block;
    color: #333;
  }
  
  .section-title h2:after {
    content: '';
    display: block;
    height: 3px;
    width: 70px;
    background-color: #D6B981;
    margin: 15px auto 0;
  }
  
  .services-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .service-line {
    background-color: #fdf7f2;
    border-left: 5px solid #D6B981;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    transition: background-color 0.3s ease;
  }
  
  .service-line:hover {
    background-color: #f8eee5;
  }
  
  .service-line h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: #333;
  }
  
  .price {
    font-size: 20px;
    font-weight: 700;
    color: #D6B981;
  }
  
/* Квіз секція */
.quiz-section {
    padding: 80px 0;
    background-image: url('../img/quiz-pc-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.quiz-container {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    color: #242424;
    position: relative;
}

.quiz-promo {
    background-color: #D6B981;
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 18px;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.timer-item {
    background-color: #242424;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

.timer-number {
    font-size: 24px;
    font-weight: 700;
}

.timer-label {
    font-size: 12px;
    opacity: 0.8;
}

.quiz-slide {
    display: none;
}

.quiz-slide.active {
    display: block;
}

.quiz-question {
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 600;
}

.quiz-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.quiz-option {
    background-color: #F6E9E4;
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 20px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
}

.quiz-option:hover {
    border-color: #D6B981;
}

.quiz-option.selected {
    border-color: #D6B981;
    background-color: rgba(214, 185, 129, 0.2);
}

.quiz-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.quiz-prev, .quiz-next {
    background-color: #242424;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.quiz-prev:hover, .quiz-next:hover {
    background-color: #69727d;
}

.quiz-prev {
    visibility: hidden;
}

.quiz-prev.visible {
    visibility: visible;
}

.quiz-progress {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.quiz-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    transition: background-color 0.3s;
}

.quiz-dot.active {
    background-color: #D6B981;
}

.quiz-form {
    display: none;
}

.quiz-form.active {
    display: block;
}

.form-field {
    margin-bottom: 20px;
}

.form-field input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.submit-button {
    background-color: #242424;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
    width: 100%;
    font-size: 18px;
}

.submit-button:hover {
    background-color: #69727d;
}

/* Наша команда */
.team {
    padding: 80px 0;
    background-color: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.team-member {
    text-align: center;
}

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.team-member p {
    color: #69727d;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #F6E9E4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #242424;
    text-decoration: none;
    transition: all 0.3s;
}

.team-social a:hover {
    background-color: #D6B981;
    color: white;
}

/* Відгуки */
.testimonials {
    padding: 80px 0;
    background-color: #F6E9E4;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    padding: 0 40px;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
}

.testimonial-content:before {
    content: '\201C';
    font-size: 80px;
    color: #D6B981;
    position: absolute;
    top: -20px;
    left: 20px;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: #242424;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 20px;
}

.testimonial-prev, .testimonial-next {
    background-color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.testimonial-prev:hover, .testimonial-next:hover {
    background-color: #D6B981;
    color: white;
}

/* Контакти */
.contact {
    padding: 80px 0;
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.contact-icon {
    background-color: #F6E9E4;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #D6B981;
}

.contact-text h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.contact-text p {
    color: #69727d;
}

.contact-map {
    overflow: hidden;
}

/* Футер */
footer {
    background-color: #242424;
    color: white;
    padding: 30px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.footer-about p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.8);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    background-color: #D6B981;
}

.footer-links h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-links h3:after {
    content: '';
    display: block;
    height: 2px;
    width: 30px;
    background-color: #D6B981;
    margin-top: 10px;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #D6B981;
}

.copyright {
    text-align: center;
/*    padding-top: 30px;*/
/*    border-top: 1px solid rgba(255,255,255,0.1);*/
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

/* Адаптація під мобільні пристрої */
@media (max-width: 991px) {
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text, .hero-image {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .services-grid, .team-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .contact-info, .contact-map {
        margin: 0 auto;
    }
    .footer-links {
        margin: 0 auto;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-about p {
        text-align: center;
    }
    .footer-logo {
        display: block;
        margin: 0 auto;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .services-grid, .team-grid {
        grid-template-columns: 1fr;
    }
    
    .quiz-options {
        grid-template-columns: 1fr;
    }
    
    .menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
 
} 

 

.splide__track {
    background-color: #F6E9E4;  /* світлий бекграунд */
    padding: 20px 0;
}

.splide__slide {
    padding: 0 10px;
}

.splide__slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border: 2px solid #D6B981; /* заміна акцентного кольору */
    box-sizing: border-box;
}

.splide {
    margin: 50px auto 0;
    margin-top: 0;
    max-width: 100%;
}

.footer-politic{margin-top:10px}.footer-politic a{font-size:12px;line-height:1;color: white;font-weight:500;text-decoration:underline; opacity: 0.75;}


.hero-image-mob {
    display: none;
}


@media (max-width: 468px) {
.hero {
    padding-bottom: 40px;
}
.hero-text h1 {
    font-size: 22px;
}
.hero-image {
    display: none;
}
.hero-image-mob {
    display: block;
}

.service-line h3 {
    font-size: 14px;
}
.price {
    font-size: 18px;
}

}

 /* Стилізація логотипу */
.logo {
    font-family: inherit; /* Використовуємо той самий шрифт що й на сторінці */
    font-size: clamp(1.4rem, 3vw, 1.8rem); /* Адаптивний розмір */
    font-weight: 600;
    color: #2d2d2d; /* Темно-сірий як основний текст на сторінці */
    position: relative;
    transition: all 0.25s ease;
    cursor: pointer;
    letter-spacing: -0.02em; /* Сучасний стиль */
}

.logo:hover {
    color: #8b6914; /* Золотистий відтінок з фото масажу */
    transform: scale(1.02);
}

/* Тонкий акцент */
.logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #c9a96e 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.logo:hover::after {
    opacity: 1;
}

/* Мобільна адаптивність */
@media (max-width: 768px) {
    .logo {
        font-size: 1.3rem;
        letter-spacing: -0.01em;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }
}