:root {
  --light-1: #E3E6E9;
  --light-2: #D2D4D5;
  --gray:    #919292;
  --red:     #B93630;
  --dark-red:#821817;
  --dark:    #28292D;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Fredoka', sans-serif;
  background: var(--dark);
  color: var(--light-1);
}

.background {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(185,54,48,0.22), transparent 45%),
    radial-gradient(circle at 70% 80%, rgba(185,54,48,0.10), transparent 50%);
  z-index: 0;
}

.wrapper {
  position: relative;
  z-index: 1;
  min-height: 100%;
  padding: 48px 64px;
  display: flex;
  flex-direction: column;
}

.top {
  display: flex;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {
  height: 90px;
  filter:
    drop-shadow(0 14px 34px rgba(185,54,48,0.4))
    drop-shadow(0 0 50px rgba(185,54,48,0.28));
}

.brand-text {
  font-size: 34px;
  font-weight: 500;
}

.brand-iq {
  color: var(--dark-red);
}

.brand-bookings {
  color: var(--light-1);
}

.hero {
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

/* === LAUNCHING SOON (HERO EMPHASIS) === */

.launching-wrapper {
  margin-bottom: 42px;
}

.launching {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--red);
  position: relative;
  animation: glowPulse 5s ease-in-out infinite;
}

.launching::before {
  content: "";
  position: absolute;
  inset: -18px -40px;
  background: radial-gradient(
    circle,
    rgba(185,54,48,0.35),
    transparent 70%
  );
  filter: blur(22px);
  opacity: 0.7;
  z-index: -1;
}

.launching::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    var(--red),
    transparent
  );
  margin: 18px auto 0;
  opacity: 0.9;
}

/* Animation: subtle, executive, slow */
@keyframes glowPulse {
  0% {
    text-shadow: 0 0 12px rgba(185,54,48,0.35);
  }
  50% {
    text-shadow: 0 0 28px rgba(185,54,48,0.65);
  }
  100% {
    text-shadow: 0 0 12px rgba(185,54,48,0.35);
  }
}

/* === TITLE === */

.hero-title {
  font-size: 88px;
  font-weight: 600;
  line-height: 1.02;
  margin-bottom: 34px;
}

.hero-title span {
  color: var(--red);
}

.subtitle {
  font-size: 22px;
  max-width: 820px;
  margin: 0 auto;
  color: var(--light-2);
}

.bottom {
  font-size: 14px;
  color: var(--gray);
  text-align: center;
  padding-top: 40px;
}

/* Mobile */
@media (max-width: 768px) {
  .wrapper {
    padding: 32px 24px;
  }

  .logo {
    height: 64px;
  }

  .brand-text {
    font-size: 24px;
  }

  .launching {
    font-size: 16px;
    letter-spacing: 3px;
  }

  .hero-title {
    font-size: 44px;
  }

  .subtitle {
    font-size: 16px;
  }
}
