
body {
    font-family: 'Arial', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #fff;
}
header {
    background-color: #000;
    color: #fff;
    padding: 10px 0;
}
header nav ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
}
header nav ul li {
    display: inline;
    margin: 0 15px;
}
header nav ul li a {
    color: #fff;
    text-decoration: none;
}
main {
    padding: 20px;
}
footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}
form {
    max-width: 300px;
    margin: 0 auto;
}
input[type=email], input[type=submit] {
    width: 100%;
    padding: 8px;
    margin: 5px 0;
    box-sizing: border-box;
}
input[type=submit] {
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
}
input[type=submit]:hover {
    background-color: #0056b3;
}
section#promo-signup {
    text-align: center;
}

.logo-container {
    background-color: white; /* White background */
    text-align: center;     /* Center align the contents */
    padding: 20px 0;        /* Add some padding */
}

header nav ul {
    /* Existing styles... */
    margin-bottom: 0;       /* Remove bottom margin for better alignment */
}
/* Styles for the latest releases section */
#latest-releases {
    text-align: center;
    margin: 20px 0;
}

.release {
    margin: 10px;
    display: inline-block;
    vertical-align: top;
}

.release img {
    width: 300px; /* Set image width to 300px */
    height: 300px; /* Set image height to 300px */
    object-fit: cover; /* This will cover the area without stretching the image */
    display: block;
    margin-bottom: 10px;
}

/* Ensure audio controls fit the width of the image */
.release audio {
    width: 300px; /* Align the audio player width with the image */
    display: block;
}

/* Additional responsive styles might be required for smaller screens */
@media (max-width: 600px) {
    .release {
        width: 100%;
    }
    .release img,
    .release audio {
        width: 100%;
    }
}



/* Contact Form Styles */
#contact {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f9; /* Light background for the form area */
    border-radius: 8px; /* Rounded corners for the form */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.form-group {
    margin-bottom: 20px; /* Space out the form elements */
}

.form-group label {
    display: block; /* Ensure the label is a block to position it above the input */
    margin-bottom: 5px; /* Space between the label and the input */
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%; /* Full width of the container */
    padding: 10px; /* Padding inside the input */
    border: 1px solid #ddd; /* Subtle border */
    border-radius: 4px; /* Rounded corners on inputs */
    box-sizing: border-box; /* Box sizing to ensure padding doesn't affect width */
}

.form-group textarea {
    height: 150px; /* Set a fixed height for the textarea */
    resize: vertical; /* Allow vertical resizing only */
}

button[type="submit"] {
    display: inline-block;
    background: #0056b3; /* Button color */
    color: white; /* Text color */
    padding: 10px 20px;
    border: none;
    border-radius: 4px; /* Rounded corners on the button */
    cursor: pointer; /* Pointer cursor on hover */
    font-size: 16px;
}

button[type="submit"]:hover {
    background: #003d82; /* Darker shade on hover */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 600px) {
    #contact {
        padding: 20px 10px; /* Smaller padding on the sides */
    }
}
