/* Social banner*/

.social-banner {
  width: 100vw;
  height: 120px;
  margin-left: calc(-50vw + 50%);
  background-color: #240e0e;

  display: flex;
  justify-content: center;
  align-items: center;

  border-top: 1px solid #f3bf4d;
  border-bottom: 1px solid #f3bf4d;
}

.social-nav {
  display: flex;
  gap: 1.5rem;
}

.social-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;
}

.social-nav a img {
  width: 24px;
  height: 24px;
  object-fit: contain;

  filter: brightness(0) invert(1);
  transition: transform 0.25s ease, filter 0.25s ease;
}

.social-nav a:hover img {
  transform: scale(1.2);
  filter: brightness(1.2) drop-shadow(0 0 5px #f0bc4d);
}

/* Footer wrapper*/
.site-footer {
  background-color: #240e0e;
  color: #f3bf4d;

  width: 100vw;
  margin-left: calc(-50vw + 50%);

  padding: 2rem;
  font-family: 'Montserrat', sans-serif;
}

/* Footer inner layout*/
.footer-brand-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Logo */
.footer-logo{
  height: 56px;
  width: auto;
  max-width: 250px;
}

/* Footer navigation */
.footer-nav {
  display: flex;
  gap: 1.5rem;
}

.footer-nav a {
  color: #f3bf4d;
  text-decoration: none;
  font-weight: 600;
}

.footer-nav a:hover {
  text-decoration: underline;
}

/* Copyright / Meta */
.footer-meta {
  margin-top: 1.5rem;
  text-align: left;
  font-size: 0.9rem;
  opacity: 0.85;
}

/* Adjust for mobile*/

@media (max-width: 768px) {
  .footer-brand-nav {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .footer-meta {
    text-align: center;
  }
} 
