#main {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centers all content */
    text-align: center;
    width: 100%;
    max-width: 1200px;
    /* Keeps content at a readable width */
    margin: 0 auto;
    /* Centers the content */
}

#about,
#discography,
#concerts,
#projects,
#partners,
#photos,
#sponsors,
#contact {
    margin-left: 10px;
    margin-right: 10px;
}

#about p {
    margin-left: 45px;
}

body,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif
}

.w3-row-padding img {
    margin-bottom: 12px
}


#menu_button {
    position: fixed;
    top: 30px;
    right: 30px;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    color: white;
    font-size: 28px;
    z-index: 1100;
    /* Higher than the menu initially */
}

/* Menu Container */
#myNavbar {
    position: fixed;
    top: 20px;
    /* Same as menu button */
    right: 20px;
    /* Same as menu button */
    width: auto;
    height: auto;
    z-index: 1000;
    /* Just below the menu button */
    background: rgb(211, 211, 211, 0.85);
    /* Semi-transparent background */
    padding: 10px;
    display: none;
    /* Initially hidden */
    border-radius: 8px;
    /* Optional rounded edges */
}

/* Show menu at the same position */
#myNavbar.show {
    display: block;
}

/* Close Button inside menu */
#myNavbar button {
    position: absolute;
    top: 20px;
    right: 20px;
    color: black;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 28px;
    padding: 2% 5%;
}

#menu_button:hover {
    border: 2px solid white;
    border-radius: 5px;
}

#myNavbar button:hover {
    border: 2px solid black;
    border-radius: 5px;
}

#myNavbar a {
    color: black;
    cursor: pointer;
    text-decoration: none;

}

#myNavbar a:hover {
    border: 2px solid black;
    border-radius: 5px;
}

/* devider for projects*/
hr {
    border-top: 1px solid white;
    opacity: 1;
}

#carousel2 .smaller img,
#carousel .smaller img {
    max-width: 60%;
    /* Adjust the percentage as needed */
    max-height: auto;
    /* Set a fixed height if necessary */
    width: auto;
    /* Maintain aspect ratio */
    margin: auto;
    /* Center the images */
}

#future_concerts {
    text-align: left;
    /* Align text to the left */
    margin-left: 0;
    /* Remove automatic centering */
    width: 80%;
    /* Ensure it takes full width */

}

#hr_social {
    margin-bottom: -10px;
}

/* footer*/
#socials .info a,
#support .info a,
#contact .info a {
    text-decoration: none;
    color: white;
    padding: 0;
    margin: 0;
}


/* Animation section*/
/* Navbar opening animation */
.w3-animate-top {
    animation: slideDown 0.5s ease-in-out;
}

/* New animation for closing */
.w3-animate-top-reverse {
    animation: slideUp 0.5s ease-in-out forwards;
}

/* Hover for links */
#concerts a{
    text-decoration: none;
    color: rgb(229 81 26);
}

#support .info i{
    color: rgb(229 81 26);
}

#socials .info i{
    color: rgb(229 81 26);
}

#contact .info i{
    color: rgb(229 81 26);
}

#footer_text{
    color: rgb(229 81 26);
}

/*underline hover effect for concerts/project links*/
#concerts a,
#concerts span{
    position: relative;
    text-decoration: none;
    color: rgb(229 81 26);
    display: inline-block;
    padding-bottom: 5px; /* Space for the underline */
}

#concerts a::after,
#concerts span::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: rgb(229 81 26); /* Underline color */
    transition: all 0.4s ease-in-out;
    transform: translateX(-50%);
}

#concerts a:hover::after,
#concerts span:hover::after {
    width: 100%; /* Expands fully */
}

/* Updated Navbar Animations */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        /* Start completely off-screen (right) */
        opacity: 0;
    }

    to {
        transform: translateX(0);
        /* Slide into view */
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        /* Start in place */
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        /* Slide out to the right */
        opacity: 0;
    }
}

/* Apply the animations */
.w3-animate-right {
    animation: slideInRight 0.5s ease-in-out;
}

.w3-animate-right-reverse {
    animation: slideOutRight 0.5s ease-in-out forwards;
}

footer {
    background-color: rgba(0, 0, 0, 0.05);
}

#footer_text div{
    font-size: small;
}

/* Remove margins from "page content" on small screens */
@media only screen and (max-width: 600px) {
    #main {
        margin-left: 0
    }

    /* Show menu at the same position */
    #myNavbar.show {
        display: block;
    }

    #menu_button {
        padding: 1% 2%;
    }

    /* Close Button inside menu */
    #myNavbar button {
        padding: 2% 5%;
    }

    #about p {
        margin-left: 0;
    }

}