/* Newsletter Section */
.newsletter-section {
  padding: var(--space-24) 0;
  background: linear-gradient(135deg, var(--color-forest) 0%, var(--color-primary) 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/assets/images/mountain-background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.4;
}

.newsletter-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
  z-index: 1;
  text-align: center;
}

.newsletter-title {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-4xl);
  font-weight: 700;
  margin-bottom: var(--space-6);
}

.newsletter-description {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-10);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto var(--space-6);
  gap: var(--space-4);
}

.newsletter-input {
  flex: 1;
  padding: var(--space-4) var(--space-6);
  border: none;
  border-radius: var(--border-radius);
  font-size: var(--font-size-base);
  background: var(--color-white);
  color: var(--color-text);
}

.newsletter-input::placeholder {
  color: var(--color-text-muted);
}

.newsletter-submit {
  background: var(--color-white);
  color: var(--color-primary);
  border: none;
  padding: var(--space-4) var(--space-6);
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.newsletter-submit:hover {
  background: var(--color-accent);
  transform: translateY(-1px);
}

.newsletter-privacy {
  font-size: var(--font-size-sm);
  opacity: 0.8;
}

.privacy-link {
  color: var(--color-white);
  text-decoration: underline;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;
  }
}
