@font-face {
    font-family: "Golos";
    src: url("../media/Golos/GolosText-Bold.ttf");
    font-weight: 700;
}

@font-face {
    font-family: "Golos";
    src: url("../media/Golos/GolosText-Regular.ttf");
    font-weight: 400;
}

:root {
    --bg-color: white;
    --text-color: #010f1c;
    --footer-bg-color: #d7eaf5;

    --font-size-larger: 65px;
    --font-size-large: 30px;
    --font-size: 20px;
    --font-size-small: 13px;
}

html {
    background-color: var(--footer-bg-color);
    font-family: "Golos", sans-serif;
    font-size: var(--font-size);
}

a {
    color: var(--text-color);
    text-decoration: none;
    border-bottom: var(--text-color) 1px solid;
    padding-bottom: 2px;
}

.navbar {
    height: 30px;
    padding: 10px;
    padding-left: 50px;
    padding-right: 80px;
    filter: drop-shadow(0px 0px 2px #000000);
    background-color: var(--bg-color);

    display: flex;
    align-items: center;

    position: sticky;
    top: 0;
    z-index: 1;
}

.nb-right-nav a {
    /* vertical-align: bottom; */
    align-self: flex-end;

}

.nb-logo-image {
    background-image: url(/media/icon.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 40px;
    height: 100%;
}

.nb-space {
    flex-grow: 1;
}

.nb-logo-container {
    height: 100%;
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-right: 20px;

}

.nb-logo-container img {
    height: 100%;
}

.nb-logo-title {
    font-size: var(--font-size);
    color: var(--text-color);
}

.nb-logo-title a {
    border: none;
}

.nb-right-nav {
    display: flex;
    column-gap: 20px;
    font-size: var(--font-size-small);
}

.banner-container {
    height: 500px;
    background-image: url("/media/img/paints.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-left: 200px;

    display: flex;
    /* align-items: center; */
    justify-content: center;
    flex-direction: column;
}

.banner-text-container {}

.banner-text {
    color: var(--bg-color);
    font-size: 100px;
    text-shadow: 0px 0px 10px #000000F0;
}

.page-content-container {
    background-color: var(--bg-color);
    height: 100%;
    filter: drop-shadow(0px 0px 2px #000000);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.page-content {
    max-width: 1200px;
    min-width: 600px;
    margin-top: 100px;
    margin-left: 200px;
    margin-right: 200px;
    margin-bottom: 100px;
    display: flex;
    justify-content: left;
    flex-direction: column;
    row-gap: 30px;
}

.highlight-grid-container {
    display: flex;
    flex-wrap: wrap;

    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    row-gap: 30px;
}

.highlight-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 10px;
    min-width: 35%;
}

.highlight-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover; 
    object-position: 0 0px;
}

.footer {
    height: 200px;
    background-color: var(--footer-bg-color);

    display: flex;
    flex-direction: column;
    row-gap: 20px;
    align-items: center;
    justify-content: center;
}

.ftr-big-text {
    font-size: var(--font-size-large);
}

.footer p {
    font-size: var(--font-size-small);
}

h1 {
    font-size: var(--font-size-larger);
    font-weight: 700;
    color: var(--bg-color);
    background-color: var(--text-color);
    width: fit-content;
    margin-bottom: 15px;
}

h2 {
    font-size: var(--font-size-large);
    font-weight: bold;
}

p {
    font-size: var(--font-size);
    line-height: 1.5;
}

b {
    font-weight: bold;
}

i {
    font-style: italic;
}

sub {
    font-size: small;
}

.iframe-container {
    /* max-width: 80%; */
    width: 100%;
    aspect-ratio: 16 / 9;
}

iframe {
    width: 100%;
    height: 100%;
    /* aspect-ratio: 16 / 9; */
}

blockquote {
    /* From p */
    font-size: var(--font-size);
    line-height: 1.25;

    padding-left: 25px;
    border-left: 15px solid rgba(0, 0, 0, 0.3);
}

ul {
    list-style-type: disc;
    padding-left: 20px;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .nb-logo-container {
        display: none;
    }

    .nb-right-nav {
        width: 100%;
        justify-content: center;
    }

    .navbar {
        padding-right: 50px;
    }

    .banner-container {
        padding-left: 0;

        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;

        background-position: 70% 50%;
    }

    .banner-text {
        text-align: center;
        font-size: 70px;
    }

    .page-content {
        margin-left: 40px;
        margin-right: 40px;
        min-width: 0px;
    }
}