/* ============================================================
   FOOTER.CSS
   All styles scoped to the <footer> element
   ============================================================ */

/* ── 1. FOOTER WRAPPER ───────────────────────────────────── */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  border-top: 4px solid var(--gold);
}

/* ── 2. HEADINGS ─────────────────────────────────────────── */
footer h5 {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── 3. LINKS ────────────────────────────────────────────── */
footer a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
  display: block;
  margin-bottom: 0.4rem;
}

footer a:hover {
  color: var(--gold);
}

/* ── 4. COLLEGE LOGO CIRCLE ──────────────────────────────── */
footer .college-logo {
  width: 52px;
  height: 52px;
  background: var(--grad-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--navy);
  flex-shrink: 0;
}

/* ── 5. SOCIAL ICON BUTTONS ──────────────────────────────── */
footer .social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s;
  border: none;
}

footer .social-btn:hover {
  background: rgba(245, 184, 0, 0.25);
  color: var(--gold);
}

/* ── 6. CONTACT ROW ITEMS ────────────────────────────────── */
footer .contact-item {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.65);
  align-items: flex-start;
}

footer .contact-item i {
  color: var(--gold);
  width: 16px;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

footer .contact-item a {
  color: rgba(255, 255, 255, 0.65);
  display: inline;
  margin-bottom: 0;
}

footer .contact-item a:hover {
  color: var(--gold);
}

/* ── 7. DIVIDER & COPYRIGHT ──────────────────────────────── */
footer hr {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 2.5rem 0 1.5rem;
}

footer .copyright {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

/* ── 8. RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 768px) {
  footer h5 {
    font-size: 0.85rem;
  }

  footer a {
    font-size: 0.82rem;
  }

  footer .college-logo {
    width: 42px;
    height: 42px;
    font-size: 0.9rem;
  }
}
