/**
 * Стили для футера массажного салона
 */

/* ===== ОСНОВНОЙ ФУТЕР ===== */
.massage-footer {
    background: #2c2c2c;
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.massage-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.massage-footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

/* ===== ЛІВА КОЛОНКА (ЛОГОТИП + СОЦМЕРЕЖІ) ===== */
.massage-footer-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.massage-footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #ffffff;
}

.massage-footer-logo-icon {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.massage-footer-logo-icon svg {
    width: 35px;
    height: 35px;
    fill: #2c5f2d;
}

.massage-footer-logo-text {
    display: flex;
    flex-direction: column;
}

.massage-footer-logo-text .brand-name {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.massage-footer-logo-text .brand-subtitle {
    font-size: 12px;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.massage-footer-social a {
    width: 45px;
    height: 45px;
    background: #3c3c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.massage-footer-social a:hover {
    background: #2c5f2d;
    transform: translateY(-3px);
}

.massage-footer-social svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ===== ЦЕНТРАЛЬНА КОЛОНКА (МЕНЮ) ===== */
.massage-footer-center h3 {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #2c5f2d;
}

.massage-footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.massage-footer-menu li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    display: inline-block;
}

.massage-footer-menu li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

/* ===== ПРАВА КОЛОНКА (КОНТАКТИ) ===== */
.massage-footer-right h3 {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #2c5f2d;
}

.massage-footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.massage-footer-contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.massage-footer-contact-item strong {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.massage-footer-contact-item p {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.massage-footer-contact-item a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.massage-footer-contact-item a:hover {
    color: #2c5f2d;
}

/* ===== НИЖНЯ ЧАСТИНА ФУТЕРА ===== */
.massage-footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #3c3c3c;
    text-align: center;
}

.massage-footer-bottom p {
    color: #808080;
    font-size: 13px;
    margin: 0;
}

/* ===== АДАПТИВНІСТЬ ===== */

/* Планшет */
@media (max-width: 968px) {
    .massage-footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .massage-footer-right {
        grid-column: 1 / -1;
    }
}

/* Мобільні */
@media (max-width: 640px) {
    .massage-footer {
        padding: 40px 0 20px;
        margin-top: 60px;
    }
    
    .massage-footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .massage-footer-left {
        text-align: center;
        align-items: center;
    }
    
    .massage-footer-social {
        justify-content: center;
    }
    
    .massage-footer-center,
    .massage-footer-right {
        text-align: center;
    }
    
    .massage-footer-menu {
        align-items: center;
    }
    
    .massage-footer-contacts {
        align-items: center;
    }
}
