/* -------------------- */
/* GLOBAL */
/* -------------------- */

@font-face {
    font-family: 'Bebas Kai';
    src: url('fonts/Bebas Kai.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;
}

/* -------------------- */
/* ABOUT CONTENT */
/* -------------------- */

.about-content {
    text-align: center;
    background-color: #fffafa;
}

.img-responsive {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 80px auto 80px;

    box-shadow: 0 0 20px rgba(16,16,16,0.6);

    border-radius: 0;
}

@media screen and (min-width: 1200px) {

    .img-responsive {
        border-radius: 20px;
    }

}

.about-text {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 60px;
}

.about-text p {
    font-family: 'decotech', sans-serif;
    font-size: 27px;
    line-height: 1.35;
    letter-spacing: 1px;
    font-weight: bold;
    color: #101010;
    text-align: center;
    margin: 0 0 18px 0;
}

.menu-link2 {
    display: inline-block;
    font-family: 'decotech', sans-serif;
    color: #101010;
    text-decoration: none;
    font-size: 250%;
    text-shadow: 2px 1px 4px #fffafa;
    padding-bottom: 20px;
    transition: opacity 0.15s ease;
}

.menu-link2:hover {
    color: #800000;
}

/* -------------------- */
/* 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;
    }

    .img-responsive {
        max-width: 100%;
        width: 100%;
        margin: 60px auto 60px;
    }

    .about-text {
        padding: 0 22px;
    }

    .about-text p {
        font-size: 1.25rem;
        line-height: 1.35;
    }

    .menu-link2 {
        font-size: 2rem;
    }

    .site-footer {
        flex-direction: column;
        gap: 8px;
    }

    .footer-social {
        width: 50px;
        height: 50px;
    }
}

/* -------------------- */
/* IMAGE PROTECTION */
/* -------------------- */

.protected-image {
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    pointer-events: auto;
}

.copyright-popup {
    position: fixed;
    z-index: 999999;

    background-color: #fffafa;
    color: #101010;

    padding: 12px 16px;
    border-radius: 6px;

    font-family: Arial, sans-serif;
    font-size: 0.85rem;
    line-height: 1.4;

    box-shadow: 0 0 18px rgba(0,0,0,0.35);

    pointer-events: none;

    opacity: 0;
    transform: translateY(6px);

    transition:
        opacity 0.18s ease,
        transform 0.18s ease;
}

.copyright-popup.is-visible {
    opacity: 1;
    transform: translateY(0);
}

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);
}