/* =========================================
   FOOTER STYLES
   ========================================= */

/* Glassmorphism Footer */
footer.glass-footer {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

/* Эффект свечения сверху */
footer.glass-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, gold, transparent);
}

/* Контейнер */
footer.glass-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Внутренняя структура */
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Левая часть (лого и копирайт) */
.footer-left {
    flex: 1;
}

/* Логотип в футере */
.footer-logo {
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-logo .logo-gold {
    background: linear-gradient(135deg, #FFD700, #D4AF37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.footer-logo .logo-silver {
    color: rgba(255, 255, 255, 0.9);
}

/* Копирайт */
.footer-copyright {
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.6;
}

/* Правая часть (ссылки) */
.footer-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

/* Навигация в футере */
.footer-links {
    display: flex;
    gap: 35px;
}

/* Ссылки в футере */
.footer-link {
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.footer-link:hover {
    color: gold;
}

/* Подчеркивание при наведении */
.footer-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: gold;
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

/* ===== МОБИЛЬНАЯ АДАПТАЦИЯ ФУТЕРА ===== */
@media (max-width: 768px) {
    footer.glass-footer {
        padding: 50px 0;
        margin-top: 80px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .footer-left {
        order: 2;
    }

    .footer-right {
        order: 1;
        justify-content: center;
        width: 100%;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }

    .footer-logo {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    footer.glass-footer {
        padding: 40px 0;
        margin-top: 60px;
    }

    .footer-links {
        gap: 20px;
    }

    .footer-link {
        font-size: 0.9rem;
    }

    .footer-copyright {
        font-size: 0.85rem;
    }
}

/* Эффект при наведении на весь футер (легко) */
footer.glass-footer:hover {
    border-top-color: rgba(255, 255, 255, 0.2);
}