/* ================================
   FOOTER
================================ */

footer {
  background: #333333;
  color: #fff;
  padding: 70px 0 30px 0;
  margin-top: 80px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
}

.footer-column {
  flex: 1 1 260px;
  min-width: 240px;
}

.footer-column h4 {
  margin-bottom: 14px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

.footer-column p {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
}


/* ================================
   FOOTER DETAILS
================================ */

.footer-details-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 10px 18px;
  align-items: start;
}

.footer-details-labels p {
  color: rgba(255,255,255,0.72);
}

.footer-details-values p {
  color: rgba(255,255,255,0.90);
}

@media (max-width: 680px) {
  .footer-details-grid {
    grid-template-columns: 1fr;
  }

  .footer-details-labels p {
    margin-bottom: 2px;
  }
}


/* ================================
   SOCIAL ICONS
================================ */

.social-icons {
  display: flex;
  gap: 16px;
  margin-top: 6px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transition: background 0.2s ease, transform 0.15s ease;
}

.social-icons a[aria-label="Instagram"]:hover {
  background: #e1306c;
  transform: translateY(-2px);
}

.social-icons a[aria-label="YouTube"]:hover {
  background: #ff0000;
  transform: translateY(-2px);
}

.social-icons a[aria-label="Spotify"]:hover {
  background: #1db954;
  transform: translateY(-2px);
}

.social-icons a[aria-label="LinkedIn"]:hover {
  background: #0077b5;
  transform: translateY(-2px);
}

.social-icons a[aria-label="Contact"]:hover {
  background: #999999;
  transform: translateY(-2px);
}

.social-icons svg {
  width: 18px;
  height: 18px;
  fill: white;
}


/* ================================
   FOOTER LINKS
================================ */

.footer-divider {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 40px;
  margin-top: 10px;
}

.footer-links-grid a {
  text-decoration: none;
  font-size: 14px;
  color: rgba(255,255,255,0.72);
}

.footer-links-grid a:hover {
  color: #999999;
}