
body {
    background-color: #111;
    color: #eee;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
}

header {
    background-color: #000;
    padding: 1rem;
    text-align: center;
}

.logo {
    max-height: 200px;
}

nav {
    margin-top: 1rem;
}

    nav a {
        margin: 0 1rem;
        color: #eee;
        text-decoration: none;
    }

        nav a:hover {
            color: #990000;
        }

main {
    padding: 2rem;
}

footer {
    background-color: #000;
    color: #777;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
    font-size: 0.9rem;
}


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

    .gallery-grid img {
        width: 250px;
        height: 250px;
        object-fit: cover;
        border: 2px solid #990000;
        border-radius: 8px;
    }

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    justify-items: center;
}

    .video-grid iframe {
        width: 100%;
        height: 400px;
        border-radius: 8px;
    }

input[type='text'], input[type='email'] {
    padding: 0.5rem;
    margin: 0.5rem 0;
    width: 300px;
}

.member-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    justify-items: center;
}

.member-card {
    background-color: #222;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    width: 100%;
    max-width: 240px;
    box-shadow: 0 0 10px rgba(153, 0, 0, 0.3);
}

    .member-card img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        border-radius: 6px;
        margin-bottom: 0.5rem;
    }

.band-history {
    max-width: 800px;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.event-card {
    background-color: #222;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 0 10px rgba(153, 0, 0, 0.3);

    /*width: 100%;
    max-width: unset;*/
}

.event-card img.event-banner {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    justify-content: center;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.merch-card {
    background-color: #222;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    
    box-shadow: 0 0 10px rgba(153, 0, 0, 0.3);
}

.merch-image {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.hero {
    font-size: 3rem;
    color: #990000;
    text-align: center;
    margin-top: 2rem;
}

.tagline {
    font-size: 1.2rem;
    text-align: center;
    color: #ccc;
    margin-bottom: 2rem;
}


.merch-preview {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

    .merch-preview img {
        width: 120px;
        height: 120px;
        object-fit: cover;
        border-radius: 6px;
    }

.event-snippet {
    background-color: #222;
    padding: 1rem;
    border-radius: 6px;
    max-width: 500px;
}

.home-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.nav-button {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    background-color: #990000;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(153, 0, 0, 0.3);
    transition: background-color 0.2s ease, transform 0.1s ease;
}

    .nav-button:hover {
        background-color: #bb0000;
        transform: scale(1.03);
    }

.cart-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.cart-card {
    background-color: #222;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 0 10px rgba(153, 0, 0, 0.3);
}

    .cart-card img {
        width: 100px;
        height: 100px;
        object-fit: cover;
        border-radius: 6px;
        margin-right: 1rem;
    }

.cart-info {
    flex: 1;
}

    .cart-info input[type="number"] {
        width: 60px;
        margin-left: 0.5rem;
    }

.cart-total {
    text-align: right;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.button-red {
    padding: 0.5rem 1rem;
    background-color: #990000;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 0 5px rgba(153, 0, 0, 0.4);
    transition: background-color 0.2s ease;
}

    .button-red:hover {
        background-color: #bb0000;
    }

.form-field {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    max-width: 500px;
}

.form-group {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    max-width: 500px;
}
.form-group input {
    padding: 0.5rem;
    font-size: 1rem;
    border-radius: 4px;
    border: 1px solid #444;
    background-color: #111;
    color: white;
}
    .form-field input,
    .form-field textarea {
        padding: 0.5rem;
        font-size: 1rem;
        border-radius: 4px;
        border: 1px solid #444;
        background-color: #111;
        color: white;
    }


.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 2rem auto;
}

.album-card {
    background-color: #222;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(153, 0, 0, 0.3);
    text-align: center;
}

.album-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}


.home-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem;
    text-align: center;
}

.band-logo {
    max-width: 70%;
    height: auto;
    margin-bottom: 1rem;
}

.hero {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #ccc;
}

.home-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

    .home-buttons a.button-red {
        background-color: #900;
        color: white;
        padding: 0.75rem 1.25rem;
        border-radius: 6px;
        text-decoration: none;
        font-weight: bold;
        transition: background 0.2s;
    }

        .home-buttons a.button-red:hover {
            background-color: #c00;
        }

.merch-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

    .merch-categories button {
        background-color: #444;
        color: white;
        border: none;
        padding: 0.5rem 1rem;
        border-radius: 6px;
        cursor: pointer;
        transition: background 0.2s;
    }

        .merch-categories button:hover {
            background-color: #666;
        }

    .merch-categories .selected {
        background-color: #900;
    }

.custom-dropdown {
    background-color: #111;
    color: #eee;
    border: 1px solid #990000;
    padding: 0.5rem;
    border-radius: 6px;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

    .custom-dropdown:focus {
        border-color: #cc0000;
        outline: none;
        box-shadow: 0 0 5px rgba(204, 0, 0, 0.5);
    }

    .custom-dropdown option {
        background-color: #111;
        color: #eee;
    }

.alert-box {
    background-color: #440000;
    color: #fff;
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: 6px;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(204, 0, 0, 0.4);
}

.form-group {
    margin-bottom: 1rem;
}

.form-control {
    background-color: #111;
    color: #eee;
    border: 1px solid #990000;
    padding: 0.5rem;
    border-radius: 4px;
    width: 100%;
}

.success-message {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #224422;
    color: #ccffcc;
    border-radius: 4px;
}

.lightbox-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    overflow: auto;
    background: #111;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

    .lightbox-content img {
        display: block;
        max-width: 100%;
        max-height: 80vh;
        margin: 0 auto;
        border-radius: 6px;
    }

    .lightbox-content button {
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
        background: #c00;
        color: #fff;
        border: none;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        font-size: 18px;
        cursor: pointer;
    }