/* -------------------- */
/* GLOBAL */
/* -------------------- */

@font-face {
    font-family: 'Bebas Kai';
    src: url('fonts/Bebas Kai.woff2') format('woff2');
    font-display: block;
}

@font-face {
    font-family: 'Decotech';
    src: url('fonts/DecoTech TL.woff2') format('woff2');
    font-display: block;
}

@font-face {
    font-family: 'Impact';
    src: url('fonts/Impact.woff2') format('woff2');
    font-display: block;
}

body {
    margin: 0;
    padding: 0;
    background-color: #fffafa;
    font-family: 'Bebas Kai', sans-serif;
}

html {
    scrollbar-width: thin;
    scrollbar-color: #fffafa #101010;
}

/* -------------------- */
/* TABLES */
/* -------------------- */

table {
    width: 100%;
    border-collapse: collapse;
}

table td {
    padding: 0;
}

/* -------------------- */
/* HEADER */
/* -------------------- */

.header-table {
    background-color: #101010;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px #101010;
}

.nav-table {
    width: 100%;
}

.nav-left {
    text-align: left;
    width: 20%;
}

.nav-center {
    text-align: center;
    width: 60%;
}

.nav-right {
    text-align: right;
    width: 20%;
}

.small-image {
    width: 156px;
    height: auto;
    display: block;
}

.small-image2 {
    width: 80px;
    height: auto;
    margin-right: 50px;
}

/* -------------------- */
/* MENU */
/* -------------------- */

.menu-link {
    color: #fffafa;
    text-decoration: none;
    font-size: clamp(1.6rem, 5vw, 4rem);
    text-shadow: 2px 1px 4px #fffafa;
    margin: 20px;
}

.menu-link:hover {
    color: #101010;
    text-decoration: none;
    text-shadow: 2px 1px 4px #fffafa;
}

/* -------------------- */
/* MUSIC CONTENT */
/* -------------------- */

.music-content {
    text-align: center;
    background-color: #fffafa;
}

.music-placeholder {
    margin: 80px 0 50px;
}

.music-icon {
    font-size: 4rem;
    color: #101010;
}

.music-dots {
    font-family: 'Decotech', sans-serif;
    color: #101010;
    font-size: 2rem;
    letter-spacing: 8px;
    margin-top: 10px;
}

.soundcloud-container {
    width: 90%;
    max-width: 900px;
    margin: 0 auto 80px;
}

/* -------------------- */
/* SOUNDCLOUD */
/* -------------------- */

.soundcloud-credit {
    font-size: 10px;
    color: #777;

    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;

    margin-top: 6px;

    font-family: Arial, sans-serif;
    font-weight: 100;
}

.soundcloud-credit a {
    color: #777;
    text-decoration: none;
}

.soundcloud-credit a:hover {
    color: #101010;
}

/* -------------------- */
/* FOOTER */
/* -------------------- */

.site-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;

    text-align: center;
    color: #777;
    font-size: 0.9rem;

    margin-top: 40px;
    margin-bottom: 20px;
}

.footer-social {
    width: 50px;
    height: 50px;
    object-fit: contain;
    vertical-align: middle;
    opacity: 0.9;
}

.legal-link {
    color: inherit;
    text-decoration: none;
    opacity: 0.75;

    transition: opacity 0.2s ease;
}

.legal-link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* -------------------- */
/* MOBILE */
/* -------------------- */

@media screen and (max-width: 768px) {

    .nav-table tr {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-left,
    .nav-center,
    .nav-right {
        width: auto;
    }

    .small-image {
        width: 90px;
    }

    .small-image2 {
        width: 50px;
        margin-right: 10px;
    }

    .menu-link {
        margin: 0 6px;
    }

    .music-placeholder {
        margin: 60px 0 40px;
    }

    .music-icon {
        font-size: 3rem;
    }

    .music-dots {
        font-size: 1.6rem;
    }

    .soundcloud-container {
        width: 92%;
        margin: 0 auto 60px;
    }

    .site-footer {
        flex-direction: column;
        gap: 8px;
    }

    .footer-social {
        width: 50px;
        height: 50px;
    }
}

a,
img {
    -webkit-tap-highlight-color: transparent;
}

/* -------------------- */
/* SCROLLBAR */
/* -------------------- */

::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-track {
    background: #101010;
    border-radius: 14px;
    box-shadow: inset 0 0 6px rgba(0,0,0,.3);
}

::-webkit-scrollbar-thumb {
    background: #fffafa;
    border-radius: 14px;
    box-shadow: inset 0 0 6px rgba(255,255,255,.3);
}