/* Base layout and background */
body {
  margin: 0;
  height: 100%;
  background: #000;
}

body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('IMG_6142.jpg') no-repeat center center / cover;
  opacity: 0.5; /* Slight dimming */
  z-index: -2;
}

/* Full-screen translucent overlay */
body::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3); /* Translucent black overlay */
  z-index: -1;
}

/* Page content */
.cover-container {
  width: 100%;
  max-width: 100%;
}

h1 {
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

/* Base style */
.nav-link svg {
  width: 1.5rem;
  height: 1.5rem;
  margin: 0 0.75rem;
  transition: transform 0.2s ease, fill 0.2s ease;
}

/* Hover effect: scale and color shift */
.nav-link:hover svg {
  transform: scale(1.2);
  fill: #0d6efd; /* Bootstrap primary blue, or pick your own */
}

footer p {
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}