/* ========== 🕸 Font Imports ========== */
@import url('https://fonts.googleapis.com/css2?family=Fruktur&family=Engravers+Old+English&family=Cinzel&display=swap');

/* ========== 🌑 Base Styles ========== */
body {
    font-family: 'Cinzel', serif;
    background: #000 url('images/parchment-texture.jpg') center/cover;
    color: #fff;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    font-size: 1em;
    letter-spacing: 0.5px;
}

/* ========== 🔱 Header ========== */
header {
    background-color: rgba(17, 17, 17, 0.9);
    padding: 30px;
    text-align: center;
    border-bottom: 3px solid #cc0000;
}

header h1 {
    font-family: 'Engravers Old English', serif;
    font-size: 3.5em;
    color: #cc0000;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9);
    letter-spacing: 1px;
}

/* ========== 🕷 Navigation ========== */
nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    font-family: 'Cinzel', serif;
    color: #fff;
    text-decoration: none;
    font-size: 1.5em;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
    color: #cc0000;
}

/* ========== 🧛 Band Hero Image ========== */
.band-image,
.bio-image {
    text-align: center;
    margin: 20px 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.band-image img,
.bio-image img {
    max-width: 100%;
    height: auto;
    border: 3px solid #cc0000;
    box-shadow: 0 0 10px rgba(204, 0, 0, 0.7);
}

/* ========== 💀 Sections ========== */
section {
    padding: 60px;
    margin: 20px;
    text-align: center;
    font-family: 'Cinzel', serif;
    border: 2px solid #cc0000;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

/* ========== 🕯 Headings ========== */
h2 {
    font-family: 'Engravers Old English', serif;
    font-size: 2.5em;
    text-transform: uppercase;
    border-bottom: 2px solid #cc0000;
    display: inline-block;
    padding-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9);
}

/* ========== 🎼 Music Player ========== */
#audio-player {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}

#audio-player select,
#track-selector {
    font-family: 'Cinzel', serif;
    font-size: 1.2em;
    padding: 8px;
    max-width: 100%;
    margin-bottom: 15px;
}

audio {
    width: 70%;
    max-width: 400px;
    margin-top: 30px;
    filter: invert(100%);
}

/* ========== 🖼 Gallery ========== */
#gallery {
    border: 2px solid #cc0000;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
    justify-items: center;
}

.gallery-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border: 2px solid #cc0000;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #cc0000;
}

/* ========== 📧 Contact ========== */
#contact {
    background-color: rgba(17, 17, 17, 0.9);
    border-top: 3px solid #cc0000;
    padding: 20px;
}

#contact p {
    font-family: 'Cinzel', serif;
    font-size: 1.1em;
    color: #fff;
    word-break: break-word;
    overflow-wrap: break-word;
}

.email-link {
    font-family: 'Engravers Old English', serif;
    font-size: 1.2em;
    font-weight: bold;
    color: #cc0000;
    text-decoration: none;
    letter-spacing: 1px;
    display: inline-block;
    margin-top: 10px;
    word-break: break-word;
}

.email-link:hover {
    text-shadow: 0 0 5px #cc0000;
}

/* ========== 🩸 Instagram Banner ========== */
.instagram-banner {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: #cc0000;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(204, 0, 0, 0.6);
    margin-top: 20px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
}

.instagram-banner img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.instagram-banner span {
    font-family: 'Engravers Old English', serif;
    font-size: 1.2em;
    color: #fff;
    letter-spacing: 1px;
}

.instagram-banner:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #cc0000;
}

.instagram-banner:hover img {
    filter: none;
}

/* ========== ⚰️ Footer ========== */
footer {
    background-color: rgba(17, 17, 17, 0.9);
    text-align: center;
    padding: 20px;
    font-family: 'Engravers Old English', serif;
    font-size: 1em;
    color: #cc0000;
    border-top: 3px solid #cc0000;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9);
}

/* ========== 📱 Responsive ========== */
@media screen and (max-width: 768px) {
    body {
        font-size: 1.1em;
    }

    header {
        padding: 20px;
    }

    header h1 {
        font-size: 2.2em;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 10px 0;
    }

    nav ul li a {
        font-size: 1.4em;
    }

    section {
        padding: 30px;
        margin: 10px;
    }

    h2 {
        font-size: 2em;
    }

    .band-image img {
        max-width: 90%;
    }

    .bio-image {
        padding: 0 10px;
    }

    #audio-player select,
    audio {
        width: 100%;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    footer {
        padding: 15px;
        font-size: 0.9em;
    }

    #contact p {
        font-size: 0.95em;
    }

    .email-link {
        font-size: 1em;
    }
}

.band-image {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: #000; /* optional background */
}

.band-image img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border: 3px solid #cc0000; /* Crimson border */
  box-shadow: 0 0 15px rgba(204, 0, 0, 0.5); /* Optional glow */
}

