/* General Styles */
body {
    font-family: 'Lora', serif;
    color: #e4e4e4;
    background-color: #111;
    margin: 0;
    padding: 0;
}

/* Header */
header {
    background-color: #111;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 0;
}

.header-wrapper {
    display: flex;
    justify-content: center;
}

.header-content {
    display: flex;
    align-items: center;
    width: 66.67%;
    max-width: 1200px;
    padding: 0 20px;
    box-sizing: border-box;
}

.header-logo {
    flex: 1;
}

.logo img {
    width: 200px;
}

.header-menu {
    display: flex;
    align-items: center;
    margin-left: auto;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #e4e4e4;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #FFA500;
}

/* Hero Section */
.hero {
    background-image: url('images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh; /* Full height of viewport */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    position: relative; /* Ensure that content is positioned relative to the hero section */
}

.hero-content {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
}

.hero-image {
    flex: 1;
    margin-right: 40px; /* Space between image and text */
}

.hero-image img {
    width: 100%;
    max-width: 500px; /* Adjust image size */
    height: auto;
}

.hero-text {
    flex: 2;
    color: #e4e4e4;
    text-align: center; /* Align text to the left on desktop */
    max-width: 600px; /* Constrain the width of text block */
}

.hero h1 {
    font-size: 3.5em; /* Slightly larger font size on desktop */
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5em;
    margin-bottom: 40px;
}

/* Hero Buttons */
.hero-buttons .button {
    display: inline-block;
    padding: 15px 30px;
    margin: 5px;
    color: #e4e4e4;
    background-color: #444;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
    transition: background-color 0.3s;
    width: 220px; /* Set a fixed width for all buttons */
    text-align: center; /* Center text inside the button */
}

.hero-buttons .button:hover {
    background-color: #FFA500;
}

/* Adjust for mobile views */
@media (max-width: 768px) {
    .hero {
        height: auto; /* Reset height on mobile */
        padding-top: 150px; /* Adjust padding-top to ensure space for fixed header */
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .hero-image img {
        max-width: 100%;
        height: auto;
    }

    .hero-text {
        text-align: center; /* Center text on mobile */
        max-width: 100%;
        color: #e4e4e4;

    }
    .hero h1 {
        font-size: 1.75em; /* Slightly larger font size on desktop */
        margin-bottom: 20px;
    }
    
    .hero p {
        font-size: 1.20em;
        margin-bottom: 40px;
    }
}



/* Video Banner */
.video-banner {
    margin: 60px 5px;
    padding: 0 5px;
    box-sizing: border-box;
}

.video-banner iframe {
    width: 100%;
    height: 500px;
    max-width: 800px;
    display: block;
    margin: 0 auto;
}

/* Upcoming Shows Section */
.upcoming-shows, .upcoming-shows2 {
    padding: 40px 20px;
    background-color: #111;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Line Effect */
.upcoming-shows::before, .upcoming-shows2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 66.66%;
    height: 100%;
    border-top: 1px solid #e4e4e4;
    transform: translateX(-50%);
    z-index: 1;
}

/* Header Styles */
.upcoming-shows h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.upcoming-shows2 h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    margin-top: 180px;
    position: relative;
    z-index: 2;
}
/* Grid Container for Show Items */
.shows-container, .shows-container2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 66.66%;
    margin: 0 auto;
    z-index: 2;
}

/* Individual Show Item Styling */
.show-item, .show-item2 {
    background-color: #222;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
}

/* Ensure links are white */
.show-item a, .show-item2 a {
    color: #e4e4e4 !important; /* White color */
    text-decoration: underline;
    padding: 5px;
    font-size: 1.2em;
    position: relative;
    z-index: 3; /* Make sure links are above other elements */
}

/* Hover effect for links */
.show-item a:hover, .show-item2 a:hover {
    color: #FFA500 !important; /* Highlight color on hover */
}




/* Ensure that links are not overlapped by other elements */
.show-item a, .show-item2 a {
    position: relative;
    z-index: 3;
}



/* Newsletter */
.newsletter {
    padding: 40px 20px;
    background-color: #111;
    text-align: center;
}

.newsletter h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.newsletter p {
    margin-bottom: 20px;
    font-size: 1.2em;
}

.newsletter form {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.newsletter input[type="email"] {
    padding: 10px;
    font-size: 1em;
    border-radius: 5px;
    border: none;
    flex: 1;
    min-width: 200px;
}

.newsletter button {
    padding: 10px 20px;
    font-size: 1em;
    color: #111;
    background-color: #FFA500;
    border: none;
    border-radius: 5px;
    margin-left: 10px;
    cursor: pointer;
}

/* Footer */
footer {
    padding: 20px;
    background-color: #111;
    text-align: center;
}

.social-links a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
    font-size: 1.2em;
}

