/* =============================================================================
   Стили для Соц. иконок в подвале (Футере)
   ============================================================================= */

.footer__socials {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 44px;
    height: 44px;

    display: flex;
    justify-content: center;
    align-items: center;

    color: rgba(255, 255, 255, 0.7);
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;

    transition: background-color var(--transition-duration), color var(--transition-duration);
}

.social-icon:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
    /* Синий при наведении */
}


/* =============================================================================
   Стили для Подвала (Футера)
   ============================================================================= */

.footer {
    background-color: var(--color-heading);
    /* Наш темно-синий цвет */
    color: rgba(255, 255, 255, 0.8);
    /* Белый, но чуть прозрачный */
    padding: 60px 0 30px;
    font-size: 15px;
}

.footer__grid {
    display: grid;
    /* Создаем 3 колонки, которые будут адаптироваться */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    /* 16px */
    color: var(--color-white);
    margin-bottom: 20px;
}

.footer__address {
    font-style: normal;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer__contact-link {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 5px;
    transition: color var(--transition-duration);
}

.footer__contact-link:hover {
    color: var(--color-white);
}

.footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__list a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-duration);
}

.footer__list a:hover {
    color: var(--color-white);
    text-decoration: underline;
}

.footer__list strong {
    color: var(--color-white);
    font-weight: 600;
}

.footer__note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer__bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  text-align: right;
}

.footer__sep {
  opacity: 0.35;
}

.footer__dev-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.footer__dev-link:hover {
  color: var(--color-white);
}


.footer__policy-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.footer__policy-link:hover {
    color: var(--color-white);
}

