/* relax.css */
/* Стили для блока "Релакс в банном чане" */

.relax {
    text-align: center;
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

.relax h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #222;
}

.relax h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    margin: 2rem 0;
    color: #333;
}

.relax-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
    gap: 30px;
}

.relax-content img {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.relax-text {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: left;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
}

.full-width-image {
    width: 100%;
    max-width: 1000px;
    border-radius: 10px;
    margin: 20px auto;
    display: block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.divider {
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, transparent, #ccc, transparent);
    margin: 30px auto;
}

.route {
    background-color: #f8f9fa;
    padding: 30px;
}

.route h2, .route p {
    color: #333;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.map-container {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 500px;
    margin: 20px 0;
}

.contact {
    text-align: center;
}

.contact h2 {
    font-family: 'Montserrat', sans-serif;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.contact a {
    color: #e67e22;
    text-decoration: none;
    font-weight: 600;
}

.site-footer {
    background-color: #333;
    color: white;
    padding: 40px 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

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

.social-links a {
    color: white;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .relax-content {
        flex-direction: column;
    }
    .relax-text, .relax-content img {
        min-width: 100%;
    }
    .map-container {
        height: 400px;
    }
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .relax-content {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
        padding: 0 5%;
    }
    
    .relax-content img {
        width: 90%;
        height: auto;
        max-height: none;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }
    
    .relax-text {
        width: 90%;
        margin: 0 auto;
        text-align: center;
    }
    
    .full-width-image {
        width: 95%;
        max-height: none;
        margin: 10px auto;
    }
    
    .divider {
        width: 90%;
    }
}