/**
* Template base: Maundy
* Template URL: https://bootstrapmade.com/maundy-free-coming-soon-bootstrap-theme/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

:root {
  --default-font: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --heading-font: "Cormorant Garamond", Georgia, serif;
  --background-color: #071018;
  --default-color: #edf2f7;
  --heading-color: #f8fafc;
  --accent-color: #f3d08e;
  --accent-soft: #e8c17a;
  --surface-color: rgba(9, 17, 26, 0.72);
  --line-color: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--default-color);
  font-family: var(--default-font);
  background:
    radial-gradient(circle at top center, rgba(243, 208, 142, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(4, 8, 13, 0.42), rgba(4, 8, 13, 0.78)),
    url(../img/bg.jpg) center center / cover no-repeat fixed;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 7, 12, 0.45), rgba(3, 7, 12, 0.88)),
    radial-gradient(circle at 50% 24%, rgba(243, 208, 142, 0.09), transparent 34%);
  z-index: 0;
}

a {
  color: rgba(248, 250, 252, 0.72);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: rgba(248, 250, 252, 0.96);
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.hero-shell {
  width: min(980px, 100%);
  display: grid;
  gap: 34px;
  padding: 42px 34px 28px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(10, 19, 29, 0.56), rgba(7, 14, 22, 0.8));
  border: 1px solid var(--line-color);
  backdrop-filter: blur(18px);
  box-shadow: 0 34px 100px rgba(2, 5, 9, 0.42);
}

.brand-block {
  text-align: center;
}

.brand-kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent-color);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.brand-block h1 {
  margin: 0;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: clamp(56px, 10vw, 110px);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.brand-block p {
  margin: 18px 0 0;
  color: rgba(248, 250, 252, 0.78);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.countdown-card {
  padding: 0;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.count-card {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 12px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(7, 14, 22, 0.82);
  text-align: center;
}

.count-value {
  display: block;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
}

.count-label {
  margin-top: 14px;
  color: rgba(248, 250, 252, 0.5);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(248, 250, 252, 0.46);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.divider {
  color: rgba(248, 250, 252, 0.22);
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: #071018;
  transition: all 0.5s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 26px);
  left: calc(50% - 26px);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 4px solid rgba(243, 208, 142, 0.18);
  border-top-color: var(--accent-color);
  border-right-color: var(--accent-soft);
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

@media (max-width: 899px) {
  .countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .count-card {
    min-height: 150px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 20px;
  }

  .hero-shell {
    padding: 30px 20px 22px;
    border-radius: 26px;
    gap: 24px;
  }

  .brand-block h1 {
    font-size: clamp(46px, 18vw, 72px);
  }

  .brand-block p {
    margin-top: 14px;
    font-size: 18px;
  }

  .countdown {
    gap: 12px;
  }

  .count-card {
    min-height: 132px;
    border-radius: 20px;
  }

  .count-label {
    font-size: 10px;
  }

  .footer-note {
    gap: 8px;
    font-size: 11px;
  }
}
