@font-face {
  font-family: 'Zeta';
  src: url('../fonts/zeta/zeta.woff2') format('woff2'),
       url('../fonts/zeta/zeta.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

body {
    font-family: 'Fira Code', monospace;
    background-color: black;
    color: white;
}

/* Fullscreen video background */
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -1;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* dark transparent overlay */
  z-index: 0; /* same as video, behind content */
}

@keyframes pulseCircle {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

.overlay-circle {
  position: fixed;
  top: 40%;
  left: 50%;
  width: 700px;
  height: 700px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;

  background: radial-gradient(
    circle at 50% 50%,
    rgb(22, 112, 128, 0.4) 0%,
    rgba(90, 15, 119, 0.2) 20%,
    rgba(0, 0, 0, 0) 40%
  );
  animation: pulseCircle 6s ease-in-out infinite;
  background-size: 200% 200%;
  background-position: center;
}

@keyframes vignetteMove {
  0% {
    background-position: 50% 50%;
  }
  100% {
    background-position: 52% 48%;
  }
}

.overlay-vignette {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;

  background: radial-gradient(
    ellipse at center,
    rgba(255, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.5) 70%,
    rgba(0, 0, 0, 1.0) 100%
  );

  background-size: 90% 90%;
  animation: vignetteMove 10s ease-in-out infinite alternate;
}

header {
  top: 0;
  width: 100%;
  padding: 1rem 2rem;
  display: flex;
  justify-content: center; /* or 'start' if you want it left-aligned */
  align-items: center;
  z-index: 10;
  background: transparent; /* or use a fade/blur if needed */
}

.logo {
  font-family: 'Zeta', sans-serif;
  font-size: 5rem;
  font-weight: normal;
  color: white;
  letter-spacing: 50px;
  padding-left: 50px;
  text-transform: uppercase; /* optional */
  text-align: center;
}

main {
    display: flex;
    justify-content: center;
    text-align: center;
    flex: 1 0 auto; /* Grow and fill available space */
    padding: 2rem 1rem;
    z-index: 1;
    transition: none; /* let animation handle visibility */

    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    width: 90%;
    max-width: 800px;
}

main section {
  width: 30%;
}

.discography-block {
  background: rgba(0, 0, 0, 0.15);         /* more transparent black */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1); /* subtle light border for contrast */
  border-radius: 12px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);  /* a bit stronger shadow */
  color: #fff;
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

/* @media (max-width: 992px) {
  .discography-block {
    max-width: 50%;
  }
} */

@media (max-width: 768px) {
  .discography-block {
    max-width: 70%;
  }
}

.album-art {
  border-radius: 8px; /* rounded corners */
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

.album-links {
  display: inline-block;
  text-align: left;
}

.album-links a {
  color: #f8f9fa; /* Bootstrap light */
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.album-links a:hover {
  color: #f8f9fa;
  text-decoration: underline;
}

footer {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-shrink: 0; /* Don't shrink */
    background: #000000;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1.0) 10%, rgba(255, 255, 255, 0.0) 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    /* backdrop-filter: blur(5px); nice blur effect on supported browsers */
    z-index: 1000;
}

.nav-link {
    color: #f8f9fa; /* Bootstrap light */
    margin: 0 4rem;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    font-weight: 500;
    display: inline-block !important;
    width: auto !important;
}


@keyframes slideFadeOut {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(20px); }
}

@keyframes slideFadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.section-leave {
  animation: slideFadeOut 300ms ease forwards;
}

.section-enter {
  animation: slideFadeIn 300ms ease forwards;
}

footer a:hover {
    text-decoration: underline;
}

.main-section {
    display: none;
}

.main-section.active {
    display: block;
}

@media (max-width: 768px) {
  .logo {
    font-size: 3.2rem;
    letter-spacing: 10px;
    padding-left: 0;
  }
  main {
    position: static;
    top: unset;
    left: unset;
    transform: none;
    max-width: 100vw;
    width: 100vw;
    padding: 1rem 0.5rem;
  }
  main section {
    width: 100% !important;
    min-width: 0;
  }
  footer {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0.5rem;
    position: static;
    width: 100vw;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 2.3rem;
    letter-spacing: 3px;
    padding-left: 0;
  }
}