body {
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #fff;
    background-color: #1a1a1a;
}

section {
    padding: 60px 20px;
    text-align: center;
}

#hero {
    background: url('ConsoleWS.jpg') no-repeat center center/cover;
    background-color: #000; /* Fallback color */
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.hero-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 7px;
}

#hero h1 {
    font-size: 3.5em;
    margin: 0;
}

#hero p {
    font-size: 1.8em;
    margin: 10px 0 0;
}

#about, #work, #contact, #audio-players {
    background-color: #2a2a2a;
    margin: 20px auto;
    border-radius: 7px;
    padding: 40px 20px;
    max-width: 800px;
}

.about-photo {
    width: 100%;
    max-width: 800px;
    border-radius: 7px;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

p, label, input, textarea {
    font-size: 1.2em;
}

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

a:hover {
    color: #ccc;
}

blockquote {
    font-size: 1.1em;
    line-height: 1.6em;
    text-align: left;
    margin: 0 auto;
    max-width: 700px;
    padding: 20px;
    background-color: #333;
    border-left: 5px solid #e50914;
    border-radius: 5px;
    box-sizing: border-box;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    grid-gap: 20px;
}

.album-grid img {
    width: 100%;
    border-radius: 7px;
    transition: none;
}

.album-grid .album {
    position: relative;
    display: block;
}

.album-grid .album::before {
    content: none; /* Remove any pseudo-element that could cause hover effects */
}

.album-grid .album:hover img {
    opacity: 1; /* Ensure images do not change opacity on hover */
}

h1, #hero .hero-content h1 {
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Smooth Scroll for Hero Section */
html {
    scroll-behavior: smooth;
}

#audio-players {
    background-color: #2a2a2a;
    margin: 20px auto;
    border-radius: 7px;
    padding: 40px 20px;
    max-width: 800px;
    text-align: center;
}

.audio-player {
    margin-bottom: 20px;
}

.audio-player h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

audio {
    width: 100%;
    max-width: 360px;
}

.lightblue-text {
    color: lightblue;
}

/* Media Query for Smaller Screens */
@media (max-width: 900px) {
    .album-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .album-grid img {
        max-width: 100%;
    }

    #hero h1 {
        font-size: 2.5em;
    }

    #hero p {
        font-size: 1.2em;
    }

    h2 {
        font-size: 2em;
    }

    p, label, input, textarea {
        font-size: 1em;
    }
}
