/* ── FOOTER STYLES ── */

/* Footer container */
footer {
  background-color: var(--navy-mid);
  border-top: 1px solid var(--navy-border);
  padding: 2rem 1.5rem;
  margin-top: 4rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* Footer logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--white);
  transition: opacity 0.2s;
}

.footer-logo:hover {
  opacity: 0.85;
}

.footer-logo img {
  height: 40px;
  width: auto;
  display: block;
}

.footer-logo-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
}

/* Footer copyright */
.footer-copy {
  font-size: 0.9rem;
  color: var(--silver);
  text-align: center;
  line-height: 1.6;
}

/* Mobile-first responsive adjustments */
@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .footer-copy {
    text-align: left;
  }
}

@media (min-width: 768px) {
  footer {
    padding: 2.5rem 1.5rem;
  }
  
  .footer-logo-text {
    font-size: 1.75rem;
  }
}
