body {
    background-image: url('/public/mcr-resources/background-image.webp'); /* Replace with your image path */
    background-size: cover; /* Ensure the background image covers the entire viewport */
    background-position: center top; /* Align the background to the top */
    background-attachment: scroll; /* Allow the background to scroll with the page */
    background-repeat: no-repeat; /* Prevent the background from repeating */
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
    height: 100%; /* Ensure body takes the full height */
}

/* Styling for header wrapper */
.header-wrapper {
    padding-left: 20px;
    padding-top: 20px;
    font-family: 'Alegreya', serif; /* Apply Alegreya font */
    font-weight: lighter; /* Lighter text for thinner font */
    color: #121212; /* Default text color */
    position: relative;
    z-index: 2; /* Ensure header is above the background */
}

/* Title styling */
.header-title {
    color: #121212; /* Title color */
    padding-left: 40px;
    padding-top: 25px;
}

/* Content styling */
.content {
    padding-top: 80px; /* Add some padding to push content below the header */
    padding-bottom: 50px; /* Padding for the bottom section */
    z-index: 1; /* Ensure content is above the background */
}

/* Footer styling */
footer {
    position: relative; /* Position relative to content */
    z-index: 3; /* Ensure footer appears above background */
    width: 100%;
    padding: 20px;
    background-color: #333; /* Dark footer background */
    color: white;
    text-align: center;
    margin-top: -50px; /* Adjust this value to overlap the background slightly */
}

/* Style for the container */
#ProductGridContainer {
    display: flex;
    justify-content: center; /* Center the content */
    padding: 20px;
}

/* Style for the vinyl list */
.vinyl {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center; /* Center the content */
}

/* Style for the individual item (image and text) */
.vinyl li {
    margin-bottom: 20px; /* Space between items */
}

/* Style for the anchor tag to wrap both image and text */
.vinyl li a {
    display: block; /* Make anchor take up the full width */
    text-decoration: none; /* Remove underline by default */
    color: inherit; /* Ensure text color inherits from its parent */
    transition: transform 0.3s ease; /* Smooth transition for scaling effect */
}

/* Image styling */
.vinyl li a img {
    max-width: 100%; /* Make sure image fits within its container */
    height: auto; /* Keep image aspect ratio */
    display: block; /* Remove any extra space below the image */
    margin: 0 auto; /* Center the image */
    transition: transform 0.3s ease; /* Smooth transition for image scaling */
}

/* Text styling */
.vinyl li a span {
    display: block; /* Make text appear as a block below the image */
    color: #121212; /* Default text color */
    font-family: 'Alegreya', serif; /* Font styling */
    font-weight: lighter; /* Lighter font weight */
    font-size: 1.2rem; /* Adjust font size */
    margin-top: 10px; /* Add space between the image and the text */
}

/* Hover effect for the anchor (scaling image) */
.vinyl li a:hover img {
    transform: scale(1.1); /* Slightly increase image size on hover */
}

.vinyl li a:hover {
    color: #121212BF; /* Highlight text color on hover */
    text-decoration: none; /* Remove underline on hover */
}

/* Optional: You can add a hover effect on the link as well */
.vinyl li a:hover span {
    color: #121212BF; /* Highlight color */
    text-decoration: underline; /* Optional underline effect on hover */
}
