body {
    margin: 0;
    font-family: 'Rethink Sans', Arial, sans-serif;
    color: white;
    background-color: black;
    overflow-x: hidden;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: transparent;
    z-index: 1000;
    border-bottom: 1px solid #fff;
    transition: background 0.3s, border-bottom 0.3s, opacity 0.3s;
    box-sizing: border-box;
    opacity: 0.8;
}

header.scrolled {
    background: rgba(0, 0, 0, 1); /* Full opacity for black background */
    border-bottom: 1px solid transparent;
    opacity: 1; /* Full opacity for the header when scrolled */
}

.logo img {
    height: 40px;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.5em;
    padding: 15px 20px;
    display: inline-block;
    opacity: 0.3;
    transition: opacity 0.3s;
}

nav ul li a.active,
nav ul li a:hover {
    opacity: 1;
}

#hero {
    height: 100vh;
    background-image: url('../img/al_site_hero_2000x1500.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.0));
    z-index: 1;
    pointer-events: none;
}

#hero * {
    z-index: 2;
    position: relative;
}

#hero h1 {
    width: 600px;
}

#hero h1 img {
    width: 100%;
}

#hero p {
    max-width: 600px;
    margin: 40px auto;
    font-size: 1.3em;
}

.buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.button {
    display: inline-block;
    padding: 20px 30px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    font-size: 1.3em;
    border-radius: 100px;
    transition: background-color 0.3s, color 0.3s;
    width: 300px;
}

.button:hover {
    background-color: white;
    color: black;
}

.social-media {
    display: inline-block;
    margin-top: 80px;
}

.social-media a {
    display: inline-block;
    padding: 10px 15px;
}

.social-media a img {
    width: 80px;
    height: 80px;
    display: inline-block;
}

#upcoming-shows {
    height: 100vh;
    padding: 60px 20px;
    background-color: black;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#container-songkick {
    width: 80%;
    max-width: 600px;
    margin: 0 auto;
}

#upcoming-shows h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

footer {
    padding-top: 200px;
    padding-bottom: 200px;
    text-align: center;
    background-color: black;
    border-top: 1px solid gray;
}

footer .footer-content {
    margin-bottom: 10px;
}

.footer-content a {
    display: inline-block;
    padding: 10px 15px;
}

footer .footer-content a img {
    width: 50px;
    height: 50px;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    header {
        padding: 10px;
    }

    /* Keep navigation links side by side on mobile */
    nav ul {
        flex-direction: row;
        justify-content: space-around; /* Ensure spacing between links */
    }

    nav ul li {
        margin-left: 0;
        margin-bottom: 0; /* Remove bottom margin for horizontal layout */
    }

    #hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.0));
        z-index: 1;
        pointer-events: none;
}

    #hero h1 {
        width: 300px;
        margin-bottom: 0;
        margin-top: 25vh;
    }

    #hero p {
        font-size: 1em;
        margin-left: auto;
        margin-right:auto;
        margin-bottom: 10px;
        margin-top: 10px;
    }

    .buttons {
        flex-direction: column;
        margin-top:10px;
    }

    .buttons .button {
        font-size: 1em;
        padding: 10px 0;
    }

    .social-media {
        margin: 0;
}

    .social-media a img {
        width: 50px;
        height: 50px;
    }

    #container-songkick {
        width: 100%;
    }

    #upcoming-shows h2 {
        font-size: 20px;
    }

    footer {
    padding-top: 50px;
    padding-bottom: 50px;
}

/* Desktop Specific Adjustments */
@media (min-width: 769px) {
    #container-songkick {
        width: 90%; /* Increased width for larger screens */
        max-width: 800px; /* Increased max-width for larger screens */
    }
}
