/* ==============================================
   IMPROVEMENT 7: Email Capture / Lead Magnet Section
   Site: welivetogether.co.uk
   ============================================== */

/* Email Capture Section */
.email-capture {
  background: #1A365D;
  color: #ffffff;
  padding: 60px 20px;
  width: 100%;
}

.email-capture-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.email-capture h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 16px 0;
  line-height: 1.2;
  color: #ffffff;
}

.email-capture-subtitle {
  font-size: 1.125rem;
  margin: 0 0 32px 0;
  line-height: 1.6;
  opacity: 0.95;
}

.email-capture-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.email-capture-form input[type="email"] {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  padding: 14px 18px;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  background: #ffffff;
  color: #1A365D;
}

.email-capture-form input[type="email"]::placeholder {
  color: #666;
  opacity: 0.7;
}

.email-capture-form input[type="email"]:focus {
  outline: 2px solid #2D9B87;
  outline-offset: 2px;
}

.email-capture-form button {
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  background: #227A6A;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.email-capture-form button:hover {
  background: #248a74;
  transform: translateY(-1px);
}

.email-capture-form button:active {
  transform: translateY(0);
}

.email-capture-disclaimer {
  font-size: 0.875rem;
  color: #ffffff;
  opacity: 0.8;
  margin: 0;
  line-height: 1.5;
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .email-capture {
    padding: 48px 20px;
  }

  .email-capture h2 {
    font-size: 1.5rem;
  }

  .email-capture-subtitle {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .email-capture-form {
    flex-direction: column;
    align-items: stretch;
  }

  .email-capture-form input[type="email"] {
    min-width: 100%;
    max-width: 100%;
  }

  .email-capture-form button {
    width: 100%;
  }
}
