/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* Serif font update */
    font-family: Georgia, 'Times New Roman', Times, serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
}

a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #888888;
}

/* Header & Navigation */
header {
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #333;
}

header h1 {
    font-size: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav ul li {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Stationary Header Video Section */
#hero {
    position: relative;
    height: 60vh;
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid #333;
    background-color: #000000;
}

.hero-video {
    position: fixed;
    top: 50%; /* Center the video vertically */
    left: 50%; /* Center the video horizontally */
    transform: translate(-50%, -50%); /* Offset the position to create true centering */
    min-width: 100%; /* Force the video to be at least the container's width */
    min-height: 100%; /* Force the video to be at least the container's height (60vh) */
    width: auto; /* Let the browser calculate width */
    height: auto; /* Let the browser calculate height */
    z-index: 0;
    object-fit: cover; /* This will crop the edges to maintain ratio and fill the space */
    filter: grayscale(100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
}

/* General Section Styling */
section {
    padding: 6rem 5%;
    position: relative;
    z-index: 2;
}

h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Boxy Releases Section */
#releases {
    background-color: #ffffff;
    color: #000000;
    padding: 4rem 5%;
    border-top: 2px solid #000000; /* Adds the black divider line */
}

/* Container to keep logo and title side-by-side and centered */
.brand-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px; /* Adjusts the space between the logo and the text */
    margin-bottom: 0.5rem; /* Keeps spacing neat above your navigation links */
}

/* Sizing and absolute positioning for the logo image in the top-left corner */
.nav-logo {
    position: absolute;
    top: 10px;
    left: 20px;
    height: 85px;
    width: auto;
    object-fit: contain;
}

.releases-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #000;
}

.releases-header h2 {
    margin-bottom: 0;
    font-size: 2rem;
}

.shop-btn {
    background-color: #000000;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.shop-btn:hover {
    background-color: #444444;
    color: #ffffff;
}

/* The Grid Container */
.releases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-left: 1px solid #000;
    border-top: 1px solid #000;
}

/* Individual Grid Boxes */
.release-box {
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #fafafa;
}

/* Coming Soon Placeholder */
.coming-soon {
    grid-column: 1 / -1; /* Spans across all grid columns */
    padding: 6rem 2rem;
    text-align: center;
    background-color: #fafafa;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
}

.coming-soon h2 {
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #000000;
}

.release-box img {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin: 0 auto 2rem;
    display: block;
    filter: grayscale(100%); 
}

.release-info {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.release-title {
    font-size: 0.95rem;
    font-weight: bold;
}

.release-price {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Audio Player Styling */
audio {
    width: 100%;
    margin-top: 0.5rem;
    height: 32px;
}

/* Roster Section */
#roster {
    border-bottom: 1px solid #222;
    background-color: #000000;
}

#roster h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.artist-grid {
    display: flex;
    justify-content: center;
    gap: 5rem;
    flex-wrap: wrap;
}

.artist-card {
    text-align: center;
    max-width: 300px;
}

.artist-card img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    filter: grayscale(100%);
    border: 2px solid #333;
    transition: border-color 0.3s ease;
}

.artist-card:hover img {
    border-color: #ffffff;
}

.artist-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.artist-card p {
    color: #888888;
    font-style: italic;
}

/* Contact Section & Footer */
footer {
    padding: 6rem 5% 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
    background-color: #000000;
}

#contact h2 {
    margin-bottom: 4rem;
}

.contact-subtext {
    margin-top: -3rem;
    margin-bottom: 3rem;
    color: #888;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto 4rem;
}

input, textarea {
    width: 100%;
    padding: 1rem;
    background-color: #111;
    border: 1px solid #333;
    color: #fff;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1rem;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #ffffff;
}

textarea {
    height: 150px;
    resize: vertical;
}

button {
    padding: 1rem;
    background-color: #ffffff;
    color: #000000;
    border: none;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

button:hover {
    background-color: #cccccc;
}

.copyright {
    color: #444444;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Responsive Design for smaller screens */
@media (max-width: 1024px) {
    .releases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .releases-grid {
        grid-template-columns: 1fr;
    }
    
    header {
        flex-direction: column;
        gap: 1rem;
    }
}