/* GLOBAL STYLES */
body {
  margin: 0;
  /* background-color: #0b0c15; */
  background-image: url("../images/BG1.png"); /* ← replace with your image */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  display: flex;
  min-height: 100vh;
}

/* OVERLAY for dark tint (optional) */
/* body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 20, 0.7); /* dark overlay for text readability 
  z-index: 0;
} */

.landing {
  text-align: left;
  padding: 2rem;
  max-width: 700px;
  position: relative;
  z-index: 1; /* ensure text above overlay */
  padding-top: 6%;
      padding-left: 10%;
}

.logo {
  display: flex;
  margin-bottom: 4rem;
}

.logo img {
  margin-bottom: 0.5rem;
}
.countdown-section{
    margin-bottom: 3rem;
}
.logo h2 {
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 1.2rem;
}

.headline {
font-size: 45px;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #bfbfbf;
    letter-spacing: 2px;
}

.subtitle {
  color: #bfbfbf;
  margin-bottom: 3rem;
}

.countdown-section h3 {
  color: #bfbfbf;
  margin-bottom: 1rem;
}

.countdown {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.time-box {
  background-color: #0A0F22;
    padding: 1rem 0.5rem;
    text-align: center;
    border-radius: 8px;
    min-width: 70px;
    backdrop-filter: blur(3px);
}

.time-box span {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
}

.time-box p {
  margin: 0;
  font-size: 0.8rem;
  color: #aaa;
}

.waitlist h3 {
  color: #bfbfbf;
  margin-bottom: 0.5rem;
}

.email-box {
  display: flex;
  background: #E1E6FB;
  border-radius: 6px;
  overflow: hidden;
  width: 388px;
  backdrop-filter: blur(3px);
}

.email-box input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  padding: 0.8rem;
  flex: 1;
  font-size: 0.9rem;
}
.email-container {
  display: flex;          /* Horizontal alignment */
  align-items: center;    /* Vertical centering */
  gap: 10px;              /* Input aur button ke beech space */
}
.sub-btn {
    font-size: 2rem;
    cursor: pointer;
    background: transparent;
    color: #fff;
    border: none;
}

.social-icons {
    display: flex
;
    /* justify-content: center; */
    gap: 1.5rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.social-icons img {
  width: 20px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.social-icons img:hover {
  opacity: 1;
}

footer {
  font-size: 0.8rem;
  color: #777;
}

footer a {
  color: #bfbfbf;
  text-decoration: none;
  margin: 0 0.3rem;
}

footer a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .headline {
    font-size: 1.5rem;
  }

  .email-box {
    width: 100%;
  }

  .countdown {
    gap: 0.5rem;
  }
}
