@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');

* {
    font-family: 'Inter Tight', sans-serif;
    margin: 0;
    box-sizing: border-box;
    user-select: none;
    --plyr-color-main: #024243; /* Sets Dazifon primary color as Plyr video player primary color */
}

body, html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    scrollbar-width: none;
    overflow-y: scroll;
}

/* Page looks VERY spacy on Firefox with their default styling of the br element. This should fix it, setting one size for all br. */
br {
    display: block;
    line-height: 20;
}

/* Hide scrollbar for Chrome, Edge, and Safari */
html::-webkit-scrollbar, body::-webkit-scrollbar {
    display: none;
}

body {
    background-color: #000000;
    margin-top: 55px;
}

header {
    background-color: #024243;
}

/* Navbar Container */
nav {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    background: linear-gradient(180deg, rgb(2, 80, 82) 0%, rgb(2, 53, 53) 100%);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2000;
}

/* Navbar List (UL) */
nav ul {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Navbar Items (LI) */
nav ul li {
    flex: 0 1 auto;
    text-align: center;
    margin: 0 10px;
}

/* Logo Styling */
nav ul li a img {
    height: 30px; 
    max-width: 100px;
    object-fit: contain;
    scale: 125%;
}

/* Button and Icon Styling */
nav ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    padding: 10px;
    font-size: 18px;
    transition: all 0.2s ease-in-out;
}

/* Remove hover background for links */
nav ul li a:hover {
    background-color: transparent;
    color: #a7c5c5;
    transform: scale(1.1);
    transition: all 0.2s ease-in-out;
}
  
/* Non-hover state, just in case */
nav ul li a:not(:hover) {
    background-color: transparent;
}

.close-button {
    text-decoration: none;
    color: #00000027;
    font-weight: 200;
}

.close-button:hover {
    transition: all 0.2s ease-in-out;
    font-weight: 900;
    color: #024243;
    background-color: transparent;
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }

    nav ul li a img {
        scale: 125%;
        height: 25px;
    }

    nav ul li a i {
        font-size: 16px;
    }

    nav ul li {
        flex: 0;
        margin: 0;
    }
}

.no-drag {
    -webkit-app-region: no-drag;
}

#title-bar {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    height: env(titlebar-area-height, 55px);
    width: 100%;
    -webkit-app-region: drag;
    align-items: center;
}

#warningMsg {
    background-color: #64e8e9;
    padding: 8px;
}

.shadow {
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.69));
}

h1, h2, h3, h4, h5, h6, p, pre, ul, li {
    color: white;
}

p, pre, ul, li {
    text-indent: 0;
    font-size: 15px;
}

br {
    font-size: 80px;
}

a {
    color: #317a7a;
}

a:hover {
    background-color: #024243;
    color: #64e8e9;
    transition: 0.25s;
}

a:not(:hover) {
    transition: 0.25s;
}

img {
    color: rgb(120, 120, 120);
}

footer {
    background-color: #0c0c0c;
    padding: 25px;
    font-weight: 440;
}

footer a {
    color: rgb(120, 120, 120);
    text-decoration: none;
}

footer a:hover {
    background-color: transparent;
    color: white;
}

footer img:hover {
    filter: brightness(1000%);
    transition: 0.25s;
}

footer img:not(:hover) {
    color: rgb(120, 120, 120);
    transition: 0.25s;
}

.social-icons a {
    margin: 0 10px;
    font-size: 24px;
    text-decoration: none;
}

button {
    background-color: #ffffff;
    border-color: transparent;
    border-radius: 50px;
    padding: 10px 20px 10px 20px;
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.69));
    cursor: pointer;
}

button:hover {
    scale: 105%;
    transition: 0.25s;
    font-weight: 650;
}

button:not(:hover) {
    scale: 100%;
    transition: 0.25s;
}

.Btn:hover {
    background-color: transparent;
}

