/* 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 */
}

#menuButton {
    display: none; /* Hide the "Menu" button on large screens */
    position: fixed;
    top: -100px;
    right: -100px;
}

#menu {
    display: none; /* Hide the vertical menu on large screens */
}

.main-menu {
    position: absolute;
    bottom: 20px; /* Adjust the bottom position for your navigation */
    left: 50%;
    transform: translateX(-50%); /* Horizontally center the navigation */
}

.main-menu ul {
    list-style: none;
}

.main-menu ul li {
    display: inline;
    margin-right: 20px;
}

.main-menu a {
    text-decoration: none;
    color: #fff;
    position: relative; /* Required for the animation */
    transition: all 0.3s ease; /* Add a smooth transition effect */
}

.main-menu a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px; /* Adjust the line height as needed */
    background-color: #fff;
    transform: scaleX(0); /* Initially, the line has no width */
    transform-origin: right;
    transition: transform 0.3s ease; /* Transition for the line width */
}

.main.menu a:hover {
    color: #ff9900; /* Change the text color on hover */
}

.main-menu a:hover::before {
    transform: scaleX(1); /* Expand the line width on hover */
    transform-origin: left;
}

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;
}
