/* ====================================================
   HERO SECTION
   ==================================================== */
.hero {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(/assets/bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative; /* needed for absolute positioning of scrim */
}

/* Add dark scrim behind hero-window */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}


.hero-window {
    width: 600px;
    height: 100%;
    background-color: var(--silver-100);
    border: 1px solid rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 12px var(--shadow-standard);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    padding: 1rem;
    position: relative;
    z-index: 2;
    animation: popUp 0.5s cubic-bezier(.44,.6,.11,1.13);
    transform-origin: center;
}

@keyframes popUp {
    0% {
        transform: scale(1.2);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.hero-content img {
    width: 100%;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 4px var(--shadow-standard));
}

/* ====================================================
   ALBUM OF THE MONTH
   ==================================================== */
#albumotm {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background-image: linear-gradient(to bottom, var(--slate-100), var(--slate-300));
    border: 0.05rem solid var(--slate-700);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5),  0 4px 6px var(--shadow-standard);;
    align-items: center;
}

#albumotmImg {
    width: 12rem;
    height: 12rem;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.5);
}

#albumotmLabel {
    font-weight: 700;
    margin: 0;
    text-align: center;
}

#albumotmName {
    margin: 0;
    text-shadow: 0 1.5px 0 rgba(255, 255, 255, 0.5);
    text-align: center;
}

#albumotmArtist {
    margin: 0;
    font-weight: 500;
    color: var(--slate-900);
    text-align: center;
}

#open_in_new_album {
    cursor: pointer;
    position: absolute;
    top: 1.4rem;
    right: 1.4rem;
    color: var(--slate-900);
    padding: 0.5rem;
    border-radius: 2rem;
    background: var(--slate-300);
    transition: all 0.3s ease;
}

#open_in_new_album:hover {
    transform: scale(1.2);
}

/* ====================================================
   SONG OF THE MONTH
   ==================================================== */
#songotm {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background-image: linear-gradient(to bottom, var(--cocoa-100), var(--cocoa-300));
    border: 0.05rem solid var(--mint-700);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5),  0 4px 6px var(--shadow-standard);;
    align-items: center;
}


#songotmImg {
    width: 12rem;
    height: 12rem;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.5);
}

#songotmLabel {
    margin: 0;
    text-align: center;
    color: var(--cocoa-900);
}

#songotmName {
    margin: 0;
    color: var(--cocoa-900);
    text-shadow: 0 1.5px 0 rgba(255, 255, 255, 0.5);
    text-align: center;
}

#songotmArtist {
    margin: 0;
    font-weight: 500;
    color: var(--cocoa-900);
    text-align: center;
}

#open_in_new_song {
    cursor: pointer;
    position: absolute;
    top: 1.4rem;
    right: 1.4rem;
    color: var(--mint-100);
    padding: 0.5rem;
    border-radius: 2rem;
    background: var(--mint-500);
    transition: all 0.3s ease;
}

#open_in_new_song:hover {
    transform: scale(1.2);
}

/* ====================================================
   CLANKER OF THE MONTH
   ==================================================== */
.clankerotm-img {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--slate-700);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

/* ====================================================
   WIDGETS
   ==================================================== */

/* Webmaster Section */
#webMasterTime {
    font-weight: 300;
    font-size: 4rem;
    text-shadow: 0 1.5px rgba(255, 255, 255, 0.5);
}

#webMasterClockContainer {
    gap: 1rem;
    border: 1px solid var(--blueberry-700);
    background: linear-gradient(var(--blueberry-300), var(--blueberry-500));
    color: var(--blueberry-900);
    align-items: center;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5),  0 4px 6px var(--shadow-standard);;       
}

.playerbuttons {
    gap: 1rem;
    display: flex;
    align-items: center;
    justify-items: center;
    width: 80%;
}
.playerbuttons img {
    filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.3));
}

#playbutton {
    transition: all 0.3s ease;
}

#playbutton:hover {
    transform: scale(1.1);
}