/* components/footer.css */

/* ===== FOOTER ===== */
.footer {
  width: 100%;
  background-color: #F4F6F7;  /* фон на всю ширину */
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;  /* центрирование контента */
  padding: 40px;
}

/* Сетка колонок */
.footer-columns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  position: relative;
  margin-bottom: 40px;
}

/* Каждая колонка */
.footer-column {
  flex: 0 0 auto;
  width: 292px;
}

/* Заголовки колонок */
.footer-title {
  font-family: 'OpenRunde-Bold', 'Open Runde', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.011em;
  color: #494C51;
  margin-bottom: 16px;
}

/* Список ссылок */
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-link {
  display: block;
  padding: 4px 0;
  font-family: 'OpenRunde-Medium', 'Open Runde', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.011em;
  color: #77797D;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #1C1F26;
}

/* Блок контактов */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-name {
  font-family: 'OpenRunde-Medium', 'Open Runde', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.011em;
  color: #1C1F26;
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-email,
.footer-phone {
  font-family: 'OpenRunde-Regular', 'Open Runde', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.011em;
  color: #77797D;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-email:hover,
.footer-phone:hover {
  color: #1C1F26;
}

.footer-workhours {
  font-family: 'OpenRunde-Regular', 'Open Runde', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.011em;
  color: #77797D;
}

/* Логотип DocFarm */
.footer-logo {
  flex: 0 0 auto;
  margin-left: auto;
}

.footer-logo-img {
  width: auto;
  object-fit: contain;
}

/* Копирайт */
.footer-copyright {
  font-family: 'OpenRunde-Regular', 'Open Runde', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.011em;
  color: #77797D;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #D4DADE;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 1200px) {
  .footer-container {
    padding: 30px 24px;
  }
  
  .footer-column {
    width: calc(50% - 12px);
  }
  
  .footer-logo {
    margin-left: 0;
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 24px 16px;
  }
  
  .footer-columns {
    gap: 32px;
  }
  
  .footer-column {
    width: 100%;
  }
  
  .footer-title {
    font-size: 20px;
  }
}