/* General Styles */
body {
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
    background-color: #111;
    color: #fff;
    text-align: center;
}

a:link a:visited {
    color:white; 
    text-decoration:none
}

a:hover {
    color:rgb(136,255,15)
}

header {
    background-color: #111;
    padding: 20px;
}

h1 {
    font-size: 2.5em;
    margin: 0;
}

h2 {
    font-size: 2em;
    margin: 0;
}

h3 {
    font-size: 1.5em;
    margin: 0;
}

/* Logo Section */
#logo {
    margin: 20px 0;
    /*background: linear-gradient(to bottom, #111 5%, rgb(71, 141, 0) 35%, #111 85%);*/
    /*background: linear-gradient(to bottom, #111 5%, rgb(165, 165, 165) 35%, #111 85%);*/
    display: flex; /* Use Flexbox to center the content */
    justify-content: center; /* Center the content horizontally */
    align-items: center; /* Center the content vertically if needed */
    padding: 20px; /* Optional padding to give more space around the logo */
}

#logo img {
    max-width: 100%; /* Ensure the logo is responsive */
    height: auto; /* Maintain aspect ratio */
    width: auto; /* Optional: Prevent the image from exceeding the container width */
    max-height: 300px; /* Adjust this value to control the maximum height */
}

/* Social Links */
#social-links {
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

#social-links a img {
    max-height: 40px;
}

.socials {
    display: inline-block;
    max-width: 90%;
}

/* Merch Section */
#merch {
    background-color: #111;
    padding: 20px 0;
}

.merch-item {
    display: inline-block;
    margin: 20px;
    text-align: center;
}

.merch-item img {
    width: 200px;
    height: auto;
    max-width: 90%;
}

.merch-item p {
    margin: 10px 0;
}

.order-button {
    font-family: 'Courier New', Courier, monospace;
    background-color: #fff;
    color: #000;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 1em;
    text-decoration: none;
    font-weight: bold;
}

.order-button:hover {
    background-color: rgb(136,255,15);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* Concerts Section */
#concerts {
    padding: 20px 0;
}

#concerts h3 {
    font-size: 1.5em;
    margin-top: 20px;
}

#concerts ul {
    list-style: none;
    padding: 0;
}

#concerts ul li {
    margin: 10px 0;
}

#concerts ul li a {
    color: #fff;
    text-decoration: none;
}

#concerts ul li a:hover {
    color:rgb(136,255,15);
    text-decoration: none;
}

/* Contact and Resources Sections */
#contact, #resources {
    padding: 20px 0;
}

#contact a, #resources a {
    color: #fff;
    text-decoration: none;
}

#contact a:hover, #resources a:hover {
    color:rgb(136,255,15);
    text-decoration: none
}

/* Footer */
footer {
    background-color: #111;
    padding: 10px 0;
    font-size: 0.8em;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    color:rgb(136,255,15);
    text-decoration: none;
}


/* Cart Button Styles */
.cart-link {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #444;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
}

.cart-link:hover {
    background-color: #555;
}

#cart {
    margin: 20px;
}

#cart-items {
    margin-top: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
}

.cart-item .item-details {
    flex: 1;
}

.cart-item .item-quantity {
    display: flex;
    align-items: center;
}

.cart-item .item-quantity input {
    width: 50px;
    text-align: center;
    margin: 0 10px;
}

.cart-item .item-quantity button {
    padding: 5px;
}


/* Product List and Merch Item Styles */
#product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.merch-item {
    margin: 20px;
    text-align: center;
}

.merch-item img {
    max-width: 200px;
    height: auto;
    cursor: pointer;
}

.product-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
}

.product-options label,
.product-options select,
.product-options button {
    margin: 5px 0;
    width: 80%; /* Adjust this value as needed */
}

.order-button {
    font-family: 'Courier New', Courier, monospace;
    background-color: #fff;
    color: #000;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 1em;
}

.order-button:hover {
    background-color: rgb(136, 255, 15);
}

/* Lightbox overlay */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* Full-resolution image */
.lightbox-overlay img {
    max-width: 90%;
    max-height: 90%;
}

/* Close button */
.lightbox-overlay .close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}
