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

:root {
  --brand-blue: #1c3462;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background-color: #c2e7da;
  background-image: url("../../coast-texture.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.coming-soon {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(0.3rem, 1.2vh, 0.75rem);
  padding: 2rem;
  text-align: center;
}

.coming-soon__logo {
  width: clamp(9rem, 18vw, 14rem);
  aspect-ratio: 1;
  flex: 0 0 auto;
  background-color: var(--brand-blue);
  -webkit-mask: url("../images/white-logo@4x.png") center / contain no-repeat;
  mask: url("../images/white-logo@4x.png") center / contain no-repeat;
}

.coming-soon__title {
  margin: -0.5rem 0 0;
  color: var(--brand-blue);
  font-family: "Arabic", Tahoma, Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .coming-soon {
    gap: 2.5rem;
  }

  .coming-soon__logo {
    width: clamp(8.5rem, 13vw, 11.5rem);
  }

  .coming-soon__title {
    margin-top: 0;
  }
}

@media (max-width: 767.98px) {
  body {
    background-position: 42% center;
  }

  .coming-soon {
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .coming-soon__title {
    margin-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
