/**
 * DRAK Footer Links - Premium
 */

.drak-footer-links {
  background-color: #0a0a0a;
  color: #ffffff;
  padding: 60px 20px 40px;
  width: 100%;
  border-top: 1px solid rgba(220, 38, 38, 0.15);
  position: relative;
}

/* Subtle red glow line at top */
.drak-footer-links::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.3), transparent);
}

.drak-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
}

/* Brand Column */
.drak-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.drak-footer-logo {
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.drak-footer-logo:hover {
  opacity: 0.8;
}

.drak-logo-text {
  font-family: 'Russo One', 'Oswald', sans-serif;
  font-size: 36px;
  letter-spacing: 3px;
  line-height: 1.2;
  display: block;
}

.drak-logo-drak {
  color: var(--draki-red);
}

.drak-logo-moto {
  color: #ffffff;
  font-weight: 400;
}

.drak-footer-tagline {
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.6;
  max-width: 250px;
  letter-spacing: 0.5px;
}

/* Social Icons - circular with glow */
.drak-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.drak-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.35s var(--draki-ease);
}

.drak-footer-social a:hover {
  background: var(--draki-red);
  border-color: var(--draki-red);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

/* Link Columns */
.drak-footer-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.drak-footer-column.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.drak-footer-column:nth-child(2) { transition-delay: 0.1s; }
.drak-footer-column:nth-child(3) { transition-delay: 0.2s; }
.drak-footer-column:nth-child(4) { transition-delay: 0.3s; }

.drak-footer-title {
  font-family: 'Russo One', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--draki-red);
  margin: 0 0 10px 0;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

/* Decorative line under title */
.drak-footer-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background: rgba(220, 38, 38, 0.4);
}

.drak-footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.drak-footer-menu li {
  margin: 0;
}

.drak-footer-menu a {
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.drak-footer-menu a:hover {
  color: var(--draki-red);
  transform: translateX(5px);
}

/* Linki bez docelowej strony */
.drak-footer-menu a.drak-link-soon {
  cursor: default;
  opacity: 0.4;
}

.drak-footer-menu a.drak-link-soon:hover {
  color: rgba(255, 255, 255, 0.6);
  transform: none;
}

/* Tablet */
@media (max-width: 990px) {
  .drak-footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .drak-footer-brand {
    grid-column: span 2;
    align-items: center;
    text-align: center;
  }

  .drak-footer-social {
    justify-content: center;
  }

  .drak-footer-tagline {
    max-width: 100%;
  }

  .drak-footer-column {
    text-align: center;
  }

  .drak-footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .drak-footer-column:last-child {
    grid-column: span 2;
    justify-self: center;
  }
}

/* Mobile */
@media (max-width: 549px) {
  .drak-footer-links {
    padding: 40px 20px 30px;
  }

  .drak-footer-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .drak-footer-brand {
    grid-column: span 1;
  }

  .drak-footer-column:last-child {
    grid-column: span 1;
  }

  .drak-footer-title {
    font-size: 14px;
  }

  .drak-footer-menu a {
    font-size: 13px;
  }
}
