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

/* Typography */
body {
  font-family: 'DM Sans', sans-serif;
  background-color: #0a0f1c;
  color: #ffffff;
}

/* Background Overlay + Image */
.container {
  background: linear-gradient(rgba(12, 191, 223, 0.685), #0a0f1c),
    url(assets/background.png);
  background-size: cover;
  background-position: center;
  height: 100vh;
  padding: 20px 6%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Layout */
.row {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  margin-top: 0px;
  padding-top: 0px;
  /* reduced from 60px */
}

.logo-container {
  text-align: center;
  margin-bottom: 45px;
  /* reduced from 30px */
}


.logo-container img {
  width: 180px;
  max-width: 90%;
}

/* Top Subtitle */
.top-subtitle {
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #b4e64b;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}

/* Main Headline */
.hero-title {
  font-family: 'Sora', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #0cc0df;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 20px;
}

/* Subheadline */
.subheadline {
  max-width: 500px;
  margin: 0 auto 10px auto;
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
  color: #a4c1d8;
  font-family: 'DM Sans', sans-serif;
}

/* Countdown Timer */
.time-counter {
  display: flex;
  column-gap: 40px;
  align-items: center;
  margin: 10px 0;
}

.time-counter .counter {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.counter .number {
  font-size: 60px;
  font-weight: 700;
  color: #b6ff40;
}

.counter .text {
  font-size: 9px;
  margin-top: -10px;
  color: #cccccc;
  text-transform: uppercase;
}

/* Waitlist Button */
.waitlist-button {
  margin-top: 30px;
}

#waitlist-btn {
  min-width: 220px;
  padding: 15px 40px;
  background-color: #b4e64b;
  border: none;
  border-radius: 8px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#waitlist-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

/* Modal Styles */
.modal.hidden {
  display: none;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-content {
  background: rgba(7, 83, 97, 0.822);
  color: #000;
  padding: 2rem;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  position: relative;
  font-family: 'DM Sans', sans-serif;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.modal-title {
  text-transform: uppercase;
  font-family: 'Sora', sans-serif;
  color: #ccff33;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.modal-content input,
.modal-content select {
  width: 100%;
  padding: 10px;
  margin-top: 12px;
  border-radius: 6px;
  border: none;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
}

.submit-btn {
  margin-top: 20px;
  background-color: #b4e64b;
  color: #000;
  padding: 10px 20px;
  border: none;
  font-size: 16px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: #a0d43f;
}

.close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 24px;
  color: #333;
  cursor: pointer;
}

/* Confirmation Modal Styles */
.confirmation .modal-content {
  background-color: #0cc0df;
  text-align: center;
}

.checkmark {
  font-size: 48px;
  margin-bottom: 10px;
}

.thankyou {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  font-family: 'DM Sans', sans-serif;
}

#return-btn {
  background-color: #ccff33;
  color: #000;
  font-weight: 700;
  border: none;
  padding: 12px 24px;
  text-transform: uppercase;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

#return-btn:hover {
  background-color: #b4e64b;
}

/* Responsive */
@media (max-width: 1080px) {
  .subheadline {
    padding: 10px 15%;
  }
}

@media (max-width: 750px) {
  .subheadline {
    padding: 10px 8%;
  }
}

@media (max-width: 480px) {

  .row {
    margin-top: 0px;
    padding-top: 0px;
  }

  .logo-container {
    margin-bottom: 70px;
  }

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

  .subheadline {
    font-size: 14px;
    padding: 10px 3%;
  }

  .counter .number {
    font-size: 35px;
    color: #b6ff40;
  }

  .counter .text {
    font-size: 10px;
  }
}