@font-face {
  font-family: "Arial";
  format("opentype");
  font-style: italic;
}

html {
    background-color: #1a1a1a;
}

body {
    padding: 0;
    margin: 0;
    text-align: center;
  font-family: "Arial";
  font-style: italic;
    color: #ededed;
}

a {
    color: #d3d3d3;
    text-decoration: none;
}

a:hover {
    color: #ffffff;
}


.site-title {
  font-size: 26px;
  margin-bottom: 10px;
}

.site-title a {
  color: #ededed;
  text-decoration: none;
  text-shadow:
    0 0 10px rgba(255,255,255,0.25),
    0 0 20px rgba(255,255,255,0.15);
}

.nav-links {
  display: flex;
  gap: 26px;
}

.nav-links a {
  font-size: 15px;
  text-transform: lowercase;
  color: #d3d3d3;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

/* Active page underline */
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.6);
}

/* Mobile */
@media (max-width: 600px) {
  .site-title {
    font-size: 22px;
  }

  .nav-links {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* logo */
.logo img {
  width: 200px;
  height: auto;
  display: block;
}

/* top nav */
.topnav {
  display: flex;
  flex-direction: column;
  align-items: center;

  /* Brighter + more solid */
  background: rgba(120, 120, 120, 0.32);

  /* Strong frosted-glass effect */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  /* Bright highlight border */
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);

  /* Soft glow to lift it from the background */
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.08);

  padding: 16px 30px;

  position: relative;
  z-index: 1000;
}

/* nav images */
.nav-links img {
  width: 120px;
  height: auto;
  transition: 0.3s ease;
}

.nav-links img:hover {
  filter: brightness(1.3);
}

.moongirlgif {
	align-items: right;
	width: 364px;
    height: auto;
}

.divider {
  width: 60%;
  margin: 40px auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, #777, transparent);
  animation: dividerFade 3s infinite alternate ease-in-out;
}

@keyframes dividerFade {
  0% { opacity: 0.3; }
  100% { opacity: 1; }
}

.about-container {
    width: 100%;
    max-width: 800px; /* prevents stretching across page */
    margin: 0 auto;   /* centers the text block */
    text-align: center; /* optional: looks cleaner than centered paragraphs */
    padding: 20px 0;
}

.about-container h3 {
    margin-left: 0;
    margin-right: 0;
}

@media (max-width: 1024px) {

    .moongirlgif {
        width: 260px;
    }

    .topnav {
        padding: 12px 20px;
    }

    .nav-links img {
        width: 90px;
    }

    h1, h2, h3, h5, h6 {
        margin-left: 10px;
        margin-right: 10px;
    }

    iframe {
        width: 60%;
    }
}

/* ---------- RESPONSIVE: Phones (max-width 600px) ---------- */
@media (max-width 600px) {

    body {
        text-align: center;
    }

    /* shrink GIF */
    .moongirlgif {
        width: 160px;
    }

    /* wrap navbar icons */
    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .nav-links img {
        width: 70px;
    }

    /* smaller logo */
    .logo img {
        width: 150px;
    }

    /* smaller text margins */
    h1, h2, h3, h5, h6 {
        margin-left: 8px;
        margin-right: 8px;
    }

    /* make Spotify player usable on phones */
    iframe {
        width: 90%;
    }
}

@media (max-width: 400px) {
    .moongirlgif {
        width: 130px;
    }

    .logo img {
        width: 130px;
    }

    iframe {
        width: 95%;
    }
}

#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

/* Individual particles */
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  filter: blur(1px);
  animation: drift 18s linear infinite;
  opacity: 0.4;
}

@keyframes drift {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(-200px) translateY(40px);
  }
}