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

:root {
  font-family: "Fredoka", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: #e0e0e0;
  color: #2d2d2d;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header {
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.logo-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background-color: #2d2d2d;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #2d2d2d;
}

.main-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.headline {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d2d2d;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.2;
  max-width: 800px;
}

.hero-image-container {
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero-image {
  max-width: 20rem;
  width: 100%;
  height: auto;
  background-color: #e0e0e0;
  min-height: 300px;
}

.subscription-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

.subscription-text {
  font-size: 1rem;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 0.5rem;
}

.email-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 500px;
}

.email-input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
  font-family: inherit;
  border: 2px solid #d1d1d6;
  border-radius: 8px;
  background-color: #ffffff;
  color: #2d2d2d;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}

.email-input:focus {
  outline: none;
  border-color: #2d2d2d;
}

.email-input::-webkit-input-placeholder {
  color: #86868b;
}

.email-input:-ms-input-placeholder {
  color: #86868b;
}

.email-input::-ms-input-placeholder {
  color: #86868b;
}

.email-input::placeholder {
  color: #86868b;
}

.submit-button {
  padding: 0.5rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #86868b;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.submit-button:hover {
  color: #2d2d2d;
}

.submit-button:focus {
  outline: 2px solid #2d2d2d;
  outline-offset: 2px;
}

.submit-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.fa-solid, .fa-regular {
  font-family: "Font Awesome 5 Free"; 
  font-size: 1.5rem;
}

/* Toast Container */
#formResponse {
  visibility: hidden;
  min-width: 250px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 16px;
  position: fixed;
  z-index: 1000;
  right: 30px;
  bottom: 30px;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: visibility 0s, opacity 0.5s, transform 0.5s;
  opacity: 0;
  transform: translateY(20px);
}

/* Success and Error variants */
#formResponse.success {
  background-color: #28a745;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

#formResponse.error {
  background-color: #dc3545;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .header {
    padding: 1.5rem 1.5rem;
  }
  .headline {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }
  .hero-image {
    max-width: 350px;
    min-height: 250px;
  }
  .email-form {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .headline {
    font-size: 1.5rem;
  }
  .logo-text {
    font-size: 1rem;
  }
  .logo-icon {
    width: 32px;
    height: 32px;
  }
}
/*# sourceMappingURL=style.css.map */