/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #eee;
    background-color: #222;
}

/* Header Styles */
header {
    background: #333;
    color: #fff;
    padding: 1rem 0;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    width: 100%;
    text-align: center;
}

header::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    background: #6bfefbff;
    filter: blur(4px);
    opacity: 1;
    pointer-events: none;
}

.dropdown-content {
    margin-bottom: 1em;
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

.dropdown-item {
    text-align: center;
}

.dropdown-content span::before {
    content: " • ";
    text-align: center;
    font-weight: 700;
    margin: 0 .5em;
}

.dropdown-content span:first-child::before {
    content: "   ";
    font-weight: 700;
}

button {
    border: none;
    cursor: pointer;
}

.dropdown-item {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    background-color: #222;
    padding: 0.5em 1em;
    border-radius: 5px;
}

.dropdown-item:hover {
    text-decoration: underline;
    background-color: #444;
}

.active-link {
    border: 1px solid #999;
}

header h1 {
    font-size: 3em;
    font-weight: bold;
    margin: 0;
    padding: 0;
}

/* Section Styles */
main {
    padding: 2rem;
    max-width: 1000px;
    min-height: 65vh;
    margin: 0 auto;
}

section {
    margin-bottom: 2rem;
    padding: 1rem;
    background: #333;
    border-radius: 5px;
}

section h1,
section h2 {
    color: #ddd;
}

section p,
section ul {
    margin: 1rem 0;
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-bottom: 0.5rem;
    font-weight: bold;
}

form input,
form textarea,
form button {
    margin-bottom: 1rem;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background: #333;
    color: #fff;
    border: none;
    cursor: pointer;
}

form button:hover {
    background: #555;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 1rem 0;
    background: #333;
    color: #fff;
    position: relative;
    bottom: 0;
    width: 100%;
}

.image-grid img,
.image-grid audio {
    width: calc(50% - .25em - 7.5px);
    margin: 2px 5px;
    height: 250px;
    object-fit: cover;
}

.asset-grid img,
.asset-grid audio {
    width: calc(100% - .25em - 7.5px);
    margin: 2px 5px;
    height: 250px;
    object-fit: cover;
}

.image-container {
    display: inline-grid;
    width: 50%;
    text-align: center;
}

.asset-grid audio {
    height: 50px;
}

.image-grid img {
    width: calc(50% - .25em - 7.5px);
    margin: 2px 5px;
    height: 250px;
    object-fit: cover;
}

.image-grid img:hover {
    scale: 1.025;
}

.asset-grid img:hover {
    scale: 1.025;
}

.section {
    border-bottom: 2px solid #222;
    border-radius: 0;
    margin: 0;
}

.section p {
    margin-top: -1em;
    margin-left: 1em;
}

.dropbtn {
    float: right;
    margin-right: 1em;
    margin-bottom: 1em;
    border: none;
    display: none;
    border-radius: .5em;
    background: #222;
    color: white;
    padding: .5em 1em;
}

.filter-buttons {
    margin-bottom: 2em;
}

.filter-buttons button {
    background: #444;
    color: white;
    padding: .5em 1em;
    border-radius: .5em;
    border: none;
    cursor: pointer;
}

.filter-buttons button:hover {
    background: #555;
}

.filter-buttons button.active {
    background: #6bfefbff;
    color: #222;
}

section h2, section h1 {
  margin-top: -5px;
}

@media (max-width: 750px) {
    .dropdown-content {
        display: none;
        margin-top: 2em;
        margin-bottom: 2em;
    }

    .dropdown-content span {
        margin-top: .5em;
        height: 2em;
        display: block;
    }

    .dropdown-content span button {
        width: 100%;
        padding: 1em 0;
    }

    .dropdown-content span::before {
        content: "";
    }

    .dropbtn {
        display: block;
    }

    .image-grid img {
        width: calc(100% - .25em - 7.5px);
        margin: 2px 5px;
        height: 250px;
        object-fit: cover;
    }
}

@media (max-width: 500px) {
    .image-grid img {
        width: calc(100% - .25em - 7.5px);
        margin: 2px 5px;
        height: 150px;
        object-fit: cover;
    }
}