:root {
    --dark-purple: #161620;
    --purple: #211b27;
    --burnt-orange: #b65f17;
    --grey: #cfcbc659;
    --off-white: #f7f1e7;
    --dark-grey: #313338;
    --yellow: #fcf822e8;
    --green: #18d431cb;
    --light-green: #a4e4ada4;
    --pink: #e756dbb6;
    --light-pink: #ffc5fab6;

    /* gradient for status box */
    --color-start: var(--burnt-orange);
    --color-end: var(--yellow);
}

* {
    box-sizing: border-box;
}

.material-symbols-outlined {
    display: none;
    justify-content: center;
    align-items: center;
    margin: 24px;
}


body {
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    background: var(--dark-grey);
    color: var(--off-white);
    font-family: Georgia, "Times New Roman", serif;
}

.nav {
    min-height: 96px;
    display: flex;
    align-items: stretch;
    background-color: var(--dark-purple);
    position: sticky;
    top: 0;
    padding-right: clamp(24px, 15vw, 210px);
    z-index: 999;
}

#schedule-button {
    display: none;
}

#mobile-schedule {

}

.logo > img{
    width: clamp(64px, 10vw, 128px);
    margin-left: clamp(21px, 4vw, 42px);
    flex-shrink: 0;
    background: radial-gradient(var(--burnt-orange), var(--dark-purple) 70%);
}

.menu {
    margin-left: auto;
    display: flex;
    align-items: stretch;
}

.button {
    min-height: 32px;
    padding: 0;
    border: 0;
    color: var(--off-white);
    background-color: transparent;
    font: inherit;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;
    align-items: center;
    justify-content: center;
}

.menu > .button {
    display: flex;
    padding: 4px 16px;
}


.main {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(88px, 18vh, 180px) clamp(24px, 15vw, 210px);
}

#main-container {
    width: 75vw;
    min-height: 60vh;
    padding: clamp(44px, 7vw, 100px);
    display: flex;
    align-items: center;
    gap: clamp(28px, 4vw, 58px);
    background-color: var(--grey);
    box-shadow: 4px 4px 10px var(--dark-purple);
    border-radius: 8px;
}

.about {
    min-width: 0;
    flex: 1.25;
    text-shadow: 1px 1px 2px var(--grey);
}

.about h1 {
    margin: 0 0 10px;
    font-size: clamp(1.1rem, 3vw, 4rem);
    line-height: 1;
    text-shadow: 1px 1px 4px var(--burnt-orange);
}

.about h2 {
    margin: 0;
    font-size: clamp(0.84rem, 1.5vw, 2rem);
    font-weight: 500;
    line-height: 1.05;
}

.about h2 span {
    color: var(--off-white);
    font-weight: 800;
    text-shadow: 1px 1px 2px var(--burnt-orange);
}

.album-this-week {
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: var(--off-white);
    font-weight: 800; 
    font-size: clamp(0.9rem, 2vw, 2rem);
    padding-bottom: 0px;
    max-width: 35vh;
    text-align: center;
    margin-bottom: 8px;
}

.artist-this-week {
    font-style: italic;
    font-size: clamp(0.8rem, 1.5vw, 2rem);
    text-align: center;
    font-weight: 500;
}

.vote-box {
    min-width: clamp(150px, 22vw, 214px);
    min-height: clamp(150px, 32vw, 400px);
    padding: clamp(8px, 5vw, 24px);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--dark-purple);
    gap: 48px;
    border-radius: 8px;
    align-items: center;

    border: 4px solid transparent;
    border-radius: 8px;
    
    background: 
        linear-gradient(var(--dark-purple), var(--dark-purple)) padding-box, 
        linear-gradient(to bottom left, var(--color-start) 40%, var(--color-end)) border-box;
}

.vote-status {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0;
    color: var(--off-white);
    font-size: clamp(1rem, 2vw, 3rem);
    text-transform: uppercase;
    white-space: wrap;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    white-space: pre-line;
    white-space: nowrap;
}

.subtext {
    padding: 0px;
    margin: 4px 0px;
    font-size: clamp(0.9rem, 2vw, 2rem);
    color: var(--burnt-orange);
    font-weight: 500;
}

#genre-text {
    padding: 0px;
    margin: 0px;
    text-transform: uppercase;
    font-size: clamp(0.9rem, 2vw, 2rem);
}

