<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1" />
  <title>Bill Curd — Ghosts of Winter</title>
  
  /* GRID FOR THE GHOSTS PAGE */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* desktop: 3 across */
  gap: 20px;
  padding: 20px;
}

/* Make images behave */
.photo-grid img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}

/* Tablet */
@media (max-width: 900px) {
  .photo-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row */
  }
}

/* Phones */
@media (max-width: 600px) {
  .photo-grid {
    grid-template-columns: 1fr; /* 1 per row */
  }
}

 

  <style>
  .discord-widget {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  margin: 20px auto;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.18);
  color: #e6e8ee;
  max-width: 420px;
  transition: 0.25s ease;
}

.discord-widget:hover {
  background: rgba(0,150,255,0.15);
  border-color: rgba(0,150,255,0.35);
  transform: translateY(-2px);
  box-shadow: 0 0 12px rgba(0,150,255,0.4);
}

.dw-icon {
  width: 42px;
  height: 42px;
  filter: invert(90%);
}

.dw-info {
  flex: 1;
}

.dw-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 4px;
}

.dw-stats {
  opacity: 0.85;
  margin-bottom: 8px;
}

.dw-button {
  display: inline-block;
  padding: 6px 12px;
  background: #5865F2;
  border-radius: 6px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s ease;
}

.dw-button:hover {
  background: #4753c8;
}

  .ghosts-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
  padding: 2em 1em;
}

.ghosts-gallery img {
  width: 200px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  transition: transform 0.2s;
}