.footer-logo {
    text-align: center; /* Center the logo */
    margin: 20px 0; /* Add some spacing around the logo */
}

.footer-logo img {
    max-width: 200px; /* Adjust this size to match the header logo */
    height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        width: 100%;
        justify-content: center; /* Center content in mobile view */
        padding: 0; /* Remove padding for mobile */
    }

    .header-logo {
        flex: none; /* Prevent logo from growing */
        text-align: center; /* Center logo */
        margin: 0 auto; /* Center logo */
    }

    .logo img {
        width: 150px; /* Adjust size if necessary */
    }
    
    .header-menu {
        display: none; /* Hidden by default */
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background-color: #111;
        padding: 20px;
        z-index: 1000;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .header-menu.open {
        display: flex;
        transform: translateX(0%);
    }

    .hamburger {
        display: flex;
        cursor: pointer;
        flex-direction: column;
        position: absolute;
        top: 20px; /* Adjust if needed */
        right: 20px; /* Adjust if needed */
    }

    .hamburger div {
        background-color: #fff;
        height: 3px;
        width: 30px;
        margin: 4px 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .hamburger.active div:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active div:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active div:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .close-menu {
        display: none; /* Hidden by default */
        font-size: 2em;
        color: #fff;
        cursor: pointer;
        position: absolute;
        top: 20px; /* Same as hamburger button */
        right: 20px; /* Same as hamburger button */
    }

    .header-menu.open .close-menu {
        display: block;
    }

    .header-menu.open .hamburger {
        display: none;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin: 0;
        padding: 0;
    }

    .nav-links a {
        font-size: 1.5em;
    }
}
/* Line Effect */
.line-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 66.66%;
    height: 1px;
    background-color: #e4e4e4;
    transform: translateX(-50%);
    z-index: 1;
}

/* Hero Section Line */
.hero-line {
    position: relative;
    margin: 40px 0; /* Space above and below the line */
}

/* Newsletter Section Line */
.newsletter-line {
    position: relative;
    margin: 40px 0; /* Space above and below the line */
}

/* Social Links */
.social-links img {
    width: 40px; /* Adjust size as needed */
    padding: 20px;
    height: auto;
    transition: filter 0.3s ease; /* Smooth transition for hover effect */
}

/* Hover Effect */
.social-links a:hover img {
    filter: brightness(1.75); /* Increase brightness on hover */
}

