/* ============================================
   MONLIS Website - Home Page Footer
   Unique footer only for the main page
   Simple: Datenschutz | Impressum
   ============================================ */

/* ==========================================
   FOOTER CONTAINER
   Background: #232323 (Mine Shaft)
   Height: 121px (50px padding top/bottom + 21px content)
   ========================================== */
.home-footer {
  background-color: var(--color-grey-14);
  padding: var(--spacing-xl) var(--container-padding); /* 50px 100px */
  width: 100%;
}

/* ==========================================
   FOOTER CONTENT
   Two columns: Datenschutz (left) | Impressum (right)
   ========================================== */
.home-footer__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max-width);
  margin: 0 auto;
}

/* ==========================================
   FOOTER COLUMNS
   Each takes 50% width, centered text
   ========================================== */
.home-footer__column {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ==========================================
   FOOTER LINKS
   Font: Montserrat Regular 17px
   Color: White
   ========================================== */
.home-footer__link {
  font-family: var(--font-secondary);
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-17);
  line-height: var(--line-height-20);
  color: var(--color-white);
  text-align: center;
  transition: var(--transition-fast);
}

.home-footer__link:hover {
  opacity: 0.7;
}

/* ==========================================
   RESPONSIVE STYLES
   ========================================== */

/* Tablet */
@media (max-width: 1024px) {
  .home-footer {
    padding: 40px 40px;
  }
  
  .home-footer__link {
    font-size: 15px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .home-footer {
    padding: 30px 20px;
  }
  
  .home-footer__content {
    flex-direction: column;
    gap: 20px;
  }
  
  .home-footer__column {
    width: 100%;
  }
  
  .home-footer__link {
    font-size: 14px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .home-footer {
    padding: 25px 15px;
  }
  
  .home-footer__link {
    font-size: 13px;
  }
}
