/**
 * DRAK Footer - Premium copyright + social
 */
.footer-utilities {
  background-color: #0a0a0a;
  width: 100%;
}

.footer-utilities .section-background {
  background-color: #0a0a0a;
}

.footer-utilities .section {
  background-color: transparent;
}

.footer-utilities .section--page-width {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* === Stopka - linki prawne + credit w jednej linii === */
.footer-legal-inline {
  font-family: 'Exo 2', sans-serif;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: none;
  color: rgba(255, 255, 255, 0.45);
}

.footer-legal-inline a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-inline a:hover {
  color: var(--draki-red);
}

.footer-sep {
  margin: 0 4px;
  color: rgba(255, 255, 255, 0.2);
  user-select: none;
}

@media (max-width: 900px) {
  .footer-legal-inline {
    display: block;
    margin-top: 8px;
    font-size: 11px;
  }
  .footer-legal-inline .footer-sep:first-of-type {
    display: none;
  }
}

.utilities {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 20px 0;
}

.utilities a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.utilities a:hover {
  color: var(--draki-red);
}

.footer-utilities__text {
  font-size: 14px;
}

/* Social Media Icons */
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.35s var(--draki-ease);
}

.footer-social a:hover {
  background: var(--draki-red);
  border-color: var(--draki-red);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-social a:hover svg {
  fill: #ffffff;
  stroke: #ffffff;
}

/* Mobile */
@media screen and (max-width: 749px) {
  .footer-utilities .section--page-width {
    padding: 0 20px;
  }

  .utilities {
    flex-direction: column-reverse;
    gap: 16px;
    padding: 20px 0;
    text-align: center;
  }

  .footer-utilities__text {
    font-size: 11px;
    order: 2;
  }

  .footer-social {
    gap: 12px;
    order: 1;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
  }

  .footer-social svg {
    width: 16px;
    height: 16px;
  }
}
