/* Стили для footer секции */

/* Основные стили footer секции */
.footer-section {
    background-image: url('../images/footer-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1A1A1E;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 40px 0 20px;
    min-height: 443px;
}

.footer-section > * {
    position: relative;
    z-index: 2;
}

/* Верхняя часть футера с логотипом и меню */
.footer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

/* Логотип футера */
.footer-logo {
    text-align: center;
}

.footer-logo img {
    max-height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.footer-logo:hover img {
    transform: scale(1.05);
}

/* Навигационное меню */
.footer-nav-links {
    display: flex;
    gap: 42px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav-link {
    color: var(--color-primary);
    font-family: 'SF Pro Display', 'Geologica', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 22.4px */
    text-transform: uppercase;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.footer-nav-link:hover {
    color: rgba(250, 250, 250, 0.8);
    text-decoration: none !important;
}

/* Мобильные кнопки навигации */
.footer-nav-buttons {
    display: none;
    flex-direction: column;
    gap: 7px;
    width: 100%;
    margin-bottom: 32px;
}

.footer-nav-row {
    display: flex;
    gap: 7px;
    justify-content: space-between;
}

.footer-nav-row.full-width {
    justify-content: center;
}

.footer-nav-btn {
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 8px;
    background: rgba(250, 250, 250, 0.04);
    color: var(--color-primary);
    font-family: 'SF Pro Display', 'Geologica', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 22.4px */
    text-transform: uppercase;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.footer-nav-btn.half-width {
    flex: 1;
    min-width: 0;
}

.footer-nav-btn.full-width {
    width: 100%;
    max-width: 360px;
}

.footer-nav-btn:hover {
    background: rgba(250, 250, 250, 0.08);
    color: rgba(250, 250, 250, 0.9);
    text-decoration: none !important;
    transform: translateY(-1px);
}

/* Центральный контент футера */
.footer-main-content {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Социальные иконки - УВЕЛИЧЕННЫЕ */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 16px; /* Увеличили с 8px до 16px */
    margin-bottom: 32px;
}

.social-icon {
    width: 60px; /* Увеличили с 48px до 60px */
    height: 60px; /* Увеличили с 48px до 60px */
    background: rgba(250, 250, 250, 0.04);
    border-radius: 8px;
    border: 2px solid rgba(250, 250, 250, 0.02);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.social-icon:hover {
    background: rgba(250, 250, 250, 0.08);
    border-color: rgba(250, 250, 250, 0.08);
    transform: translateY(-2px);
    text-decoration: none !important;
}

.social-icon img {
    width: 24px; /* Увеличили с 20px до 24px */
    height: 24px; /* Увеличили с 20px до 24px */
    object-fit: contain;
}

/* Блок с заголовком и контактами */
.footer-title-block {
    width: 100%;
    max-width: 780px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Основной заголовок футера */
.footer-title {
    color: var(--color-primary);
    text-align: center;
    font-family: 'Dela Gothic One', cursive;
    font-size: 42px;
    font-weight: 400;
    line-height: 50.4px;
    letter-spacing: 1.26px;
    margin-bottom: 32px;
    width: 100%;
}

/* Контактная информация - выравнивается по краям блока заголовка */
.footer-contacts {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-contact-item {
    color: var(--color-primary);
    text-align: center;
    font-family: 'Geologica', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 21.6px;
    letter-spacing: 0.54px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    color: rgba(250, 250, 250, 0.8);
    text-decoration: none !important;
}

/* Разделитель */
.footer-divider {
    width: 100%;
    height: 2px;
    background: transparent;
    border: none;
    border-top: 2px solid rgba(250, 250, 250, 0.12);
    margin: 20px 0 0 0;
}

/* Нижний блок с копирайтом */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

.footer-copyright {
    color: rgba(250, 250, 250, 0.36);
    font-size: 14px;
    font-family: 'Geologica', sans-serif;
    font-weight: 500;
    line-height: 19.6px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.footer-legal {
    display: flex;
    gap: 40px;
}

.footer-legal-link {
    color: #D1D1D6;
    font-size: 14px;
    font-family: 'Geologica', sans-serif;
    font-weight: 500;
    line-height: 19.6px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.footer-legal-link:hover {
    color: var(--color-primary);
    text-decoration: none !important;
}

/* Адаптивные стили для планшетов */
@media (max-width: 991px) {
    .footer-header {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .footer-nav-links {
        gap: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-title-block {
        max-width: 650px;
    }

    .footer-title {
        font-size: 36px;
        letter-spacing: 1.08px;
        line-height: 43.2px;
    }

    .footer-contacts {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .footer-contact-item {
        font-size: 16px;
        letter-spacing: 0.48px;
    }
}

/* Мобильная версия */
@media (max-width: 768px) {
    .footer-section {
        padding: 30px 0 20px;
        min-height: auto;
    }

    /* Мобильная структура футера */
    .footer-header {
        flex-direction: column;
        align-items: center;
        margin-bottom: 24px;
        gap: 0;
    }

    .footer-logo {
        order: 1;
        margin-bottom: 24px;
    }

    .footer-logo img {
        max-height: 45px;
    }

    /* Скрываем десктопное меню */
    .footer-nav {
        display: none;
    }

    /* Показываем социальные иконки под логотипом */
    .footer-main-content {
        margin-bottom: 32px;
        order: 2;
    }

    .social-icons {
        order: 2;
        margin-bottom: 32px;
        gap: 12px; /* Увеличили с 6px до 12px на мобильных */
    }

    .social-icon {
        width: 48px; /* Увеличили с 40px до 48px */
        height: 48px; /* Увеличили с 40px до 48px */
    }

    .social-icon img {
        width: 20px; /* Увеличили с 16px до 20px */
        height: 20px; /* Увеличили с 16px до 20px */
    }

    /* Показываем мобильные кнопки навигации */
    .footer-nav-buttons {
        display: flex;
        order: 4;
    }

    .footer-nav-btn {
        font-size: 14px;
        height: 40px;
    }

    .footer-title-block {
        max-width: 100%;
        order: 3;
        margin-bottom: 24px;
    }

    .footer-title {
        font-size: 20px;
        letter-spacing: 0.6px;
        line-height: 24px;
        margin-bottom: 24px;
    }

    .footer-contacts {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .footer-contact-item {
        font-size: 14px;
        letter-spacing: 0.42px;
        line-height: 19.6px;
    }

    /* Мобильный нижний блок - по краям экрана */
    .footer-bottom {
        margin: 0 -15px; /* Компенсируем padding контейнера */
        padding: 20px 15px 0;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0;
        text-align: right;
    }

    .footer-legal .footer-legal-link:last-child {
        display: none; /* Скрываем Privacy Policy на мобильных */
    }

    .footer-copyright,
    .footer-legal-link {
        font-size: 12px;
        line-height: 16.8px;
    }
}

/* Стили для очень маленьких экранов */
@media (max-width: 576px) {
    .footer-nav-btn {
        font-size: 12px;
        height: 38px;
    }

    .footer-title {
        font-size: 18px;
        letter-spacing: 0.54px;
    }

    .footer-contact-item {
        font-size: 12px;
    }

    .social-icons {
        gap: 8px; /* На маленьких экранах чуть меньше */
    }

    .social-icon {
        width: 44px; /* Немного меньше на очень маленьких экранах */
        height: 44px;
    }

    .social-icon img {
        width: 18px;
        height: 18px;
    }
}