/*
 * NAGELSCHUH.CLUB - Footer Styles
 * powered by javelin.ch
 */

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-white);
  padding: var(--space-xxxl) 0 var(--space-lg);
  margin-top: var(--space-xxxl);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

/* ============================================
   FOOTER COLUMNS
   ============================================ */
.footer-col {
  display: flex;
  flex-direction: column;
}

/* Logo Column */
.footer-logo {
  margin-bottom: var(--space-md);
}

.footer-logo img {
  height: 35px;
  width: auto;
  margin-bottom: var(--space-sm);
  filter: brightness(0) invert(1); /* Makes logo white */
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: 700;
  font-style: italic;
  color: var(--text-white);
  margin-bottom: 4px;
}

.footer-logo-subline {
  font-size: var(--font-size-xs);
  color: var(--text-light);
}

.footer-text {
  color: var(--text-light);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

/* Footer Titles */
.footer-title {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: var(--text-light);
  font-size: var(--font-size-sm);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary);
  text-decoration: none;
}

/* ============================================
   SOCIAL ICONS
   ============================================ */
.footer-social {
  display: flex;
  gap: var(--space-md);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-white);
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background-color: var(--primary);
  color: var(--text-white);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   FOOTER BOTTOM
   ============================================ */
.footer-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: var(--space-xl) 0;
}

.footer-bottom {
  text-align: center;
}

.footer-copyright {
  color: var(--text-light);
  font-size: var(--font-size-sm);
  margin: 0;
}

/* ============================================
   RESPONSIVE FOOTER
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
}

@media (max-width: 640px) {
  .footer {
    padding: var(--space-xl) 0 var(--space-lg);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-col {
    text-align: center;
  }

  .footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-links {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}
