/* FSO Nieuwsbrief - Frontend CSS */

/* Footer formulier */
.fso-nl-form-footer {
	background: linear-gradient(135deg, #1a3a1a 0%, #228B22 100%);
	padding: 30px 20px;
	text-align: center;
	margin-top: 30px;
}

.fso-nl-form-footer .fso-nl-form-inner {
	max-width: 600px;
	margin: 0 auto;
}

.fso-nl-form-footer h3 {
	color: #fff;
	font-size: 22px;
	margin: 0 0 8px;
}

.fso-nl-form-footer .fso-nl-form-desc {
	color: rgba(255,255,255,0.85);
	font-size: 14px;
	margin: 0 0 20px;
}

/* Inline formulier (shortcode) */
.fso-nl-form-inline {
	background: #f0f8f0;
	border: 2px solid #228B22;
	border-radius: 8px;
	padding: 25px;
	margin: 20px 0;
}

.fso-nl-form-inline h3 {
	color: #228B22;
	font-size: 20px;
	margin: 0 0 8px;
}

.fso-nl-form-inline .fso-nl-form-desc {
	color: #555;
	font-size: 14px;
	margin: 0 0 15px;
}

/* Form fields */
.fso-nl-form-fields {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	align-items: center;
}

.fso-nl-input {
	padding: 12px 16px;
	border: 2px solid rgba(255,255,255,0.3);
	border-radius: 6px;
	font-size: 15px;
	outline: none;
	transition: border-color 0.2s;
	min-width: 200px;
}

.fso-nl-form-footer .fso-nl-input {
	background: rgba(255,255,255,0.95);
	color: #333;
}

.fso-nl-form-inline .fso-nl-input {
	border-color: #ccc;
	background: #fff;
}

.fso-nl-input:focus {
	border-color: #228B22;
}

.fso-nl-submit {
	padding: 12px 28px;
	background: #228B22;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s, transform 0.1s;
	white-space: nowrap;
}

.fso-nl-form-footer .fso-nl-submit {
	background: #fff;
	color: #228B22;
}

.fso-nl-submit:hover {
	background: #1a6b1a;
	transform: translateY(-1px);
}

.fso-nl-form-footer .fso-nl-submit:hover {
	background: #f0f0f0;
}

.fso-nl-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

/* Messages */
.fso-nl-form-message {
	margin-top: 12px;
	padding: 10px 15px;
	border-radius: 6px;
	font-size: 14px;
	text-align: center;
}

.fso-nl-form-message.success {
	background: rgba(34,139,34,0.15);
	color: #228B22;
	border: 1px solid rgba(34,139,34,0.3);
}

.fso-nl-form-footer .fso-nl-form-message.success {
	background: rgba(255,255,255,0.2);
	color: #fff;
	border-color: rgba(255,255,255,0.3);
}

.fso-nl-form-message.error {
	background: rgba(220,53,69,0.1);
	color: #dc3545;
	border: 1px solid rgba(220,53,69,0.3);
}

/* Privacy tekst */
.fso-nl-form-privacy {
	font-size: 12px;
	margin: 10px 0 0;
	opacity: 0.7;
}

.fso-nl-form-footer .fso-nl-form-privacy {
	color: rgba(255,255,255,0.6);
}

.fso-nl-form-inline .fso-nl-form-privacy {
	color: #999;
}

/* Responsive */
@media (max-width: 600px) {
	.fso-nl-form-fields {
		flex-direction: column;
	}
	.fso-nl-input,
	.fso-nl-submit {
		width: 100%;
		min-width: 0;
	}
}
