/* Anything that goes across all pages like background etc. */
body {
  /* Fallback for browsers that don't support dvh */
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* Navbar styles below */
.navbar {
    background: linear-gradient(90deg, #2c003e, #5a0d8a); 
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    transition: background 0.5s ease;
}

.navbar .nav-link {
    color: #f5e1ff;
    font-weight: 500;
    transition: color 0.3s, transform 0.3s;
}

.navbar .nav-link:hover {
    color: #ffb3ff;
    transform: scale(1.1);
}

.navbar .dropdown-menu {
    background: rgba(44, 0, 62, 0.95); 
    border: none;
}

.navbar .dropdown-item {
    color: #f5e1ff;
    transition: color 0.3s, background 0.3s;
}

.navbar .dropdown-item:hover {
    color: #ffb3ff;
    background: rgba(255, 179, 255, 0.1);
}

.navbar-toggler {
    border-color: #ffb3ff;
}

/* Footer styles below */
footer {
  margin-top:auto;
  background: linear-gradient(
    rgba(19, 3, 29, 0),
    rgba(19, 3, 29, 1)
  );
  color: #fff1ea;
  text-align: center;
  padding: 20px 0;
  position: relative;
  bottom: 0;
  width: 100%;
}

/* footer a {
  color: #fff1ea;
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
    text-decoration: underline;
    opacity: 0.9;
} */

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
}

.btn-github {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 0.85rem;
  border: 1px solid #ff7518;
  color: #ff7518;
  border-radius: 6px;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.btn-github:hover {
  background-color: #ff7518;
  color: #000;
  box-shadow: 0 0 12px #ff7518;
  transform: scale(1.05);
}

.github-icon {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}