/* Reset some default browser styles */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #482215;
    color: #333;
}

header {
    background-image: url('images/backgrounds/header-bg.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    height: 150px;
    position: relative; /* Important for absolute positioning */
}

header h1 {
    font-size: 3rem;
    position: absolute;
    top: 60px; /* Adjust the top position for your title */
    left: 50%;
    transform: translateX(-50%); /* Horizontally center the title */
}

.main-menu {
    display: none; /* Hide the horizontal menu on small screens */
}

.hidden {
    display: none;
}

#menuButton {
    padding: 0px;
    position: fixed;
    top: 67px;
    right: 20px;
    cursor: pointer;
}

#menu {
    position: fixed;
    top: o;
    right: -250px; /* Adjust the side position for your navigation */
    height: 100%;
    width: 250px;
    background-color: #482215;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    transition: right 0.3s;
}

#menu ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column; /* Arrange menu items vertically */
}

#menu li {
    padding: 0px;
    border-bottom: 1px solid #fff; /* Add a border between menu items */
}
    

#menu a {
    text-decoration: none;
    display: block;
}

#menu img.hover-image {
    display: none; /* Initially, the hover images are hidden */
}

#menu a:hover img.hover-image {
    display: block; /* Show the hover image on link hover */
}

#menu a:hover img {
    display: none; /* Hide the default image on link hover */
}

section {
    padding: 20px;
    background-color: #fff;
    margin: 20px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

footer {
    text-align: center;
    background-color: #000;
    color: #fff;
    padding: 10px 0;
    font-size: 0.8rem;
}

/* Add specific styling for each section as needed */

#music {
    /* Custom styles for the music section */
}

#videos {
    /* Custom styles for the videos section */
}

#photos {
    /* Custom styles for the photos section */
}

#blog {
    /* Custom styles for the blog section */
}

#about {
    /* Custom styles for the about section */
}

#contact {
    /* Custom styles for the contact section */
}
#main-logo {
    position: absolute;
    top: 25px; /* Adjust the top position as needed */
    left: 10px; /* Adjust the left position as needed */
    width: 125px;
    height: 125px;
}