.ghosts-gallery img:hover {
  transform: scale(1.05);
}

    :root { --ink:#e6e8ee; --muted:#cfd2da; --accent:#6aa6ff; --accent2:#b48cff; }
    html,body { margin:0; background:#0b0d12; color:var(--ink);
      font-family: system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial; }

    /* Simple nav */
    nav { text-align:center; padding:1em; position:relative; z-index:1; }
    nav a { color:#cfd2da; text-decoration:none; margin:0 .5em; }
    nav a:hover { color:#fff; }

    /* Ghosts hero section */
    .band-section {
      position: relative;
      min-height: 100vh;
      padding: 6em 1.5em 4em;
      display: grid; place-items: center;
      background: url('images/moon.jpg') center / cover no-repeat fixed;
      text-align: center;
      overflow: hidden;
    }
    .band-section::before {
      content:"";
      position:absolute; inset:0;
      background: rgba(0,0,0,0.65); /* darken overlay for text clarity */
      backdrop-filter: blur(2px);
    }
    .overlay { position:relative; z-index:1; max-width: 900px; }

    /* 🔒 Title fixed at top */
    .moon-title {
      position: fixed;
      top: 0;
      left: 50%;
      transform: translateX(-50%) rotate(-12deg);
      font-family: "Brush Script MT", cursive;
      font-size: clamp(60px, 12vw, 140px);
      white-space: nowrap;
      color:#fff; font-weight:bold;
      z-index: 9999;
      pointer-events: none;
      opacity: 0;
      text-shadow:
        0 0 8px rgba(255,255,255,0.9),
        0 0 16px rgba(200,200,255,0.7),
        0 0 32px rgba(150,180,255,0.5),
        0 0 48px rgba(120,160,255,0.4);
      animation: fadeRise 2s ease forwards,
                 moonGlow 4s ease-in-out 2s infinite alternate;
    }

    @keyframes fadeRise {
      0% { opacity:0; transform: translateX(-50%) translateY(40px) rotate(-12deg); }
      100% { opacity:1; transform: translateX(-50%) translateY(0) rotate(-12deg); }
    }
    @keyframes moonGlow {
      0% { text-shadow:
        0 0 6px rgba(255,255,255,0.7),
        0 0 14px rgba(200,200,255,0.5),
        0 0 28px rgba(150,180,255,0.4),
        0 0 40px rgba(120,160,255,0.3); }
      100% { text-shadow:
        0 0 10px rgba(255,255,255,1),
        0 0 20px rgba(200,200,255,0.9),
        0 0 36px rgba(150,180,255,0.7),
        0 0 60px rgba(120,160,255,0.6); }
    }

    .intro {
      font-size: clamp(16px, 2.2vw, 20px);
      color: var(--muted);
      line-height:1.6;
      margin: 0 auto 1.5em;
      max-width: 900px;
      opacity:0;
      transform: translateY(20px);
      animation: fadeInText 1.5s ease forwards;
      animation-delay: 1s;
    }

    h2 {
      margin: .25em 0 1em;
      font-size: clamp(22px, 3vw, 34px);
      opacity:0;
      transform: translateY(20px);
      animation: fadeInText 1.5s ease forwards;
      animation-delay: 1.5s;
    }

    ul { list-style:none; padding:0; margin:0 auto; max-width: 700px; }
    li {
      margin:.5em 0;
      font-size: clamp(16px, 2.2vw, 20px);
      color: var(--muted);
      opacity:0;
      transform: translateY(20px);
      animation: fadeInText 1.2s ease forwards;
    }
    li:nth-child(1){ animation-delay: 1.8s; }
    li:nth-child(2){ animation-delay: 2.1s; }
    li:nth-child(3){ animation-delay: 2.4s; }
    li:nth-child(4){ animation-delay: 2.7s; }

    @keyframes fadeInText { to { opacity:1; transform: translateY(0);} }

    footer {
      color:#8f98ad;
      text-align:center;
      padding:18px;
      font-size:12px;
    }

    @media (prefers-reduced-motion: reduce){
      .moon-title, .intro, h2, li { animation: none !important; opacity:1; transform:none; }
    }
    /* Container that scrolls independently */
.friends-container {
  margin-top: 140px; /* clears the nav */
  padding: 20px;
  height: calc(100vh - 180px);
  overflow-y: auto;
  text-align: center;
}

/* Page Title */
.friends-container h1 {
  font-size: 3em;
  margin-bottom: 20px;
  color: var(--ink);
  text-shadow: 0 0 8px rgba(0,0,0,0.7);
}

/* List area */
.friends-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 600px;
  margin: 0 auto;
}

/* Each artist block */
.friend {
  background: rgba(0,0,0,0.55);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.friend h2 {
  font-size: 2em;
  margin-bottom: 10px;
  color: var(--muted);
}

.friend a {
  color: #fff;
  font-size: 1.4em;
  text-decoration: none;
  transition: all 0.3s ease;
}

.friend a:hover {
  color: #e6e8ee;
  text-shadow: 0 0 8px rgba(255,255,255,0.6);
}

/* Footer fix */
footer {
  position: fixed;
  bottom: 10px;
  width: 100%;
  text-align: center;
  color: var(--muted);
  font-size: 1em;
}

  </style>
</head>
<body>
  <nav>
    <a href="index.html">Home</a> |
    <a href="music.html">Music</a> |
    <a href="ghosts.html">Ghosts of Winter</a> |
    <a href="contact.html">Contact</a>
  </nav>

  <section class="band-section">
    <div class="overlay">
      <h1 class="moon-title">Ghosts of Winter</h1>

     
     
  </section>

  <footer>© 2025 Bill Curd &amp; The Ghosts of Winter</footer>
</body>
</html>
/* MOBILE LAYOUT FIXES */
@media (max-width: 768px) {
  body {
    padding: 0;
    margin: 0;
    overflow-x: hidden;
  }

  header, nav {
    width: 100%;
    text-align: center;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  .container {
    width: 100%;
    padding: 10px;
  }

  h1, h2, h3, p {
    padding: 0 10px;
  }

  /* If your nav has links in one line, make them stack */
  nav a {
    display: block;
    margin: 8px 0;
  }
}

/* EXTRA SMALL PHONES */
@media (max-width: 480px) {
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  p {
    font-size: 1rem;
  }
}

/* === MOBILE FIXES === */
@media (max-width: 768px) {

  body {
    overflow: auto; /* allow scrolling on phones */
    background-size: cover; /* background correctly stretches */
    background-attachment: scroll; /* no more fixed glitching */
  }

  nav {
    position: fixed;
  }

  /* Stack members instead of absolute positioning */
  .members {
    position: relative;
    top: 120px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding-bottom: 40px;
  }

  .member {
    position: static; /* remove absolute positioning */
    width: 70%;
    max-width: 260px;
  }

  .member img {
    transform: none !important; /* no angle rotation on small screens */
  }

  .member span {
    font-size: 1.5em;
  }

  /* Optional: hide the scattered desktop version of the grid if you want */
  .photo-grid {
    display: none;
  }
}

@media (max-width: 480px) {
  .member {
    width: 80%;
  }
  .member span {
    font-size: 1.3em;
  }
}
.player {
  max-width: 500px;
  margin-left: 40px;
  margin-right: auto;
  text-align: left;
}

.epk-video {
  max-width: 600px;   /* Controls how wide it can get */
  margin: 0 auto;     /* Centers it */
}

.epk-video video {
  width: 100%;        /* Makes it responsive */
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

