@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/Manrope-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Vazirmatn";
  src: url("/assets/fonts/Vazirmatn-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: block;
}

:root {
  --bg: #fafaf8;
  --text: #151515;
  --gold: #b89b5e;
  --navy: #1e2430;
}

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

html,
body {
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Vazirmatn", sans-serif;
}
main {
  flex: 1;
  flex-direction: column;
}
.hero {
  width: 100%;
  max-width: 900px;
  padding: 2rem;
  text-align: center;
}

.logo-wrap {
  display: flex;
  justify-content: center;
}

.logo-wrap img {
  display: block;
  width: min(140px, 40vw);
  height: auto;
}

.persian {
  margin-top: 3rem;
  font-family: "Vazirmatn", sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
}

.rotator {
  margin-top: 2rem;
  height: 2rem;

  font-family: "Vazirmatn", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;

  color: var(--gold);
}

.fade {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.show {
  opacity: 1;
  transform: translateY(0);
}
footer {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: min(100vw, 100%);
  text-align: center;
  padding: 1rem;
  background: var(--navy);
  color: var(--bg);
  font-size: 0.6rem;
  font-weight: 100;
}

.footer-page-link {
  color: var(--bg);
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 20%;
  padding: 10px;
}
@media (max-width: 768px) {
  .logo-wrap img {
    width: min(120px, 35vw);
  }

  .persian {
    margin-top: 2rem;
  }

  .rotator {
    margin-top: 1.5rem;
  }
}

tgju {
  margin-top: min(50px, 3rem);
}
.tgju-copyright-fix {
  scale: 0;
}
.tgju-copyright {
  scale: 0;
}
.tgju-copyright-mod {
  margin-top: 1.5rem;
  font-size: 0.5rem;
  color: var(--text);
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 30%;
}
.tgju-copyright-mod a {
  color: var(--text);
  text-decoration: none;
}
