/* =====================================
   General
===================================== */
body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
}

/* =====================================
   Loader
===================================== */
.logo-loader {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.logo-loader .ring {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid transparent;
  border-top-color: #c2c6cc;
  border-right-color: #2fd3c5;
  animation: spin 1.6s linear infinite;
}

.logo-loader .logo-text {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -2px;
}

.logo-loader .logo-text .j {
  color: #2fd3c5;
}

.logo-loader .logo-text .z {
  color: #c2c6cc;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* =====================================
   Page Layout
===================================== */
.page-section {
  position: relative;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
}

.water-bg {
  position: absolute;
  inset: 0;
}

.content-detail {
  position: relative;
  z-index: 2;
  height: 100vh;
  max-width: 450px;
  margin: auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.content-detail .logo img {
  max-width: 200px;
  margin-bottom: 20px;
}

.sub-title {
  color: #fff;
  font-size: 28px;
  font-weight: 600;
}

/* =====================================
   Utilities
===================================== */
.hidden {
  display: none;
}

/* =====================================
   Responsive
===================================== */
@media (max-width: 575px) {
  .logo-loader .ring {
    width: 90px;
    height: 90px;
  }

  .logo-loader .logo-text {
    font-size: 28px;
  }

  .sub-title {
    font-size: 22px;
  }
}
