/**
 * Frontend Styles for LMA Newsletter & Contact
 */

/* Newsletter Form */
.lma-nc-newsletter-form {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto;
}

.lma-nc-form-title {
  margin: 0 0 10px;
  color: #8b4049;
  font-size: 24px;
  font-weight: 600;
}

.lma-nc-form-description {
  margin: 0 0 20px;
  color: #666;
  font-size: 16px;
}

.lma-nc-form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.lma-nc-input,
.lma-nc-textarea {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.lma-nc-input:focus,
.lma-nc-textarea:focus {
  outline: none;
  border-color: #8b4049;
}

.lma-nc-submit-btn {
  background: #8b4049;
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.lma-nc-submit-btn:hover {
  background: #6f3239;
}

.lma-nc-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.lma-nc-message {
  margin-top: 15px;
  padding: 12px 15px;
  border-radius: 4px;
  font-size: 14px;
}

.lma-nc-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.lma-nc-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Contact Form */
.lma-nc-contact-form {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  max-width: 700px;
  margin: 0 auto;
}

.lma-nc-form-group {
  margin-bottom: 20px;
}

.lma-nc-form-group label {
  display: block;
  margin-bottom: 5px;
  color: #333;
  font-weight: 600;
  font-size: 14px;
}

.lma-nc-textarea {
  width: 100%;
  resize: vertical;
  min-height: 120px;
}

/* Responsive */
@media (max-width: 768px) {
  .lma-nc-newsletter-form,
  .lma-nc-contact-form {
    padding: 20px;
  }

  .lma-nc-form-row {
    flex-direction: column;
  }

  .lma-nc-submit-btn {
    width: 100%;
  }
}
