/* Header */
header {
  /* background-image: url('../img/header.webp'); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--header-footer-bg);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--header-footer-bg);
  opacity: 0.5;
  z-index: 1;
}

header .container,
header nav {
  position: relative;
  z-index: 2;
}

.navbar-brand img {
  height: 100px;
  width: auto;
}

.navbar-dark .navbar-nav .nav-link {
  color: white;
  font-weight: 500;
  transition: opacity 0.3s;
}

.navbar-dark .navbar-nav .nav-link:hover {
  opacity: 0.8;
  color: white;
}

/* Social icons */
.social-icons {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.social-icons a {
  color: white;
  transition: opacity 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  
}

.social-icons a svg {
  width: 30px;
  height: 30px;
  display: block;
  flex: 0 0 auto;
}

.social-icons a:hover {
  opacity: 0.7;
}

@media (max-width: 991px) {
  .social-icons {
    margin-left: 0;
    margin-top: 1rem;
    justify-content: center;
    margin-bottom: 0.5rem;
  }

  .social-icons a{
    padding-left: 0.5rem;
  }
}
