@font-face {
    font-family: 'Basteleur-Moonlight'; /* You can name this whatever you want */
    src: url('fonts/basteleur-master/fonts/webfonts/Basteleur-Moonlight.woff2') format('woff2'),
         url('fonts/basteleur-master/fonts/webfonts/Basteleur-Moonlight.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* This ensures text shows up while the font loads */
  }




body::after {
    content: "";
    position: fixed;
    top: -150%;
    left: -150%;
    width: 300%;
    height: 300%;
    /* Replace with a tiny noise png or a high-contrast noise data URI */
    background-image: url(images/nnnoise.svg);
    opacity: 0.15; /* Keep it subtle */
    pointer-events: none;
    animation: grain 8s steps(10) infinite;
    z-index: 9999;
  }

  @keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -10%); }
    30% { transform: translate(-15%, 5%); }
    50% { transform: translate(7%, 9%); }
    80% { transform: translate(3%, -15%); }
  }

html {
    color: #fff !important;
}

*,*::before, *::after {
    box-sizing: border-box;
}

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


body {
    position: relative;
    min-height: 100vh;
    background-color: #000;
    overflow-x: hidden;
}

h1 {
    color: #fff;
    font-family: 'Basteleur-Moonlight', sans-serif;
}

p {
    color: #fff;
    font-family: 'Basteleur-Moonlight', sans-serif;
}

a {
    color: #fff;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 0.25rem;
}

.header-title {
    font-family: 'Basteleur-Moonlight', sans-serif;
    font-size: 2rem;
    margin: 0;
}

.header-title-link {
    text-decoration: none;
}

.links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.25rem 0.5rem;
    width: 100%;
    height: 100%;
    padding: 0 0.25rem;
}

.link-text,
.link-text p {
    color: red;
}

.link-text {
    text-decoration: none;
}

.link-text p {
    margin: 0;
}

.link-text:hover {
    text-decoration: underline;
}

.band-photos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    height: 100%;
}

.band-photo {
    filter: contrast(150%) grayscale(100%) brightness(110%);
    image-rendering: pixelated; /* Keeps it sharp, not blurry */
    padding: 0 1rem;

  }

  #grant {
    filter: contrast(300%) grayscale(100%) brightness(110%);
  }
  #tony {
    filter: contrast(90%) grayscale(100%) brightness(110%);
  }

  .credits {
    color: #fff;
    font-size: 10px;
    text-align: center;
    margin-top: 1rem;
  }

.about {
    display: flex;
    flex-direction: column;
    padding: 0 0.25rem;
}

.about ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about li {
    color: #fff;
    font-family: 'Basteleur-Moonlight', sans-serif;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding: 0 0.25rem;
}

.contact-text {
    flex: 1;
}

.contact-img {
    max-width: 300px;
    height: auto;
}

.guitar {
    filter: contrast(150%) grayscale(100%) brightness(110%);
    image-rendering: pixelated; /* Keeps it sharp, not blurry */
    padding: 0 1rem;
}

@media (max-width: 640px) {
    .links {
        justify-content: center;
        gap: 0.5rem 1rem;
        padding: 0.5rem 0.25rem;
    }

    .link-text {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        padding: 0.35rem 0.65rem;
        box-sizing: border-box;
    }

    .band-photos {
        justify-content: center;
        gap: 0.75rem 0.5rem;
        padding: 0 0.25rem;
    }

    .band-photo {
        flex: 1 1 42%;
        max-width: 47%;
        min-width: 0;
        padding: 0 0.35rem;
    }

    .contact-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .contact-text {
        width: 100%;
    }

    .contact-img {
        max-width: min(300px, 100%);
    }

    .header-title {
        font-size: clamp(1.35rem, 5.5vw, 2rem);
    }

    .guitar {
        max-width: 4.5rem;
        width: auto;
        height: auto;
        padding: 0 0.5rem;
    }
}