/* General Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
html, body {
    margin: 0;
    padding: 0;
    background-color: #FFF6B8;
    font-family: Arial, sans-serif;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FFF6B8;
    padding: 10px;
}

/* Navigation */
nav {
    flex-grow: 1;
    margin-left: 20px;
    background-color: #FFF6B8; /* Keep the main navigation bar background */
    padding: 4px 0; /* Adds the margin effect inside */
}

nav ul {
    display: flex;
    justify-content: space-around;
    list-style: none;
    background-color: #FFFCD3; /* Lighter yellow for the text area */
    padding: 4px 0; /* Top and bottom padding for separation */
    margin: 4px 0; /* Creates space around the lighter section */
    border-radius: 5px; /* Optional: Softens edges slightly */
}

nav ul li {
    padding: 10px;
}

/* Main Content Layout */
.container {
    display: flex;
}

/* Sidebar */
aside {
    padding: 20px;
    width: 256px;
    min-height: 400px;
    background-color: #FFF6B8;
}

aside ul {
    list-style: none;
}

aside ul li {
    margin-bottom: 10px;
}

/* Album List */
.album-list {
    list-style: none;
    padding: 0;
    text-align: center;
}

.album-list li {
    margin-bottom: 20px;
}

.album-list img {
    display: block;
    margin: 0 auto;
    width: 125px;
    height: 125px;
}

/* Main Content */
main {
    flex-grow: 1;
    padding: 20px;
    background-color: #FFF6B8;
}

.artist-portrait {
    float: right;
    margin-left: 20px;
    margin-bottom: 10px;
    width: 250px; /* Adjust as needed */
    height: auto;
    border: 1px solid #000; /* Optional: Adds a border for better visibility */
}

/* Artist Releases Grid Layout */
.artist-releases {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two albums per row */
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

/* Individual Release Box */
.release {
    text-align: center;
}

/* Album Information */
.album-info {
    margin-bottom: 10px;
    font-size: 16px;
}

.album-info strong {
    font-weight: bold;
}

.album-info em {
    font-style: italic;
}

/* Album Images */
.release img {
    width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Links */
.release .links {
    margin-top: 10px;
}

.release .links a {
    text-decoration: none;
    color: #000;
}

.release .links a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #FFF6B8;
    text-align: center;
    padding: 10px;
    position: fixed;
    width: 100vw;
    bottom: 0;
    left: 0;
}

footer img {
    height: 35px;
    margin-right: 10px;
}

footer p {
    margin: 0;
    line-height: 35px;
}