@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
  --gold: #e8b85b;
  --gold-light: #f6d27d;
  --white: #fff;
  --glass: rgba(15, 12, 8, 0.38);
  --border: rgba(246, 210, 125, 0.42);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Cairo", sans-serif;
  background: #111;
  color: var(--white);
}

.coming-soon {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  background:
    url("background.jpg") center center / cover no-repeat;
}

.overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0,0,0,.58), rgba(0,0,0,.18) 48%, rgba(0,0,0,.55)),
    linear-gradient(180deg, rgba(5,5,8,.48), rgba(5,5,8,.15) 45%, rgba(5,5,8,.7));
}

.content {
  width: min(1000px, 92vw);
  padding: 70px 20px 45px;
  text-align: center;
  direction: ltr;
}

.eyebrow {
  margin-bottom: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(12px, 1.35vw, 18px);
  font-weight: 500;
  letter-spacing: .48em;
  text-indent: .48em;
  color: rgba(255,255,255,.94);
}

h1 {
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 22px;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(54px, 8vw, 112px);
  line-height: .98;
  font-weight: 800;
  letter-spacing: -.045em;
  text-shadow: 0 5px 28px rgba(0,0,0,.45);
}

h1 span {
  color: #fff;
}

h1 .gold {
  color: var(--gold-light);
}

.divider {
  width: min(390px, 80%);
  margin: 24px auto 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.divider span:not(.palm) {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.divider span:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.palm {
  color: var(--gold-light);
  font-size: 26px;
  line-height: 1;
  transform: rotate(180deg);
}

h2 {
  margin: 0;
  font-size: clamp(25px, 3vw, 39px);
  line-height: 1.4;
  font-weight: 600;
}

.subtitle {
  margin: 3px 0 25px;
  color: rgba(255,255,255,.84);
  font-size: clamp(14px, 1.5vw, 19px);
  font-weight: 400;
}

.countdown {
  direction: ltr;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0 auto 58px;
}

.time-box {
  width: 128px;
  min-height: 118px;
  padding: 13px 10px 9px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.27);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(20,18,14,.55), rgba(5,5,5,.28));
  box-shadow: inset 0 0 25px rgba(255,205,110,.035), 0 8px 25px rgba(0,0,0,.18);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.time-box strong {
  font-family: "Montserrat", sans-serif;
  font-size: 47px;
  line-height: 1;
  font-weight: 700;
}

.time-box span {
  margin-top: 8px;
  direction: rtl;
  color: rgba(255,255,255,.88);
  font-size: 15px;
  line-height: 1.2;
}

.socials {
  direction: ltr;
  display: flex;
  justify-content: center;
  gap: 23px;
  margin-bottom: 20px;
}

.social {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  color: #fff;
  transition: .25s ease;
}

.social svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.5;
}

.social:hover {
  color: var(--gold-light);
  background: rgba(232,184,91,.13);
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(232,184,91,.2);
}

.follow {
  direction: rtl;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  color: rgba(255,255,255,.94);
}

.follow span {
  width: 47px;
  height: 1px;
  background: var(--gold);
}

.follow p {
  margin: 0;
  font-size: 17px;
  font-weight: 500;
}

@media (max-width: 700px) {
  .content {
    padding: 45px 12px 28px;
  }

  .eyebrow {
    letter-spacing: .28em;
    text-indent: .28em;
  }

  h1 {
    gap: 8px 14px;
  }

  .countdown {
    gap: 8px;
    margin-bottom: 40px;
  }

  .time-box {
    width: min(22vw, 105px);
    min-height: 98px;
    padding: 10px 5px;
  }

  .time-box strong {
    font-size: clamp(29px, 8vw, 42px);
  }

  .time-box span {
    font-size: 12px;
  }

  .social {
    width: 43px;
    height: 43px;
  }

  .follow {
    gap: 12px;
  }

  .follow p {
    font-size: 14px;
  }
}

@media (max-width: 430px) {
  .coming-soon {
    background-position: 52% center;
  }

  .content {
    width: 96vw;
  }

  .subtitle {
    margin-bottom: 18px;
  }

  .divider {
    margin-top: 18px;
  }

  .countdown {
    gap: 5px;
  }

  .time-box {
    width: 23vw;
    min-height: 85px;
    border-radius: 10px;
  }

  .time-box strong {
    font-size: 27px;
  }

  .time-box span {
    margin-top: 5px;
    font-size: 10px;
  }
}

@media (max-height: 760px) and (min-width: 701px) {
  .content {
    padding-top: 25px;
    padding-bottom: 20px;
    transform: scale(.88);
  }
}