.live-indicator {
    display: inline-block;
    margin-right: 8px;
    width: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: #82f36e;
    box-shadow: 0 0 0 5px rgba(124, 212, 109, 0.315);
}

#nominate-indicator {
    background-color: var(--yellow);
    box-shadow: 0 0 0 5px var(--burnt-orange);
}

#listen-indicator {
    background-color: var(--light-pink);
    box-shadow: 0 0 0 5px var(--purple);
}

#closed-indicator {
    background-color: transparent;
    box-shadow: none;
}

#vote-link {
    min-height: auto;
    min-width: clamp(35px, 10vw, 300px);
    padding: clamp(12px, 2vw, 24px) clamp(24px, 4vw, 48px);
    border: 2px solid var(--off-white);
    font-size: clamp(0.75rem, 1.2vw, 1.25rem);
    line-height: 1;
    font-weight: bold;
    border-radius: 4px;
    text-align: center;
    white-space: nowrap;
}

.schedule {
    margin: 0px clamp(0px, 10vw, 500px);
    align-self: center;
    display: block;
}

#weekly-schedule {
    margin: 0px 0px 24px;
    font-size: clamp(1.1rem, 3vw, 4rem);
    line-height: 1;
    text-shadow: 1px 1px 4px var(--burnt-orange);
    text-align: center;
}


.button:hover,
.button:focus-visible
.nav-mobile a:hover {
    background: linear-gradient(to bottom left, var(--burnt-orange) 20%, var(--yellow));
}

.button:focus-visible {
    outline: 2px solid var(--burnt-orange);
    outline-offset: 3px;
}

#prev-albums {
    border: 4px solid transparent;
    border-radius: 4px;
    background: 
        linear-gradient(var(--dark-grey), var(--dark-grey)) padding-box, 
        linear-gradient(to bottom left, var(--burnt-orange) 40%, var(--yellow)) border-box;
    padding: 8px;
    
    margin: 0px clamp(8px, 2.5vw, 32px) 16px;
}

#prev-albums h2 {
    text-align: center;
    font-size: clamp(1rem, 3vw, 3rem);
    text-transform: uppercase;
    text-shadow: 1px 1px 2px var(--burnt-orange);
    margin: clamp(8px, 2.5vw, 32px);
}

#album-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    flex: 1;
    padding: 8px;
}

.album-card {
    transition: transform 0.2s ease;
    z-index: 1;
}

#aotw {
    border: 2px solid var(--off-white);
    box-shadow: 0px 0px 16px var(--burnt-orange);
    aspect-ratio: 1;
    max-width: 35vh;
    align-self: center;
    margin: 4px;
}

#aotw:hover {
    transform: scale(1.05);
}

.album-card a {
    display: block;
}

.album-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.album-card:hover {
    z-index: 100;
    transform: scale(1.1);
    box-shadow: 0px 0px 16px black;

}


@media (max-width: 700px) {
    .logo, .menu {
        display: none;
    }

    .nav {
        min-height: 64px;
        position: sticky;
        top: 0;
        z-index: 900;
    }

    .material-symbols-outlined {
        display: flex;
    }

    .menu {
        display: flex;
        left: -100%;
        flex-direction: column;
        position: fixed;
        top: 0;
        height: 100vh;
        width: 250px;
        z-index: 999;
        align-items: center;
        justify-content: center;
        background: var(--dark-purple);
        padding: 0;
        transition: 0.15s ease-out;
    }

    #schedule-button {
        display: flex;
    }


    .menu > .button {
        height: 100%;
        padding: 0;
        text-decoration: none;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-height: 10vh;
    }



    #sidebar-active:checked ~ .menu {
        left: 0;
    }

    #sidebar-active:checked ~ #overlay {
        height: 100%;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
    }

    .main {
        padding: 48px 20px;
    }

    #main-container {
        padding: 38px 28px;
        flex-direction: column;
        align-items: stretch;
        gap: 32px;
    }

    .vote-box {
        width: 100%;
        min-height: 140px;
        gap: 32px
    }

    #album-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }

    .schedule {
        padding: 0;
        margin: 0px 16px 16px 16px;
        align-self: center;
        justify-content: center;
        display: block;
        height: auto;
        width: 95%;
    }
}
