body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #000000;
  font-family: 'Golos Text', sans-serif;
}

h1, h2, h3, h4, h5, h6, p {
  font-optical-sizing: auto;
  font-weight: 200;
  font-size: 12px;
  font-style: normal;
  text-align: center;
  color: #ffffff;
}

h1 {
  font-family: 'Handjet', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 20vw, 98px);
  line-height: 0.9;
  align-self: flex-start;
  text-align: left;
  margin-top: -20px;
}

h2 {
  font-family: 'Handjet', sans-serif;
  font-weight: 400;
  font-size: clamp(13px, 3vw, 36px);
  align-self: flex-start;
  opacity: 0.8;
  margin-bottom: 30px;
}

h3 {
  font-size: 18px;
}

nav {
  align-self: flex-start;
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

nav a {
  color: #ffffff;
  opacity: 0.9;
  text-decoration: none;
}

nav a:hover {
  opacity: 1;
  text-decoration: underline;  
}

.lang-toggle {
  background: none;
  border: none;
  padding: 0;
  color: #ffffff;
  opacity: 0.9;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}

.lang-toggle:hover {
  opacity: 1;
  text-decoration: underline;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-switcher button {
  background: none;
  border: none;
  padding: 0;
  color: #ffffff;
  opacity: 0.5;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}

.lang-switcher button:hover {
  opacity: 0.8;
}

.lang-switcher button.lang-active {
  opacity: 1;
  text-decoration: underline;
}

.lang-divider {
  color: #ffffff;
  opacity: 0.3;
}

.container {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  margin-left: 10%;
  gap: 40px;
}

.title {
  display: flex;
  flex-direction: column;
}

.title h2 {
  font-size: 36px;
}

.description-grid {
  transform: translateY(-40px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  white-space: nowrap;
  text-align: left;
  width: fit-content;
}

.description-grid div {
  text-align: left;
  margin-right: clamp(0px, 0.5vw, 8px);
}

.description-grid h2 {
  color: #d2b040;
  margin: 0;
  text-align: left;
}

.description-grid div:nth-child(2) h2 {
  font-size: clamp(90px, 15vw, 215px);
  line-height: 0.5;
  transform: translateX(clamp(-2px, 10vw, -15px));
  font-weight: 700;
  opacity: 0.1;
  color: #000000;
  text-shadow: 
    -2px 0 0 #edd478,
    2px 0 0 #edd478,
    0 -2px 0 #edd478,
    0 2px 0 #edd478;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 100px;
  gap: 10px;
  padding: 20px 0;
}

.footer-main {
  margin: 0;
  text-align: center;
}

.footer-info {
  opacity: 0.4;
  line-height: 1.5;
  max-width: 700px;
  font-size: 10px;
  text-align: center;
}
