/* Same styling as before but with added styling for the illustration */

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

body {
  font-family: 'Raleway', sans-serif;
  background: linear-gradient(135deg, #D4EDDA, #91C788); /* Green Tea-like gradient */
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.container {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  padding: 2rem;
  width: 80%;
  max-width: 600px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.logo img {
  width: 100px;
  margin-bottom: 1rem;
}

.coming-soon {
  font-family: 'Pacifico', cursive;
  font-size: 2.5rem;
  color: #3A8D44; /* Rich Green for premium */
  animation: fadeIn 2s ease-in;
}

.tagline {
  font-size: 1.2rem;
  color: #6D9773; /* Lighter green for contrast */
  margin-bottom: 1rem;
  animation: fadeIn 2.5s ease-in;
}

/* Illustration styling */
.illustration img {
  width: 80%;
  margin: 1rem auto;
  display: block;
  animation: slideIn 1s ease-out;
}

.countdown h2 {
  font-size: 1.5rem;
  color: #3A8D44;
}

#timer {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #4B8B3B;
  animation: pulse 1.5s infinite;
}

.notify-form {
  margin-top: 1rem;
}

.notify-form input {
  padding: 0.7rem;
  border: none;
  border-radius: 5px;
  width: 60%;
  margin-right: 0.5rem;
  background-color: #E9F3E4;
  color: #3A8D44;
}

.notify-form button {
  padding: 0.7rem;
  border: none;
  border-radius: 5px;
  background-color: #3A8D44;
  color: white;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.notify-form button:hover {
  background-color: #287234; /* Darker green */
}

.socials {
  margin-top: 1.5rem;
}

.socials img {
  width: 30px;
  margin: 0 10px;
  transition: transform 0.3s ease;
}

.socials img:hover {
  transform: scale(1.2);
}

/* Animations */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slideIn {
  0% {
    transform: translateY(50%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 1.5rem;
  }

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

  .illustration img {
    width: 90%;
  }

  .notify-form input {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