/* Plyr video player */

    .plyr {
        display: block;
        width: 100%;
        height: auto;
    }

    /* Screen Bug ID Styling */
    #screen-bug {
        position: absolute;
        top: 10px;
        right: 3vw;
        width: 10vw;
        height: auto;
        z-index: 9999;
        opacity: 1;
        display: block;
        filter: drop-shadow(0px 0px 1px #0000006c);
        max-width: 9vw;
    }

    /* Screen Bug Styling when in Fullscreen */
    :fullscreen #screen-bug,
    :-webkit-full-screen #screen-bug {
        position: absolute;
        top: 1vh;
        right: 3vw;
        width: 10vw;
        height: auto;
        z-index: 9999;
        opacity: 1 !important;
        display: block !important;
    }

    /* Fullscreen Plyr Container Styling */
    :fullscreen .plyr-container,
    :-webkit-full-screen .plyr-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 9998;
    }

    /* Screen Bug CLASS Styling */
    .screen-bug {
        position: absolute;
        top: 2vh;
        right: 4vw;
        width: 10vw;
        color: black;
        z-index: 9999;
        opacity: 1;
        display: block;
        min-width: 100px;
    }

    :fullscreen #screen-bug,
    :-webkit-full-screen #screen-bug {
        display: block;
        opacity: 1;
    }

    :fullscreen .screen-bug,
    :-webkit-full-screen .screen-bug {
        position: absolute;
        opacity: 1 !important;
        z-index: 9999;
        right: 69px;
    }

    /* Styling for the Plyr video player container */
    .plyr-container {
        width: 69vw;
        margin: 0 auto;
        margin-top: 22px;
        position: relative;
        display: block;
        overflow: hidden;
    }

    :fullscreen .plyr-container,
    :-webkit-full-screen .plyr-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 9999;
        background: black;
    }

    /* Styling for the Plyr video player controls */
    .plyr__control {
        position: relative;
        display: block !important;
        opacity: 1 !important;
        z-index: 8;
        transition: opacity 0.2s ease-in-out;
        background-color: #024243;
        color: white;
    }


/* The description box for videos */
.description {
    background: rgb(39,39,39);
    background: linear-gradient(180deg, rgba(39,39,39,1) 0%, rgba(48,48,48,0.55) 100%);
    border-radius: 8px;
    width: 69vw;
    padding: 17.5px;
    text-align: left;
    margin-top: 20px;
    margin-bottom: 200px;
}

.description h1 {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
}

.gslides-iframe {
    aspect-ratio: 16 / 9;
    height: auto;
    width: 69%;
    border-radius: 8px;
    margin-top: 22px;
}

#records-logo {
    filter: drop-shadow(0px 2px 6px #000000);
}

#records-logo-desktop {
    display: block;
}

iframe#youtube-video {
    padding-top: 50px;
    width: 60%;
    aspect-ratio: 16 / 9;
    margin-bottom: 50px;
}

.index-logo {
    filter: drop-shadow(0px 2px 6px #000000);
    width: 60%;
    margin: 40px;
}

/* Mobile Viewport Properties (screen sizes smaller than a width of 768px) */
@media (max-width: 768px) {
    .description {
        width: 100vw;
        margin: 0;
        background-color: transparent;
        background: linear-gradient(180deg, rgba(39,39,39,1) 0%, rgba(48,48,48,0) 100%);
        padding: 25px;
        padding-top: 18px;
        border-radius: 0;
        margin-bottom: 120px;
    }

    .plyr-container {
        width: 100vw;
        margin: 0;
    }

    .gslides-iframe {
        width: 100%;
        border-radius: 0;
        margin: 6px;
    }

    iframe#youtube-video {
        width: 80%;
    }
}

@media (max-width: 871px) {
    .index-logo {
        width: 86%;
        margin: 20px;
    }

    section button {
        font-size: 16px;
        padding: 5px 12px 5px 12px;
        border-radius: 14px;
    }
}

.grid-div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(228px, 1fr));
    gap: 10px;
    padding: 40px 0 40px 0;
    max-width: 80%;
    margin: auto;
    border-radius: 8px;
}

.poster {
    color: #ffffff;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 228px;
    text-align: center;
    margin-bottom: 25px;
}

.poster:hover {
    transform: scale(1.08);
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.69)) brightness(1.2);
}

.poster a {
    background-color: transparent;
}

.poster p {
    margin: 0;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    text-align: center;
    max-width: 100%;
}

#fullscreen-btn {
    display: inline-block;
    vertical-align: middle;
    background: none;
    color: #858585;
    padding: 8px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    white-space: nowrap;
    margin-left: 2px;
}

#fullscreen-btn:hover {
    color: #ffffff;
}

.records-page {
    width: fit-content;
    padding-top: 47px;
    padding-bottom: 40px;
}

.album-text h1 {
    font-size: 36px;
    font-weight: 400;
    display: inline-block;
    vertical-align: middle;
}

.album-text h2 {
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    color: #858585;
}

.records-page img {
    display: inline-block;
    vertical-align: middle;
    width: 150px;
}

.album-info {
    text-wrap: nowrap;
    text-align: left;
}

.album-text {
    display: inline-block;
    vertical-align: middle;
    white-space: normal;
    padding-left: 20px;
}

.music-icons {
    size: 100px;
    padding-bottom: 40px;
}

.music-icons a {
    margin: 0 10px;
    font-size: 0;
    text-decoration: none;
    color: #c5c5c5;
}

.music-icons a:hover {
    color: #ffffff;
}

#dazifon-records-section {
    width: 100%;
    background-color: #161616;
}