.dual-images {
    padding-top: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.image-container {
    flex: 1 1 calc(50% - 20px);
    text-align: center;
    margin: 10px;
}

.image-container img {
    width: 100%;
    height: auto;
    max-width: 400px; /* Adjust this to match the desired size */
    display: block;
    margin: 0 auto;
}

.image-text p {
    margin: 5px 0;
    font-size: 25px; /* Adjust the font size as needed */
}

@media (max-width: 768px) {
    .image-container {
        flex: 1 1 100%;
    }
}
/* Heading styling */
.releases-heading {
    text-align: center;
    font-size: 2.5em; /* Ensure this size is as you want */
    margin: 20px; /* Adjust margin as needed */
    padding-top: 20px; /* Optional padding */
    text-decoration: none;
    font-family: Bell MT, sans-serif;
    color: #e4e4e4; /* Ensure text color is visible against the background */
    z-index: 10; /* Ensure it appears above other elements */
    position: relative; /* Ensure it appears as needed */
}

/* Container for each release */
.image-container {
    text-align: center; /* Center text inside the container */
    display: flex;
    flex-direction: column; /* Stack image and text vertically */
    align-items: center; /* Center items horizontally */
}

/* Image styling */
.image-container img {
    width: 100%;
    max-width: 400px; /* Adjust as needed */
    height: auto;
    transition: filter 0.3s; /* Smooth filter transition */
}

/* Text container styling */
.image-text {
    margin-top: 10px;
}

/* Release link styling */
.release-link {
    color: #e4e4e4; /* White color */
    text-decoration: underline; /* Underline text */
    font-size: 30px; /* Font size */
    display: block;
    margin-bottom: 10px; /* Space between link and image */
    transition: color 0.3s; /* Smooth color transition */
}

/* Hover effect for container */
.image-container:hover img,
.image-container:hover .release-link {
    filter: brightness(1.25); /* Increase brightness on hover */
    color: #FFA500; /* Change text color on hover */
}

/* Ensure that when the link is hovered, the image brightens */
.image-text:hover img {
    filter: brightness(1.25); /* Increase brightness of image */
}

/* Ensure image brightness returns to normal when not hovered */
.image-container img {
    filter: brightness(1); /* Normal brightness */
}

/* Adjust link color for hover */
.image-text .release-link:hover {
    color: #FFA500; /* Highlight color on hover */
}


/* Hero Section */
.hero2 {
    background-image: url('images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh; /* Full height of viewport */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    position: relative; /* Ensure that content is positioned relative to the hero section */
}

.hero-content2 {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
}

.hero-image2 {
    flex: 1;
    margin-right: 40px; /* Space between image and text */
}

.hero-image2 img {
    width: 100%;
    max-width: 500px; /* Adjust image size */
    height: auto;
}

.hero-text2 {
    flex: 2;
    color: #e4e4e4;
    text-align: center; /* Align text to the left on desktop */
    max-width: 600px; /* Constrain the width of text block */
}

.hero2 h1 {
    font-size: 3.5em; /* Slightly larger font size on desktop */
    margin-bottom: 20px;
}

.hero2 p {
    font-size: 1.5em;
    margin-bottom: 40px;
}

/* Style the track listing */
.track-listing {
    list-style-type: none; /* Remove bullet points */
    padding: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
    display: flex;
    flex-direction: column; /* Stack list items vertically */
    align-items: center; /* Center-align items */
}

.track-listing li {
    font-size: 1.2em; /* Adjust font size for list items */
    margin-bottom: 10px; /* Space between list items */
    position: relative; /* Position relative for custom numbering */
    width: 100%; /* Full width for text alignment */
    text-align: center; /* Center text */
}



/* Adjust for mobile views */
@media (max-width: 768px) {
    .hero2 {
        height: auto; /* Reset height on mobile */
        padding-top: 150px; /* Adjust padding-top to ensure space for fixed header */
    }

    .hero-content2 {
        flex-direction: column;
        text-align: center;
    }

    .hero-image2 {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .hero-image2 img {
        max-width: 100%;
        height: auto;
    }

    .hero-text2 {
        text-align: center; /* Center text on mobile */
        max-width: 100%;
        color: #e4e4e4;

    }
    .hero2 h1 {
        font-size: 1.75em; /* Slightly larger font size on desktop */
        margin-bottom: 20px;
    }
    
    .hero2 p {
        font-size: 1.20em;
        margin-bottom: 40px;
    }
}

.shop-button {
    text-align: center; /* Center-align the contents of the container */
    padding-top: 200px; /* Add 150px padding to the top */
}

.shop-button img {
    display: inline-block; /* Ensure the image behaves as an inline block for centering */
    width: 25%; /* Adjust this percentage to control the size of the image */
    max-width: 25%; /* Ensure the image does not exceed container width */
    height: auto; /* Maintain aspect ratio */
}
.shop-button:hover img {
    filter: brightness(1.50); /* Increase brightness of image */
}




/* Gallery Section */
.gallery {
    padding: 40px 20px;
    background-color: #111;
    text-align: center;
}

.gallery h2 {
    padding-top: 150px;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #e4e4e4; /* Text color to match the theme */
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns */
    grid-template-rows: repeat(5, 200px); /* 5 rows with fixed height */
    gap: 10px;
    justify-content: center;
    padding: 0 20px;
}

.gallery-item {
    overflow: hidden; /* Ensures that the image doesn't exceed its container */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .gallery h2 {
        font-size: 2em;
    }
}
/* Contact Form Styling */
.contact {
    text-align: center; /* Center text */
}

.contact h2 {
    padding-top: 180px;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #e4e4e4; /* Text color to match the theme */
}

.contact p, .contact b {
    display: block;
    margin-bottom: 20px; /* Increased margin for better spacing */
    color: #e4e4e4; /* Text color */
    font-family: 'Bell MT', serif; /* Font style */
    font-size: 1.2em; /* Adjusted text size */
}

.contact form {
    max-width: 900px; /* Wider form */
    margin: 20px auto;
    padding: 20px;
    background-color: #333; /* Form background color */
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact form label {
    display: block;
    margin: 10px 0 5px;
    color: #e4e4e4; /* Text color */
    font-family: 'Bell MT', serif; /* Font style */
}

.contact form input, 
.contact form textarea {
    width: calc(100% - 22px); /* Adjust width to fit padding and borders */
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #555; /* Slightly lighter border */
    border-radius: 4px;
    color: #e4e4e4; /* Text color */
    background-color: #222; /* Input background color */
}

.contact form button {
    padding: 10px 15px;
    background-color: #444; /* Button background color */
    color: #e4e4e4; /* Button text color */
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.contact form button:hover {
    background-color: #555; /* Button hover color */
}

.contact a {
    color: #fff; /* Email link color */
    text-decoration: none; /* Remove underline */
}

.contact a:hover {
    color: #FFA500; /* Hover color for email link */
}
