/* -------------------- */
/* 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: #101010;
    font-family: 'Bebas Kai', sans-serif;
}

html {
    scrollbar-width: thin;
    scrollbar-color: #101010 #fffafa;
}

/* -------------------- */
/* TABLES */
/* -------------------- */

table {
    width: 100%;
    border-collapse: collapse;
}

table td {
    padding: 0;
}

/* -------------------- */
/* HEADER */
/* -------------------- */

.header-table {
    background-color: #fffafa;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px #fffafa;
}

.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;
}

/* -------------------- */
/* MENU */
/* -------------------- */

.menu-link {
    color: #101010;
    text-decoration: none;
    font-size: clamp(1.6rem, 5vw, 4rem);
    text-shadow: 2px 1px 4px #101010;
    margin: 20px;
}

.menu-link:hover {
    color: #fffafa;
    text-decoration: none;
    text-shadow: 2px 1px 4px #101010;
}

/* -------------------- */
/* LEGAL CONTENT */
/* -------------------- */

.legal-content {
    min-height: 55vh;
    background-color: #101010;
    padding: 70px 20px 90px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    color: #fffafa;
}

.legal-container h1 {
    font-family: 'Decotech', sans-serif;
    text-align: center;
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: 2px;
    margin: 0 0 60px 0;
    color: #fffafa;
    text-shadow: 2px 1px 4px #fffafa;
}

.legal-container h2 {
    font-family: 'Bebas Kai', sans-serif;
    font-size: 2rem;
    letter-spacing: 1px;
    margin-top: 42px;
    margin-bottom: 14px;
    color: #fffafa;
}

.legal-container p {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #d0d0d0;
    margin: 0 0 22px 0;
}

/* -------------------- */
/* FOOTER */
/* -------------------- */

.site-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    text-align: center;

    color: #777;
    font-size: 0.9rem;

    margin-top: 40px;
    margin-bottom: 20px;
}

.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;
    }

    .menu-link {
        margin: 0 3px;
        font-size: 1.2rem;
        white-space: nowrap;
    }

    .legal-content {
        padding: 55px 22px 70px;
    }

    .legal-container h1 {
        font-size: 2rem;
        margin-bottom: 45px;
    }

    .legal-container h2 {
        font-size: 1.45rem;
        margin-top: 34px;
    }

    .legal-container p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .site-footer {
        flex-direction: column;
        gap: 8px;
    }
}

a,
img {
    -webkit-tap-highlight-color: transparent;
}

/* -------------------- */
/* SCROLLBAR */
/* -------------------- */

::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-track {
    background: #fffafa;
    border-radius: 14px;
    box-shadow: inset 0 0 6px rgba(0,0,0,.3);
}

::-webkit-scrollbar-thumb {
    background: #101010;
    border-radius: 14px;
    box-shadow: inset 0 0 6px rgba(255,255,255,.3);
}