/* =============================================
   footer.css — Footer Styles
   ============================================= */

#footer {
  background: #070d1c;
}

.footer-top {
  padding: 60px 0 0;
}

.footer-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

/* Brand col */
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
}
.footer-logo-text span { color: var(--color-red); }

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.38);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 15px;
  text-decoration: none;
  transition: var(--transition-base);
}
.social-btn:hover { transform: translateY(-2px); color: var(--color-white); }
.social-btn.facebook:hover  { background: #1877f2; border-color: #1877f2; }
.social-btn.twitter:hover   { background: #1da1f2; border-color: #1da1f2; }
.social-btn.instagram:hover { background: #e1306c; border-color: #e1306c; }
.social-btn.youtube:hover   { background: #ff0000; border-color: #ff0000; }

/* Link cols */
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  transition: var(--transition-fast);
}
.footer-links a:hover { color: var(--color-white); padding-left: 6px; }

/* Contact col */
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.38);
  line-height: 1.5;
}
.footer-contact-item i { color: var(--color-red); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.38); text-decoration: none; transition: var(--transition-fast); }
.footer-contact-item a:hover { color: var(--color-white); }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 32px;
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.22); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.22);
  text-decoration: none;
  transition: var(--transition-fast);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }
