/* Main styles for domain.com */

/* Global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
}

section[id] {
    scroll-margin-top: 40px;
}

div {
    word-break: break-word;
    overflow-wrap: break-word;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #DDA0DD; /* Нежно-сиреневый */
    color: #4B0082; /* Глубокий индиго */
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px 0;
}

/* Header styles */
header {
    background-color: #E6E6FA; /* Лавандовый */
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: #4B0082; /* Глубокий индиго */
}

.logo span {
    color: #FFD700; /* Ярко-жёлтый */
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #4B0082; /* Глубокий индиго */
    font-weight: 600;
}

/* Mobile menu */
.mobile-menu-toggle {
    display: none;
}

/* Hero section */
.hero {
    background-image: url('../img/kO1vmM.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(75, 0, 130, 0.6); /* Глубокий индиго с прозрачностью */
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #FFD700; /* Ярко-жёлтый */
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    background-color: #FFD700; /* Ярко-жёлтый */
    color: #4B0082; /* Глубокий индиго */
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

/* Sections */
section {
    padding: 60px 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #4B0082; /* Глубокий индиго */
}

/* Services section */
.services {
    background-color: #E6E6FA; /* Лавандовый */
}

.services-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 300px;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    margin: 20px 0;
    color: #4B0082; /* Глубокий индиго */
}

.service-card p {
    margin-bottom: 20px;
}

.service-image {
    height: 180px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Benefits section */
.benefits {
    background-color: #DDA0DD; /* Нежно-сиреневый */
}

.benefits-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.benefit-item {
    flex: 1 1 300px;
    margin-bottom: 30px;
}

.benefit-frame {
    display: flex;
    align-items: flex-start;
    background-color: #fff;
    border: 2px solid #FFD700; /* Ярко-жёлтый */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2rem;
    margin-right: 15px;
    color: #FFD700; /* Ярко-жёлтый */
}

.benefit-content h3 {
    margin-bottom: 10px;
    color: #4B0082; /* Глубокий индиго */
}

/* Tips section */
.tips {
    background-color: #E6E6FA; /* Лавандовый */
}

.tips-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.tip-card {
    flex: 1 1 300px;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tip-card h3 {
    margin: 20px 0;
    color: #4B0082; /* Глубокий индиго */
}

/* Testimonials */
.testimonials {
    background-color: #DDA0DD; /* Нежно-сиреневый */
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.testimonial-card {
    flex: 1 1 300px;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 700;
    color: #4B0082; /* Глубокий индиго */
}

/* Contact section */
.contact {
    background-color: #E6E6FA; /* Лавандовый */
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.contact-info {
    flex: 1 1 300px;
}

.contact-info h3 {
    margin-bottom: 20px;
    color: #4B0082; /* Глубокий индиго */
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info a {
    color: #4B0082; /* Глубокий индиго */
    text-decoration: none;
}

/* Blog section */
.blog {
    background-color: #DDA0DD; /* Нежно-сиреневый */
}

.blog-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.blog-card {
    flex: 1 1 300px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    margin-bottom: 10px;
    color: #4B0082; /* Глубокий индиго */
}

.blog-content p {
    margin-bottom: 15px;
}

.blog-date {
    font-size: 0.9rem;
    color: #666;
}

/* Form section */
.booking {
    background-color: #E6E6FA; /* Лавандовый */
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #4B0082; /* Глубокий индиго */
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #FFD700; /* Ярко-жёлтый */
    outline: none;
}

select.form-control option {
    color: black;
    background-color: white;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.checkbox-group input {
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-group label {
    font-size: 0.9rem;
}

.checkbox-group label a {
    color: #4B0082; /* Глубокий индиго */
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #4B0082; /* Глубокий индиго */
    color: #fff;
    padding: 60px 0 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1 1 200px;
}

.footer-col h3 {
    margin-bottom: 20px;
    color: #FFD700; /* Ярко-жёлтый */
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(75, 0, 130, 0.9); /* Глубокий индиго с прозрачностью */
    color: #fff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
}

.cookie-text {
    flex: 1;
    padding-right: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.accept-cookies {
    background-color: #FFD700; /* Ярко-жёлтый */
    color: #4B0082; /* Глубокий индиго */
}

.decline-cookies {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

/* Policy pages */
.policy-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.policy-container h1 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #4B0082; /* Глубокий индиго */
}

.policy-container h2 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: #4B0082; /* Глубокий индиго */
    text-align: left;
}

.policy-container p {
    margin-bottom: 15px;
}

.policy-container ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.policy-container ul li {
    margin-bottom: 5px;
}

/* Thank you page */
.thank-you {
    text-align: center;
    padding: 100px 0;
}

.thank-you h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #4B0082; /* Глубокий индиго */
}

.thank-you p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thank-you-frame {
    border: 3px solid #4B0082; /* Глубокий индиго */
    border-radius: 15px;
    padding: 40px;
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    max-width: 700px;
    margin: 0 auto;
}

/* Mobile menu */
#mobile-menu-toggle {
    display: none;
}

.mobile-menu-label {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Responsive styles */
@media (max-width: 992px) {
    .container {
        width: 90%;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-label {
        display: block;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #E6E6FA; /* Лавандовый */
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    #mobile-menu-toggle:checked ~ ul {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    section h2 {
        font-size: 1.8rem;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .cookie-consent {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-text {
        padding-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 40px 0;
    }
    
    section h2 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .form-container {
        padding: 20px;
    }
}

/* FAQ styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

details {
    background-color: #fff;
    border-radius: 5px;
    margin-bottom: 15px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

summary {
    font-weight: 600;
    cursor: pointer;
    padding: 10px;
    color: #4B0082; /* Глубокий индиго */
    outline: none;
}

details[open] summary {
    margin-bottom: 10px;
    color: #FFD700; /* Ярко-жёлтый */
}

details p {
    padding: 0 10px 10px;
}

/* Animation classes - disabled as requested */
.animate-fade-in {
    opacity: 1;
}

.delay-1, .delay-2, .delay-3, .delay-4, .delay-5 {
    /* Animation delays removed */
}
