/* footer.css - Site footer (Veo-inspired layout) */

.footer {
  background: linear-gradient(180deg, #0b0b0b 0%, #000000 100%);
  color: #fff;
  padding: 2rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(1, 214, 245, 0.8), transparent);
}

/* Footer Top - Logo left, Social icons right */
.footerTop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
}

.footerBrand {
  display: flex;
  align-items: center;
}

.footerLogo {
  height: 45px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

/* Social Icons - Horizontal row */
.footerSocial {
  display: flex;
  gap: 12px;
  align-items: center;
}

.socialIcon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  transition: all 250ms ease;
}

.socialIcon svg {
  width: 18px;
  height: 18px;
}

.socialIcon:hover {
  background: rgba(1, 214, 245, 0.15);
  border-color: rgba(1, 214, 245, 0.4);
  color: #01D6F5;
  transform: translateY(-2px);
}

/* Footer Main - Multi-column links */
.footerMain {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.footerColumn {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footerColumn h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.footerColumn a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 200ms ease;
  line-height: 1.6;
}

.footerColumn a:hover {
  color: #01D6F5;
}

/* Footer Bottom */
.footerBottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footerBottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.footerLegal {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footerLegal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 200ms ease;
}

.footerLegal a:hover {
  color: #01D6F5;
}

/* Responsive */
@media (max-width: 1024px) {
  .footerMain {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 20px 0 20px;
  }

  .footerTop {
    padding-bottom: 20px;
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footerMain {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footerColumn {
    align-items: flex-start;
  }

  .footerBottom {
    padding-top: 20px;
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footerLogo {
    height: 40px;
  }
}

@media (max-width: 480px) {
  .footerMain {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footerColumn {
    align-items: center;
    text-align: center;
  }
}

/* ==================== EXTRA SMALL DEVICES (320px) ==================== */
@media (max-width: 320px) {
  .footer {
    padding: 32px 12px 24px;
  }

  .footerTop {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
  }

  .footerLogo {
    height: 1.8rem;
  }

  .footerSocial {
    gap: 12px;
  }

  .socialIcon {
    width: 32px;
    height: 32px;
  }

  .footerBottom {
    flex-direction: column;
    gap: 12px;
  }

  .footerBottom p {
    font-size: 11px;
  }

  .footerLegal {
    gap: 8px;
    font-size: 11px;
  }

  .footerMain {
    gap: 20px;
  }

  .footerColumn h3 {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .footerColumn ul li {
    font-size: 11px;
  }
}
