body {
    font-family: 'Merriweather', serif;
    margin: 0;
    background-color: #000000;
    color: #333;
    font-size: 1.2em;
    padding-top: 60px;
}
header {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.header-image-container {
    width: 100%;
    overflow: hidden;
    background-color: #333; /* matches header background */
    text-align: center;
}

.header-image {
    width: 100%;
    height: auto;
    max-width: 1650px; /* Restrict image width to its original size */
}

header h1, header h2 {
    margin: 0;
    font-size: 2em;
}

h2 {
    margin: 0;
    font-size: 2.4em;
}
nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    background-color: #e99460; // apricot crush
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}
nav a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    font-size: 1.2em;
    border-radius: 5px;
}
nav a:hover {
    background-color: #392D8F;
}

.menu-toggle {
    display: none; /* Hide by default */
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    flex-direction: column;
    cursor: pointer;
    width: 24px;
    height: 21px;
    justify-content: space-between;
}

.menu-toggle div {
    width: 100%;
    height: 4px;
    background-color: white;
    border-radius: 2px;
}


/* Hero styles */
.hero {
    width: 100%;
    background-color: #EEE; /* Adjust as needed */
    padding: 80px 0; /* Adjust as needed */
    display: flex;
    justify-content: center;
}

.hero-content {
    max-width: 600px; /* You can adjust this to your desired width */
}


section {
    padding: 80px 0;
    background-color: #ffffff; /* #fddbea; */
}
section:nth-child(odd) {
    background-color: #ffffee; /* #fbfbce; */
}

.section-content {
    max-width: 1000px; /* You can adjust this value as needed */
    margin: 0 auto;
    padding: 10px 30px;
    font-size:1.5em;

}

 
footer {
    margin-top: 40px;
    padding: 20px 0;
    text-align: center;
    background-color: #333;
    color: white;
}

@media screen and (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: center;
        gap: 0;
        display: none;
        position: relative;
        top: 60px;
        overflow: auto; /* Change overflow to auto to allow the content to dictate the height */
    }

    nav.active {
        display: flex;
        z-index: 1001;  
        height: auto; /* Ensure the nav gets height based on its content */
    }
    
    .menu-toggle {
        display: flex; /* Show the menu toggle on narrow screens */
    }
}

/* Responsive YouTube Video Container */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.audio-block {
    background-color: #76d8bf;
    padding: 15px;
    spacing: 15px;
    border-radius: 25px;
}

.audio-block {
    font-size: 0.7em;    
}

.track-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.track-title {
    margin-left: 10px;
}


/* Responsive Bandcamp Album Container */

/* Base styles for the Bandcamp wrapper */
.bandcamp-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* spacing between description and player */
}

/* Styling for the description */
.bandcamp-description {
    flex: 1;
    min-width: calc(50% - 10px); /* account for the gap */
}

/* Styling for the player */
.bandcamp-container {
    flex: 1;
    min-width: calc(50% - 10px);
}

/* Responsive break for narrower screens */
@media (max-width: 768px) { /* adjust the breakpoint as needed */
    .bandcamp-description, .bandcamp-container {
        min-width: 100%;
    }
}



