/*
Theme Name: Солнечный Сад
Theme URI: https://example.com/sunshine-kids
Author: Sunshine Kids Team
Author URI: https://example.com
Description: Яркая и дружелюбная тема для детского сада, детского центра или образовательного сайта. Использует нативный редактор блоков WordPress (Gutenberg) — без Elementor, Site Origin и других конструкторов страниц.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sunshine-kids
Tags: education, blog, custom-colors, custom-logo, custom-menu, featured-images, full-width-template, rtl-language-support, sticky-post, theme-options, translation-ready, block-patterns, block-styles, wide-blocks

Солнечный Сад — тема для детских сайтов.
*/

/* Основные стили футера */
.site-footer {
    background-color: #2d3e50;
    color: #ffffff;
    padding: 60px 0 0;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-widget-title {
    color: #ffd700;
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: #ffd700;
    border-radius: 2px;
}

/* Контакты */
.footer-contacts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-contact-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-text strong {
    display: block;
    font-size: 0.85rem;
    color: #a0b4c8;
    margin-bottom: 3px;
    font-weight: 500;
}

.footer-contact-text a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1.05rem;
}

.footer-contact-text a:hover {
    color: #ffd700;
}

/* Расписание */
.footer-schedule {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-schedule li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-schedule li:last-child {
    border-bottom: none;
}

.schedule-day {
    color: #a0b4c8;
}

.schedule-time {
    font-weight: 600;
}

/* Соцсети */
.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 16px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.social-link:hover {
    background-color: #ffd700;
    color: #2d3e50;
    transform: translateX(5px);
}

/* Нижняя строка */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 20px 0;
    text-align: center;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #a0b4c8;
}

/* Адаптивность */
@media (max-width: 768px) {
    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-schedule li {
        flex-direction: column;
    }
}







.site-branding {
    display: flex;
    align-items: center;
    gap: 15px;
}

.custom-logo-link {
    display: block;
    line-height: 0;
}

.custom-logo {
    max-height: 80px; /* Ограничение высоты логотипа */
    width: auto;
    height: auto;
}

.site-title-text .site-title {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.2;
}

.site-title-text .site-title a {
    text-decoration: none;
    color: inherit;
}

.site-title-text .site-description {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}