/* Base Styles (for larger screens - Desktop) */
html, body {
    margin: 0;
    padding: 0;
}

body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    /* Adjust padding-top based on navbar height + desired gap for desktop */
    padding-top: 60px; /* Example: Navbar height ~40px, gap ~20px */
}

.navbar {
    text-align: center;
    padding: 10px;
    border-bottom: 1px solid #85d9e2;
    background-color: black;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-sizing: border-box;
    height: 40px; /* Example height - adjust based on content and padding */
}

.nav-link {
    border: 1px solid #85d9e2;
    height: 100%;
    padding: 10px;
    padding-left: 25px;
    padding-right: 25px;
    margin-left:10px ;
    margin-right:10px ;
} 

.container {
    display: flex;
    /* align-items: center; /* Keep if needed for initial vertical alignment */
    box-sizing: border-box;
    /* Padding for desktop - creates space for fixed side panels */
    padding-left: 300px; /* Adjust based on desired desktop gap */
    padding-right: 300px; /* Adjust based on desired desktop gap */
}

#left, #right {
    border: 1px solid #85d9e2;
    border-radius: 5px;
    width: 200px; /* Desktop width of side panels */
    height: 520px; /* Set a specific height or use a percentage */
    padding: 10px;
    margin: 5px; /* This margin adds to the visual space taken by the fixed panel */
    box-sizing: border-box;
    background-color: black;
    color: white;
    position: fixed;
    /* Position below the navbar, aligning with the body's padding-top */
    top: 135px; /* Should match body padding-top for alignment */
    z-index: 999;
}

#left {
    left: 0;
    border-left: 0;
    margin-left: 0px;
    box-shadow: inset -1px -15.5px 24.5px 4.5px #000988;
}

#right {
    right: 0;
    border-right: 0;
    margin-right: 0px;
}

#middle {
    border: 1px solid #85d9e2;
    border-radius: 5px;
    flex-grow: 1; /* Take all remaining horizontal space */
    margin: 80px;
    padding: 10px;
    box-sizing: border-box;
    background-color: black;
    color: white;
    overflow-y: auto; /* Enable vertical scrolling in the middle section */
    /* Optional: max-height if you want a fixed scrollable area relative to viewport */
    /* max-height: calc(100vh - 70px); */
}

.album-lore {
    padding: 20px;
}

#pfp {

    width: 100%;
    height: auto;

    border-radius: 5px;
} 

.spacer {
    display: flex; /* This is the key property */
    /* Optional Flexbox properties to control spacing and alignment */
    justify-content: space-around; /* Distribute space around items */
    align-items: center; /* Vertically center items */
    /* Add any other styling for the container */
    border: 1px solid #85d9e2;
    padding: 10px;
}
/* --- Responsive Styles --- */

/* Medium screens (e.g., Tablets) */
@media (max-width: 1024px) {
    .container {
        padding-left: 200px; /* Reduce gap */
        padding-right: 200px; /* Reduce gap */
    }

    #left, #right {
        width: 150px; /* Reduce side panel width */
        /* top position remains 60px assuming navbar height is constant */
    }
}

/* Smaller screens (e.g., Mobile phones) */
@media (max-width: 868px) {
    body {
        /* Adjust padding-top if navbar height changes significantly on mobile */
        padding-top: 50px; /* Example: Slightly less space if needed */
    }

    .scrolling-text {
         /* Adjust height or padding if content wraps on mobile */
         height: auto; /* Allow height to adjust if text wraps */
         padding: 8px; /* Slightly less padding */
         font-size: 0.9em; /* Smaller font size */
    }
     /* Re-adjust body padding-top and side panel top if navbar height is now 'auto' */
     /* This can be tricky; a fixed small height is often easier for fixed navbars */


    .container {
        padding-left: 20px; /* Significantly reduce gap */
        padding-right: 20px; /* Significantly reduce gap */
        /* Or remove padding entirely if side panels are hidden */
        /* padding-left: 0; */
        /* padding-right: 0; */
    }

    #left, #right {
        /* Hide side panels on very small screens */
        display: none;
         /* If you want to show smaller panels instead of hiding: */
         /* width: 100px; */
         /* top: 50px; /* Align with new body padding-top */
    }

    #middle {
        margin-left: 0; /* Remove margin if container padding is also reduced/removed */
        margin-right: 0;
    }
}

a {
    text-decoration: none; /* Removes the underline */
    color: inherit;        /* Makes the link inherit its parent's color */
    /* Or set a specific color */
    /* color: white; */
}

/* Optional: To ensure no styling changes on visited, hover, or active states */
a:link {
    text-decoration: none;
    color: inherit; /* Or the specific color you set above */
}

a:visited {
    text-decoration: none;
    color: inherit; /* Or the specific color you set above */
}

a:hover {
    text-decoration: none;
    color: inherit; /* Or the specific color you set above */
    /* You might *want* a hover effect, like a slight color change or underline on hover */
    /* Example: color: #85d9e2; */
}

a:active {
    text-decoration: none;
    color: inherit; /* Or the specific color you set above */
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    /* Optional: If you want to center the list horizontally within its parent */
    /* display: flex; */
    /* flex-direction: column; */
    /* align-items: center; */
}

li {
    /* Optional: Remove default margin or padding from list items if any */
    margin: 0;
    padding: 0;
}

.bottom-image-container {
    position: fixed; /* Fix it to the viewport */
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto; /* Or set a specific height if needed */
    z-index: -1; /* Place it behind other content */
    pointer-events: none; /* Prevent it from interfering with clicks */
}

.bottom-image {
    display: block; /* Remove any default inline spacing */
    width: 100%; /* Make it span the entire width */
    height: auto; /* Maintain aspect ratio */
    /* Optional: object-fit properties to control image scaling */
    /* object-fit: contain;  /* Show the whole image, scaled to fit */
    /* object-fit: cover; /* Fill the area, potentially cropping */
    /* opacity: 0.5; /* Optional: Make it semi-transparent */
    opacity: 0.2;
}