@font-face {
    font-family: "KG Second Chances Sketch";
    src: url("/fonts/kg_second_chances/KGSecondChancesSketch.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: "KG Second Chances Solid";
    src: url("/fonts/kg_second_chances/KGSecondChancesSolid.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: "Garet";
    src: url("/fonts/Normale.teskt/Garet-Book.ttf") format("truetype");
    font-style: normal;
    font-weight: 300;
}

@font-face {
    font-family: "Garet";
    src: url("/fonts/Dikgedrukte.tekst/Garet-Heavy.otf") format("opentype");
    font-style: normal;
    font-weight: 800;
}

html,
body {
    height: 100%;
    margin: 0;
    overflow-x: hidden;
    cursor: url("/media/cursor2x-72.png") 18 18, auto;
}

.navbar {
    position: fixed;
    top: 8px;
    left: 0;
    right: 0;
    width: calc(100% - 32px);
    margin: 0 16px;
    box-sizing: border-box;
    background-color: transparent;
    padding: 0 28px;
    z-index: 30;
    color: #fbde9c;
}

.logo a,
.nav-links a {
    color: #fbde9c;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.logo a {
    font-family: "KG Second Chances Solid", "Garet", Arial, sans-serif;
    font-weight: 400;
}

.nav-links a {
    font-family: "KG Second Chances Sketch", "Garet", Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 0;
}

.nav-links a.is-active,
.logo a.is-active {
    font-family: "KG Second Chances Solid", "Garet", Arial, sans-serif;
}

.burger span {
    background-color: #fbde9c;
}

.burger {
    color: #fbde9c;
}

a,
button,
.burger {
    cursor: url("/media/cursor2x-72.png") 18 18, pointer;
}

.container_one {
    min-height: 100vh;
    min-height: 100svh;
    width: 100%;
    background-image: linear-gradient(rgba(8, 10, 24, 0.3), rgba(8, 10, 24, 0.3)), url("/media/girlwithpearl.jpg");
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    color: #fbde9c;
    text-align: center;
    padding: 90px 20px 30px;
    box-sizing: border-box;
}

.welcome_text {
    font-size: clamp(72px, 12vw, 140px);
    line-height: 1;
    font-weight: 400;
    margin: 0;
    margin-top: 20px;
    font-family: "KG Second Chances Sketch", "Garet", "Arial Black", Arial, sans-serif;
    letter-spacing: 0;
    word-spacing: 6px;
    -webkit-text-stroke: 1.2px #f2c874;
    text-shadow:
        0 0 0 #f2c874,
        1px 1px 0 rgba(26, 18, 10, 0.35);
}

.welcome_text_fill {
    font-family: "KG Second Chances Solid", "Garet", Arial, sans-serif;
    font-weight: 400;
    color: #f2c874;
    -webkit-text-stroke: 0;
    text-shadow: 1px 1px 0 rgba(26, 18, 10, 0.35);
    word-spacing: 0;
}

.container_one h3 {
    max-width: 720px;
    font-family: "Garet", Arial, sans-serif;
    font-size: 36px;
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: 0;
    margin: 18px 0 0;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar {
        position: fixed;
        top: 6px;
        left: 0;
        right: 0;
        width: calc(100% - 20px);
        margin: 0 10px;
        padding: 0 14px;
        background-color: transparent;
    }

    .logo a,
    .nav-links a {
        text-shadow: none;
    }

    .burger {
        display: flex;
        position: relative;
        z-index: 60;
    }

    .nav-links {
        width: min(70vw, 360px);
        background-color: #080a18;
        border-right: 1px solid rgba(251, 222, 156, 0.35);
        border-radius: 0;
    }

    .nav-links.mobile {
        background-color: #080a18;
    }

    .container_one {
        min-height: 100vh;
        min-height: 100svh;
        padding: 30px 15px;
    }

    .welcome_text {
        font-size: 3rem;
    }

    .container_one h3 {
        font-size: 24px;
        font-weight: 300;
    }
}

