@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

.container-header {
  background-color: black;
  background-image: none;
}

body {
  background-color: black;
  color: white;
}

.container-topbar {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

/* Container styling for social icon menu items */
.nav .bi {
  font-size: 1.25rem;       /* Adjust icon size */
  line-height: 1;
  vertical-align: middle;
  transition: color 0.2s ease-in-out, transform 0.2s ease-in-out;
}

/* Optional hover effect */
.nav a:hover .bi {
  transform: scale(1.15);    /* Subtle zoom on hover */
}

/* Individual Brand Colors on Hover (Optional) */
.bi-youtube:hover    { color: #ff0000 !important; }
.bi-tiktok:hover     { color: #ff0050 !important; }
.bi-instagram:hover  { color: #e4405f !important; }
.bi-twitter-x:hover  { color: #ffffff !important; } /* Or #ffffff if on a dark background */
.bi-bandcamp:hover   { color: #629aa9 !important; }
.bi-soundcloud:hover { color: #ff5500 !important; }
.bi-discord:hover    { color: #5865f2 !important; }
.bi-patreon:hover    { color: #ff424d !important; }

/* Force all social icons in the menu to be visible white on dark backgrounds */
.nav a .bi {
  color: #ffffff !important;
  font-size: 1.25rem !important;
  display: inline-block !important;
}


