body {
    margin: 0;
    background: black;
    color: white;
    font-family: Helvetica, sans-serif;
    font-size: 14px;
}

.hero {
    display: grid;
    align-items: center;
    grid-template-columns: 220px minmax(250px, 450px);
    gap: 10px;
}

.home {
    display: grid;
    place-items: center;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
}

.portrait {
    width: 200px;
    height: auto;
    aspect-ratio: 1 / 1;
}

.content {
    display: grid;
    gap: 25px;
}

.about-page {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}
.about-container {
    max-width: 400px;
    width: 100%;
    text-align: left;
}

.about-title {
    font-size: 28px;
    margin-bottom: 20px;
}

.headshots {
    display: flex;
    justify-content: left;
    gap: 5px;
    margin-bottom: 5px;
}

.headshots img {
    width: 30%;
    height: auto;
}

.bio {
    font-size: 15px;
    line-height: 1.5;
    color: #d0d0d0;
}

.title-group h1 {
    margin: 0;
    font-size: 36px;
    line-height: 1;
}

.title-group h2 {
    margin: 0;
    font-size: 25px;
    line-height: 1;
}

.title-group p {
    margin: 5px 0 0 0px;
    font-size: 14px;
    color: #d0d0d0;
}

.button-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 80px;
}

.button-grid a {
    display: block;
    color: white;
    background: #2e2e2e;
    padding: 6px 8px;
    font-size: 10px;
    text-align: center;
    text-decoration: none;
    transition: 0.2s ease;
}

.button-grid a:hover {
    background: #444;
}

.about {
    grid-column: 2;
}

.socials {
    display: flex;
    gap: 5px;
    align-items: center;
}

.socials a img {
    width: 28px;
    height: 28px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.socials a:hover img {
    opacity: 0.8;
}

.biosocials {
    display: flex;
    gap: 6px;
    justify-content: flex-start;
    align-items: center;
}

.biosocials a img {
    width: 28px;
    height: 28px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.biosocials a:hover img {
    opacity: 0.8;
}

.film-page {
    display: flex;
    justify-content: center;
    padding: 40px 0;
}

.video-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
    width: min(800px, 100%);
}

.video-list iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
}

.navbar {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 10px 0 18px 0;
}

.navbar a {
    color: white;
    text-decoration: underline;
    font-size: 14px;
}

.art-grid {
    columns: 2;
    column-gap: 20px;
    padding: 20px;
    max-width: 1100px;
}

.art-grid img {
    width: min(500px, 100%);
    height: auto;
    display: block;
    margin-bottom: 50px;
    break-inside: avoid;
}

.art-page {
    display: grid;
    place-items: center;
    min-height: 100vh;
}

.dj-page {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dj-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    margin-top: 15px;
    max-width: 1000px;
    padding: 20px;
}

.dj-grid a {
    display: block;
}

.dj-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border: 1px solid white;
    object-fit: cover;
    display: block;
}

#email {
    margin-bottom: 15px;
}

#party-art {
    width: 50%;
}

.email-button {
    padding: 10px 14px;
    color: aqua;
    font-size: 15px;
}

@media (max-width: 768px) {

    body {
        padding: 20px;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
    }

    .portrait {
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
    }


    .bio {
    max-width: 600px;
    }

    .content {
        justify-items: center;
    }

    .title-group h1 {
        font-size: 28px;
    }

    .button-grid {
        width: 140px;
    }

    .socials {
        justify-content: center;
    }

    .video-list {
        width: 100%;
    }

    .art-grid {
        columns: 1;
        padding: 20px;
        column-gap: 0;
    }

    .art-grid img {
        width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 900px) {
    .dj-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .dj-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}