:root {
  --scrollbar-bg: #2b2b2b; /* Dark background */
  --scrollbar-thumb: #555; /* Dark grey thumb */
  --scrollbar-thumb-hover: #888; /* Lighter grey on hover */
  --gold: #f7931a;
  --navy: #001f3f;
}

.header {
  box-sizing: border-box;
  position: fixed;
  width: 100vw;
  top: 0; /* Adjust this value based on tagline's size */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  backdrop-filter: blur(10px);
  border-radius: 0px;
  z-index: 1005; /* Ensure it's above the background but below any other overlays */
  border-bottom: none;
  box-shadow: 0 4px 8px rgba(247, 147, 26, 0.3),
    0 8px 16px rgba(247, 147, 26, 0.2), 0 16px 32px rgba(247, 147, 26, 0.1);
  transform: translateX(-50%) rotateX(10deg); /* Tilt the header up slightly */
}

/* Navigation Styles */
.main-links {
}

.main-links ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-links ul li {
  margin: 10px 5px;
}

.main-links ul li a {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center; /* Center the icons */
  width: 35px; /* Increased size for better visibility */
  height: 35px;
  color: #f0f0fa;
  background: #000;
  padding: 5px;
  border-radius: 5px;
  text-decoration: none;
  /* box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5), 0 2px 2px rgba(0, 0, 0, 0.5),
    0 4px 4px rgba(0, 0, 0, 0.5), 0 8px 8px rgba(0, 0, 0, 0.5),
    0 16px 16px rgba(0, 0, 0, 0.5); */
  border: solid 2px var(--navy);
  transform: perspective(1000px) rotateX(10deg);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  margin: 0;
}

.main-links ul li a svg,
.main-links ul li a img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease; /* Smooth icon scaling */
}

.main-links ul li a:hover {
  transform: scale(1.2); /* Slightly enlarge on hover */
}

.main-links ul li a:hover svg,
.main-links ul li a:hover img {
  filter: brightness(1.5); /* More pronounced brightness on hover */
}

.other-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-left: 20px;
}

.other-links a {
  border: solid 1px var(--navy);
  /* box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5), 0 2px 2px rgba(0, 0, 0, 0.5),
    0 4px 4px rgba(0, 0, 0, 0.5), 0 8px 8px rgba(0, 0, 0, 0.5),
    0 16px 16px rgba(0, 0, 0, 0.5); */
  transform: perspective(1000px) rotateX(10deg);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  font-size: 16px;
  background: var(--navy);
  border-radius: 5px;
  color: #fff;
  margin: 0 5px;
  cursor: pointer;
}

.other-links a:hover {
  transform: perspective(1000px) rotateX(40deg);
}

/* Media query for mobile responsiveness */
@media (max-width: 768px) {
  .main-links {
    top: 0; /* Adjust this value based on tagline's size */
  }

  .main-links ul li {
    margin: 20px 15px;
  }

  .main-links ul li a {
    box-sizing: border-box;
    width: 30px;
    height: 30px;
  }

  .other-links a {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .main-links {
    top: 0; /* Adjust this value based on tagline's size */
  }

  .main-links ul li {
    margin: 0 5px;
  }

  .main-links ul li a {
    width: 30px;
    height: 30px;
  }
  .other-links a {
    font-size: 14px;
  }
}
