
/* Футер */
.footer {
    background-color: #150e0e;
    color: white;
    padding: 4rem 0;
}

.footer-container {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Основное содержимое футера */
.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 76.8rem) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Секции футера */
.footer-section h4 {
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--slate-100);
    font-size: 1.6rem;
}

.footer-logo {
    height: 5rem;
    width: auto;
    margin-bottom: 1rem;
}

.footer-description {
    color: #ffffff;
    font-size: 1.4rem;
    line-height: 1.6;
}

/* Ссылки */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: #fff;
    font-size: 1.4rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

/* Контакты */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact-item {
    color: #ffffff;
    font-size: 1.4rem;
}

/* Форма подписки */
.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-newsletter-description {
    color: #cbd5e1;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.footer-newsletter-form {
    display: flex;
}

.footer-newsletter-input {
    flex: 1;
    padding: 0.5rem 0.75rem;
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 0.375rem 0 0 0.375rem;
    color: white;
    font-size: 1.4rem;
}

.footer-newsletter-input::placeholder {
    color: #94a3b8;
}

.footer-newsletter-input:focus {
    outline: none;
    border-color: #0d9488;
}

.footer-newsletter-button {
    padding: 0.5rem 1rem;
    background-color: #0d9488;
    color: white;
    border: none;
    border-radius: 0 0.375rem 0.375rem 0;
    font-size: 1.4rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.footer-newsletter-button:hover {
    background-color: #0f766e;
}

/* Нижняя часть футера */
.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 2rem;
    font-size: 1.4rem;
    color: #94a3b8;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-disclaimer {
    margin-bottom: 2rem;
    color: #c5bdba;
    font-size: 1.2rem;
    line-height: 1.6;
}

.footer-disclaimer p {
    margin: 0;
}

.footer-disclaimer p + p {
    margin-top: 0.6rem;
}

@media (min-width: 76.8rem) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }
}

.footer-copyright {
    color: #ffffff;
}

.footer-credit {
    color: #ffffff;
}
