/* SPCL DAY Stylesheet */

/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #f9f9f9;
  color: #333;
}

/* Header Styles */
.hero {
  background-color: #ffffff;
  padding: 50px 20px 70px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}
.logo {
  font-size: 2rem;
  color: #333;
  margin-bottom: 15px;
}
.logo i {
  margin-right: 10px;
  color: #007bff;
}
.cta-button {
  background-color: #007bff;
  color: #fff;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s, transform 0.2s;
  display: inline-block;
  margin-top: 20px;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}
.cta-button:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

/* How It Works Section */
.how-it-works {
  background-color: #f3f7fa;
  padding: 50px 20px 40px;
  text-align: center;
}
.description {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}
.step {
  width: 250px;
  text-align: center;
}
.step i {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 15px;
}

/* Signup Section */
.signup-section {
  background-color: #ffffff;
  padding: 50px 20px 70px;
  text-align: center;
  border-top: 1px solid #ddd;
}
.signup-section h3 {
  margin-bottom: 20px;
  color: #333;
}
form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px;
}
form input[type="email"] {
  padding: 15px 20px;
  width: 300px;
  max-width: 90%;
  border: 1px solid #ddd;
  border-radius: 30px;
  font-size: 1rem;
}
form button {
  background-color: #007bff;
  color: #fff;
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s, transform 0.2s;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}
form button:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

/* Confirmation Message with Fade-In */
#confirmation {
  display: none;
  color: #28a745;
  margin-top: 30px;
  font-weight: bold;
  font-size: 1.1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

#confirmation.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Footer Styles */
footer {
  background-color: #f3f7fa;
  padding: 20px;
  text-align: center;
  color: #555;
  border-top: 1px solid #ddd;
}
footer p {
  margin: 0;
  font-size: 0.9rem;
}

/* Hidden Class (Critical) */
.hidden {
  display: none;
}
