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

html, body {
  height: 100%;
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #000;
}

/* General Layout */
.section {
  width: 100%;
}

/* === TOP SECTION === */
.top {
  height: 50vh;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 70px;
}

#logo {
  width: 60%;
  max-width: 300px;
  margin-bottom: 20px;
  transform: translateY(-20px); /* Moves logo higher */
}

.top h1 {
  font-size: 1.4rem;
  font-weight: 500;
  color: #64696b;
  text-align: center;
  padding: 0 20px;
}

/* === MIDDLE SECTION === */
.middle {
  height: 30vh;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.coming-soon {
  font-size: 2.2rem;
  font-weight: 500;
  color: #8f989c;
  padding: 0 20px;
  transform: translateY(-35px); 
}

/* === FOOTER SECTION === */
.footer {
  background-color: #333;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 25px 20px;
}

.footer-content {
  width: 90%;
  max-width: 600px;
  text-align: center;
}

.footer-content h2 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 5px;
}

.footer-content p {
  font-size: 0.95rem;
  margin-bottom: 15px;
}

/* Subscription Form */
.form-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.form-row input[type="email"] {
  padding: 10px;
  border: none;
  border-radius: 4px;
  width: 250px;
  font-size: 0.95rem;
  background-color: white;
  color: #000;
}

.button {
  padding: 10px 20px;
  background-color: #fca40b;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
}

.button:hover {
  opacity: 0.9;
}

.footer-content .copyright {
  font-size: 0.8rem;
  opacity: 0.7;
  padding-top: 10px;
}

/* === RESPONSIVE === */
@media (max-width: 600px) {
  #logo {
    width: 80%;
  }

  .top h1 {
    font-size: 1.2rem;
  }

  .coming-soon {
    font-size: 1.6rem;
  }

  .form-row {
    flex-direction: column;
    align-items: center;
  }

  .form-row input[type="email"],
  .button {
    width: 90%;
    max-width: 300px;
  }

  .footer {
    padding: 30px 20px 40px;
  }

  .footer-content h2,
  .footer-content p {
    font-size: 0.9rem;
  }

  .footer-content .copyright {
    margin-top: 20px;
  }
}

