@font-face { font-family: 'Jetbrains Mono'; src: url('../font/JetBrainsMono-Regular.ttf'); }

body {
    margin: 0;
    background-color: #000;
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    line-height: 1.6;
}

@keyframes gradientDrift {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

#lang-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
    font-weight: bold;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1em;
    user-select: none;
}

#lang-switcher a {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    font-size: 1em;
    padding: 0 4px;
    font-family: 'JetBrains Mono', monospace;
}

#lang-switcher a:hover {
    text-decoration: underline;
}

#bgCanvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(135deg, #000, #080808);
    background-size: 200% 200%;
    animation: gradientDrift 30s linear infinite;
}

a {
    color: #fff;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    text-align: center;
    padding: 60px 20px;
}
header img#logo {
    width: 150px;
    height: auto;
    display: block;
    margin: 0 auto;
}
header h1 {
    font-size: 2.5em;
    margin-top: 20px;
    margin-bottom: 0;
    letter-spacing: 0.05em;
}

section {
    text-align: center;
    padding: 50px 20px;
}
section h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

ul.services {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 600px;
    text-align: left;
}
ul.services li {
    margin: 10px 0;
    position: relative;
    padding-left: 1em;
}
ul.services li::before {
    content: "-";
    position: absolute;
    left: 0;
    color: #fff;
}

#about p {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

#contact a {
    color: white;
    text-decoration:underline;
}

footer {
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9em;
    color: #777;
}

.cta-button {
  display: inline-block;
  background: #fff;
  color: #000;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}
.cta-button:hover {
  background: #222;
  color: #fff;
}

@media (max-width: 600px) {
    header h1 { font-size: 2em; }
    section { padding: 30px 15px; }
}