/* Reset CSS */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@font-face {
    font-family: "Gramatika";
    src: url("/assets/gramatika.woff") format(woff);
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Gramatika";
    src: url("/assets/gramatika-bold.woff") format(woff);
    font-weight: bold;
    font-style: normal;
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    font-family: "Gramatika", "Helvetica Neue", Helvetica, sans-serif;
    min-height: 100vh;
    position: relative;
    color: white;
    background-color: #ffffff;
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #000000;
    }
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    background-color: transparent;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.header-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

h1 {
    font-size: 24px;
    line-height: 1;
    letter-spacing: 4%;
}

.subtitle {
    font-size: 17px;
    letter-spacing: 4%;
}

.lang-switch {
    padding: 0.2rem 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 0.5rem;
    color: white;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
    display: inline-block;
}

.lang-switch:hover {
    background: rgba(255, 255, 255, 0.2);
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
}

.social-links {
    letter-spacing: 4%;
    display: flex;
    gap: 1.2rem;
    row-gap: 0.5rem;
    flex-wrap: wrap;
}

.social-links a {
    color: white;
    text-decoration: none;
    transition: color 0.2s;
}

.social-links a:hover {
    color: #ccc;
} 