@font-face {
  font-family: "Chary";
  src: url("dist/fonts/Chary-TitleBold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cera Pro";
  src: url("dist/fonts/Cera Pro Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cera Pro";
  src: url("dist/fonts/Cera Pro Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #000000;
  --fg: #ffffff;
  --accent: #cc0099;
  --content-width: 58%;
  --content-offset: 20%;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Cera Pro", sans-serif;
  overflow-x: hidden;
}

body {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 0 0;
}

.logo {
  height: 72px;
  width: auto;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-btn {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.2s ease;
  line-height: 0;
}

.lang-btn img {
  display: block;
  height: 20px;
  width: auto;
}

.lang-btn.active {
  opacity: 1;
}

.lang-btn:hover {
  opacity: 0.75;
}

.lang-btn.active:hover {
  opacity: 1;
}

.content {
  position: relative;
  z-index: 1;
  /* width: var(--content-width); */
  padding: 40px 80px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content h1 {
  font-family: "Chary", serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.3;
  margin: 0 0 40px;
  white-space: pre-line;
}

.content p {
  font-family: "Cera Pro", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  margin: 0 0 28px;
  white-space: pre-line;
}

.content p.bold {
  font-weight: 700;
  margin-top: 60px;
  margin-bottom: 0;
}

.footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 50px 0;
  gap: 20px;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-contact .seal {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.contact-text a {
  margin: 0;
  font-size: 15px;
  display: block;
  line-height: 1.5;
  color: var(--fg);
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--fg);
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
}

.footer-links a img {
  height: 30px;
  width: auto;
}

.footer-links a:hover {
  /* color: var(--accent); */
}

/* Mobile */
@media (max-width: 600px) {
  .header {
    padding: 24px 24px 0;
  }

  .logo {
    height: 52px;
  }

  .content {
    width: 100%;
    margin-left: 0;
    padding: 40px 24px 80px;
  }

  .content h1 {
    font-size: 24px;
    margin-bottom: 28px;
  }

  .content p {
    font-size: 15px;
    margin-bottom: 22px;
  }

  .content p.bold {
    margin-top: 36px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 24px 32px;
    gap: 48px;
  }

  .footer-links {
    align-items: flex-end;
    order: 1;
    width: 100%;
  }
  .footer-links a{
    font-size: 14px;
  }

  .footer-contact {
    order: 2;
  }
}
