@font-face {
    font-family: 'Volya';
    src:
        url("fonts/volya/Volya-Regular.woff2") format("woff2"),
        url("fonts/volya/Volya-Regular.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SuperNotoriousTordue';
    src: url("fonts/SuperNotoriousTordue.otf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Wavy';
    src: url("fonts/wavy.otf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Propagandist';
    src: url("fonts/Vintage-Propagandist.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

.font-volya {
    font-family: 'Volya', sans-serif;
    font-size: 18px;
}

html, body {
    height: 100%;
    margin: 0;
    cursor: none;
    background-color: #1a1a1a;
    color: white;
}


/* Layout */
header {
    display: flex;
    align-items: flex-start;
    padding: 20px;
}

.header-content {
    display: flex;
    align-items: flex-start;
}

/* Left side (title + menu) */
.header-left {
    min-width: 200px;
}

/* Title */
.site-title {
    margin: 0 0 10px 0;
    font-size: 36px;
    font-family: 'SuperNotoriousTordue', sans-serif;
}

.site-title a {
    color: white;
    text-decoration: none;
    transition: text-shadow 0.3s ease, color 0.3s ease;
}

/* Menu styling */
.main-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-menu li {
    margin-bottom: 8px;
}

.main-menu a {
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-family: 'Wavy', sans-serif;
    transition: text-shadow 0.3s ease, color 0.3s ease;
}

/* Reusable hover + transition class */
.link-shadow {
    transition: text-shadow 0.3s ease, color 0.3s ease;
}

.link-shadow:hover {
    color: #ffcc00;
    text-shadow:
        3px 3px 6px #ffcc00,
        0 0 6px #ffcc00;
}

/* Right side text */
.header-right {
    margin-left: 40px;
    max-width: 700px;
    font-family: 'Propagandist', sans-serif;
}

.header-right p {
    font-size: 18px;
    line-height: 1.5;
    transform: translateY(1.3em);
}

/* ===== Mobile layout ===== */
@media (max-width: 768px) {
    body {
        display: flex;
        flex-direction: column;
    }

    header {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 10px 0px 10px;
    }

    .main-menu ul {
        display: flex;
        justify-content: space-around;
        gap: 20px;
        margin-bottom: 10px;
        width: 100%;
        padding: 0;
    }

    .main-menu li {
        margin-bottom: 0;
        flex: 1;
        text-align: center;
    }

    .main-menu a {
        display: block;
        padding: 10px 0;
    }

    .header-right {
        margin-left: 0;
        margin-top: -30px;
        padding-left: 0;
        max-width: 100%;
    }

    .header-right p {
        font-size: 18px;
        line-height: 1.5;
    }
}

/* Custom cursor */
#custom-cursor {
    cursor: url("cursor/cursor-holy-pixel.png") 16 16, auto;
    position: fixed;
    top: 0;
    left: 0;
    width: 115px;
    height: 249px;
    pointer-events: none;
    transform: translate(-50%, -30%);
    transition: transform 0.5s ease;
    z-index: 9999;
}

#custom-cursor.shrink {
    transform: translate(-50%, -30%) scale(0.7);
}

/* External links */
a.external-link {
    color: #ffcc00;
    text-decoration: none;
    transition: text-shadow 0.3s ease, color 0.3s ease;
}

a.external-link:visited {
    color: #ffcc00;
}

a.external-link:hover {
    color: #ff6600;
    text-shadow:
        3px 3px 6px #ff6600,
        0 0 6px #ff6600;
}