/*  */
html, body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    color: cyan;
    background-color: rgb(31, 31, 31);
    scroll-behavior: smooth;
}
* {
    font-family: Arial, Verdana, sans-serif;
}




/* Fixed Logo */
.fixed-logo-container {
    transition: all 0s ease, background-color 0.3s ease;
    position: fixed;
    bottom: 5px;
    left: -10px;
    width: 100px;
    height: fit-content;
    display: flex;
    z-index: 9999;
    mix-blend-mode: difference;
}
.fixed-logo-container::after {
    content: "";
    color: black;
    position: absolute;
    bottom: 5px;
    left: -10px;
    width: 100px;
    height: 100px;
}
.fixed-logo {
    position: relative;
    width: 100%;
    height: auto;
}



/* Nav Header */
.app-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: rgb(0, 0, 20);
    color: cyan;
    z-index: 9000;
    box-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.nav-inner {
    max-width: 98%;
    margin: 0 auto;
    height: 100%;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    gap: 8px;
    position: relative;
}
.nav-brand {
    position: relative;
    color: cyan;
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-shadow: 0 0 12px rgba(0,251,255,0.25);
    white-space: nowrap;
    padding: 5px 12px;
}
.nav-inner .nav-brand::after {
    transition: all 0s ease, width 0.2s ease, opacity 0s linear 0.2s;
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    height: 1px;
    width: 0%;
    opacity: 0;
    pointer-events: none;
    background-color: white;
}
.nav-inner .nav-brand:hover::after {
    transition: all 0s ease, width 0.2s ease, opacity 0s linear;
    opacity: 1;
    width: 100%;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-links a {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 0.55rem;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.92rem;
    transition: color 0.15s, background 0.15s;
    position: relative;
    color: white;
}
.nav-links a::after {
    transition: all 0s ease, width 0.2s ease, opacity 0s linear 0.2s;
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    height: 1px;
    width: 0%;
    opacity: 0;
    pointer-events: none;
    background-color: white;
}
.nav-links a:hover::after {
    transition: all 0s ease, width 0.2s ease, opacity 0s linear;
    opacity: 1;
    width: 100%;
}



/* Sections */
.section-con {
    width: 100%;
    height: fit-content;
    color: cyan;
    background-color: rgb(22, 22, 22);
    padding: 1vh 0;
}
.section-con .section-title {
    width: 100%;
    text-align: center;
    font-size: 200%;
    font-weight: 800;
    cursor: default;
}
.section-title hr {
    width: 50%;
}
.section-con .section-content {
    padding-top: 3vh;
    width: 100%;
    height: fit-content;
    min-height: 100vh;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
.section-con.songs {
    padding-top: calc(2.5vh + 60px);
}



/* Songs */
.section-con.songs .song-item {
    margin: 1vh auto;
}
.song-item {
    width: fit-content;
    min-width: 20vw;
    max-width: 35vw;
    overflow: clip;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 12px;
    box-shadow: 0px 1px 2px rgba(59, 59, 59, 0.8);
}
.cover-con {
    width: fit-content;
    height: fit-content;
    min-height: 10vh;
}
.cover-con img {
    width: auto;
    height: auto;
    max-width: 35vw;
    max-height: 30vh;
    border-radius: 12px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.4);
}
.link-con {
    position: relative;
    width: 100%;
    height: fit-content;
    padding: 12px 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.link-con .song-link {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 0.55rem;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.92rem;
    transition: color 0.15s, background 0.15s;
    position: relative;
    color: white;
}
.link-con .song-link::after {
    transition: all 0s ease, width 0.2s ease, opacity 0s linear 0.2s;
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    height: 1px;
    width: 0%;
    opacity: 0;
    pointer-events: none;
    background-color: white;
}
.link-con .song-link:hover::after {
    transition: all 0s ease, width 0.2s ease, opacity 0s linear;
    opacity: 1;
    width: 100%;
}



/* Projects */
.section-con.projects .project-item, .section-con.socials .project-item {
    margin: 0 auto;
}
.project-item {
    width: fit-content;
    min-width: 20vw;
    max-width: 35vw;
    overflow: clip;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0px 1px 2px rgba(59, 59, 59, 0.8);
    padding: 10px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 12px;
    position: relative;
}
.project-preview {
    width: fit-content;
    height: fit-content;
    min-height: 10vh;
}
.project-preview img {
    width: auto;
    height: auto;
    max-width: 35vw;
    max-height: 30vh;
    border-radius: 12px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.4);
}
.project-title {
    width: 100%;
    height: fit-content;
    padding: 10px 0;
    text-align: center;
    font-size: 125%;
    cursor: default;
}
.project-desc {
    font-size: 100%;
    opacity: 0.75;
    color: rgb(0, 219, 219);
    cursor: default;
}
.project-link {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 0.55rem;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.92rem;
    transition: color 0.15s, background 0.15s;
    position: relative;
    color: white;
    margin-top: 5vh;
}
.project-item .project-link::after {
    transition: all 0s ease, width 0.2s ease, opacity 0s linear 0.2s;
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    height: 1px;
    width: 0%;
    opacity: 0;
    pointer-events: none;
    background-color: white;
}
.project-item .project-link:hover::after {
    transition: all 0s ease, width 0.2s ease, opacity 0s linear;
    opacity: 1;
    width: 100%;
}



/* Media Queries */
@media only screen and (max-width: 1000px) {
    .nav-links a span {
        display: none;
    }
}
@media only screen and (max-width: 1100px) {
    .link-con .song-link span {
        display: none;
    }
}