/* -------------------------------------
   Google Font
-------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* -------------------------------------
   Root Variables
-------------------------------------- */
:root {
  --blue: #0071CE;
  --yellow: #FFC220;
  --white: #ffffff;
  --glass-dark: rgba(0,0,0,0.45);
  --glass-light: rgba(255,255,255,0.06);
  --font: "Inter", sans-serif;
}

/* -------------------------------------
   Reset
-------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font);
}

body {
  min-height: 100vh;
  color: var(--white);
  background: url("https://images.unsplash.com/photo-1517336714731-489689fd1ca8?q=80&w=3000") 
              center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

/* -------------------------------------
   Dark Overlay
-------------------------------------- */
.overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.5),
      rgba(0,0,0,0.75)
  );
  z-index: 0;
}

/* -------------------------------------
   Main Container
-------------------------------------- */
.container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px 25px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* -------------------------------------
   Logo
-------------------------------------- */
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  background: linear-gradient(90deg, var(--white), var(--yellow));
  -webkit-background-clip: text;
  color: transparent;
}

/* -------------------------------------
   Heading
-------------------------------------- */
.headline {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
}

/* -------------------------------------
   Countdown Section
-------------------------------------- */
.countdown {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.count-item {
  background: var(--glass-light);
  padding: 16px 20px;
  border-radius: 12px;
  min-width: 90px;
  backdrop-filter: blur(6px);
  animation: float 3s ease-in-out infinite;
}

.number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  animation: fadeIn 1s ease forwards;
}

.label {
  font-size: 0.8rem;
  opacity: 0.7;
  text-transform: uppercase;
  margin-top: 6px;
}

/* Subtle Fade Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Gentle Floating Animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* -------------------------------------
   Tagline
-------------------------------------- */
.tagline {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
}

/* -------------------------------------
   Email Form
-------------------------------------- */
/* Premium Email Input Bar */
.input-wrapper {
    display: flex;
    width: 100%;
    max-width: 420px;
    margin: 25px auto 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.input-wrapper input {
    flex: 1;
    padding: 14px 18px;
    font-size: 15px;
    color: #fff;
    background: transparent;
    border: none;
    outline: none;
}

.input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.75);
}

.input-wrapper button {
    padding: 12px 22px;
    border-radius: 50px;
    border: none;
    background: #FFC220;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    transition: 0.25s ease;
}

.input-wrapper button:hover {
    background: #ffda5b;
    transform: translateY(-1px);
}


/* -------------------------------------
   Secondary Buttons
-------------------------------------- */
.actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-secondary {
  padding: 10px 18px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.55);
  color: white;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

/* -------------------------------------
   Social Icons
-------------------------------------- */
.social {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social a {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.75);
  transition: color 0.25s, transform 0.25s;
}

.social a:hover {
  color: var(--yellow);
  transform: scale(1.15);
}

/* -------------------------------------
   Responsive
-------------------------------------- */
@media (max-width: 600px) {
  .number {
    font-size: 1.7rem;
  }

  .logo {
    font-size: 1.3rem;
  }

  .headline {
    font-size: 1.4rem;
  }

  .subscribe input {
    width: 100%;
  }
}