/* Epic Hotel Forms - Light theme, responsive */

.ehf-form-wrap {
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	box-sizing: border-box;
}

.ehf-form-wrap * {
	box-sizing: border-box;
}

.ehf-form {
	width: 100%;
}

.ehf-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 22px;
}

.ehf-row-single {
	grid-template-columns: 1fr;
}

.ehf-field {
	display: flex;
	flex-direction: column;
}

.ehf-field label {
	font-size: 15px;
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 8px;
}

.ehf-required {
	color: #e53935;
}

.ehf-field input[type="text"],
.ehf-field input[type="email"],
.ehf-field input[type="number"],
.ehf-field input[type="date"],
.ehf-field textarea {
	width: 100%;
	background-color: #f2f2f5;
	border: 1px solid #e0e0e5;
	border-radius: 6px;
	padding: 14px 16px;
	font-size: 15px;
	color: #333333;
	font-family: inherit;
	transition: border-color 0.2s ease, background-color 0.2s ease;
}

.ehf-field input::placeholder,
.ehf-field textarea::placeholder {
	color: #9a9aa5;
}

.ehf-field input:focus,
.ehf-field textarea:focus {
	outline: none;
	border-color: #9a9aa5;
	background-color: #ffffff;
}

.ehf-field textarea {
	resize: vertical;
	min-height: 120px;
}

.ehf-field.ehf-invalid input,
.ehf-field.ehf-invalid textarea {
	border-color: #e53935;
	background-color: #fdf2f2;
}

.ehf-error {
	display: none;
	color: #e53935;
	font-size: 13px;
	margin-top: 6px;
}

.ehf-error.ehf-error-active {
	display: block;
}

.ehf-btn {
	display: inline-block;
	width: 100%;
	border: none;
	border-radius: 6px;
	padding: 16px 24px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 1px;
	cursor: pointer;
	color: #ffffff;
	transition: opacity 0.2s ease, transform 0.1s ease;
}

.ehf-btn:hover {
	opacity: 0.9;
}

.ehf-btn:active {
	transform: scale(0.99);
}

.ehf-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.ehf-btn-contact {
	background-color: #f0a500;
}

.ehf-btn-reservation {
	background-color: #3a5ce4;
}

.ehf-response {
	padding: 14px 16px;
	border-radius: 6px;
	margin-bottom: 22px;
	font-size: 14px;
	font-weight: 600;
}

.ehf-response.ehf-response-success {
	background-color: #e8f7ee;
	color: #1e7e42;
	border: 1px solid #b6e6c6;
}

.ehf-response.ehf-response-error {
	background-color: #fdf2f2;
	color: #c62828;
	border: 1px solid #f3c1c1;
}

/* Responsive */
@media (max-width: 600px) {
	.ehf-row {
		grid-template-columns: 1fr;
		gap: 16px;
		margin-bottom: 18px;
	}

	.ehf-field input,
	.ehf-field textarea {
		padding: 12px 14px;
		font-size: 14px;
	}

	.ehf-btn {
		padding: 14px 20px;
		font-size: 14px;
	}
}

@media (max-width: 400px) {
	.ehf-form-wrap {
		max-width: 100%;
	}
}
