/* ========================================
   Fonts
   ======================================== */

/* montserrat-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/montserrat-400.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/montserrat-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* ========================================
   Variables
   ======================================== */

:root {
  --color-white: #ffffff;
  --color-text: rgba(255, 255, 255, 0.72);
  --color-muted: rgba(255, 255, 255, 0.35);
  --color-gold: #d6aa5b;
  --color-dark: #07111f;
  --color-blue: #102438;
  --color-blue-light: #172e40;
}

/* ========================================
   Base
   ======================================== */

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: var(--color-white);
}

/* ========================================
   Coming Soon
   ======================================== */

.coming-soon {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 10% 15%,
      rgba(214, 170, 91, 0.18),
      transparent 32%
    ),
    radial-gradient(circle at 90% 85%, rgba(56, 94, 130, 0.3), transparent 38%),
    linear-gradient(
      135deg,
      var(--color-dark) 0%,
      var(--color-blue) 50%,
      var(--color-blue-light) 100%
    );
}

/* ========================================
   Background decoration
   ======================================== */

.coming-soon::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  top: -350px;
  right: -200px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.coming-soon::after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  left: -180px;
  bottom: -300px;
  border: 1px solid rgba(214, 170, 91, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

/* ========================================
   Header
   ======================================== */

.header {
  position: relative;
  z-index: 2;
  padding: 40px 30px;
  text-align: center;
}

.logo {
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 4px;
}

.logo span {
  color: var(--color-gold);
}

/* ========================================
   Hero
   ======================================== */

.hero {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 25px;
  text-align: center;
}

.hero-content {
  width: 100%;
  max-width: 780px;
}

/* ========================================
   Eyebrow
   ======================================== */

.eyebrow {
  margin-bottom: 22px;
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 4px;
  text-transform: uppercase;
}

/* ========================================
   Heading
   ======================================== */

h1 {
  margin-bottom: 28px;
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -4px;
}

/* ========================================
   Description
   ======================================== */

.description {
  max-width: 650px;
  margin: 0 auto;
  color: var(--color-text);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
}

.description strong {
  color: var(--color-white);
  font-weight: 700;
}

/* ========================================
   Social
   ======================================== */

.social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 38px;
}

.social a {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.social a:hover {
  color: var(--color-dark);
  background: var(--color-gold);
  border-color: var(--color-gold);
  transform: translateY(-4px);
}

.social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ========================================
   Footer
   ======================================== */

.footer {
  position: relative;
  z-index: 2;
  padding: 25px 20px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.5px;
  text-align: center;
}

/* ========================================
   Mobile
   ======================================== */

@media (max-width: 640px) {
  .header {
    padding: 30px 20px;
  }

  .logo {
    font-size: 18px;
    letter-spacing: 3px;
  }

  .hero {
    padding: 40px 20px;
  }

  .eyebrow {
    margin-bottom: 18px;

    font-size: 10px;
    letter-spacing: 3px;
  }

  h1 {
    margin-bottom: 24px;

    font-size: 54px;
    letter-spacing: -2px;
  }

  .description {
    font-size: 15px;
    line-height: 1.7;
  }

  .social {
    margin-top: 30px;
  }

  .social a {
    width: 43px;
    height: 43px;
  }

  .social svg {
    width: 17px;
    height: 17px;
  }
}
