/* -------------------- */
/* 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: #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;
}

.small-image2 {
    width: 80px;
    height: auto;
    margin-right: 50px;
}

/* -------------------- */
/* 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;
}

/* -------------------- */
/* CONTACT CONTENT */
/* -------------------- */

.contact-content {
    background-color: #101010;
    text-align: center;
}

/* -------------------- */
/* CONTACT IMAGE */
/* -------------------- */

.img-responsive {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    margin: 35px auto 25px;
}

/* -------------------- */
/* CONTACT INTRO */
/* -------------------- */

.contact-intro {
    max-width: 1100px;
    margin: 0 auto 50px;
    padding: 0 60px;
    text-align: center;
}

.contact-intro p {
    font-family: 'decotech', sans-serif;
    font-size: 23px;
    line-height: 1.35;
    letter-spacing: 1px;
    font-weight: bold;
    color: #fffafa;
    margin: 0 0 18px 0;
}

.contact-intro p:first-child {
    font-size: 28px;
}

/* -------------------- */
/* FORM CONTAINER */
/* -------------------- */

.container {
    width: 50%;
    max-width: 900px;
    min-width: 500px;

    margin: 0 auto;
    padding: 60px;

    border-radius: 30px;
    background-color: #101010;
    box-shadow: 0 0 20px rgba(255,250,250,0.6);
}

/* -------------------- */
/* FORM */
/* -------------------- */

form {
    text-align: left;
}

label {
    display: block;
    color: #fffafa;
    font-size: 1.4rem;
    text-align: left;
    margin-top: 18px;
    margin-bottom: 8px;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 14px;

    border: 3px solid #fffafa;
    border-radius: 30px;

    background-color: #101010;
    color: #fffafa;

    box-sizing: border-box;

    font-size: 1rem;
    font-family: Arial, sans-serif;
}

textarea {
    min-height: 220px;
    resize: vertical;
}

input[type="submit"] {
    display: block;
    margin: 25px auto 0;

    background-color: #fffafa;
    color: #101010;

    border: none;
    border-radius: 30px;

    padding: 13px 30px;

    cursor: pointer;

    font-family: 'Bebas Kai', sans-serif;
    font-size: 1.4rem;
}

input[type="submit"]:hover {
    background-color: #800000;
    color: #fffafa;
}

/* -------------------- */
/* 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 4px;
		font-size: 1.35rem;
		white-space: nowrap;
	}

	.img-responsive {
		width: 80%;
		max-width: 260px;
		height: auto;
		margin: 35px auto 25px;
	}

    .contact-intro {
        padding: 0 22px;
        margin: 0 auto 60px;
    }

    .contact-intro p {
        font-size: 1.15rem;
        line-height: 1.35;
    }

    .contact-intro p:first-child {
        font-size: 1.35rem;
    }

    .container {
        width: auto;
        min-width: 0;

        padding: 25px 20px;

        border-radius: 22px;
    }

    label {
        font-size: 1.2rem;
        text-align: left;
    }

    .site-footer {
        flex-direction: column;
        gap: 8px;
    }
}

.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: #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);
}