/* -------------------- */
/* 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;
}

/* -------------------- */
/* 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;
}

/* -------------------- */
/* SOCIAL CONTENT */
/* -------------------- */

.social-content {
    min-height: 55vh;
    background-color: #fffafa;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 80px 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-block;
    text-decoration: none;
}

.social-icon {
    width: clamp(80px, 10vw, 140px);
    height: auto;
    display: block;

    transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-link:hover .social-icon {
    transform: scale(1.06);
    opacity: 0.85;
}

/* -------------------- */
/* FOOTER */
/* -------------------- */

.site-footer {
    display: flex;
    justify-content: center;
    align-items: center;

    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;
    }

    .small-image2 {
        width: 50px;
        margin-right: 10px;
    }

	.menu-link {
		margin: 0 3px;
		font-size: 1.2rem;
		white-space: nowrap;
	}

    .social-content {
        min-height: auto;
        padding: 60px 20px;
    }

    .social-icons {
        flex-direction: column;
        gap: 35px;
    }

    .social-icon {
		width: min(20vw, 80px);
	}


    .site-footer {
        flex-direction: column;
        gap: 8px;
    }
}

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);
}