/**
 * Contact Form 7 -- Ardena theme styling
 *
 * Overrides CF7 defaults to match the Ardena design system.
 */

/* ---- Grid layout for two-column rows ---- */
.wpcf7-form .ardena-form-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

@media (min-width: 640px) {
	.wpcf7-form .ardena-form-grid {
		grid-template-columns: 1fr 1fr;
	}
}

/* ---- Spacing between form groups ---- */
.wpcf7-form .ardena-form-group {
	margin-bottom: 1.25rem;
}

/* ---- Labels ---- */
.wpcf7-form label,
.wpcf7-form .ardena-label {
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	color: #1A0A10;
	margin-bottom: 0.5rem;
}

/* ---- Inputs, selects, textareas ---- */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 select,
.wpcf7 textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	border-radius: 0.75rem;
	border: 1px solid #e5e7eb;
	background-color: rgba(251, 247, 244, 0.5);
	color: #1A0A10;
	font-size: 1rem;
	font-family: inherit;
	transition: all 0.2s;
	box-sizing: border-box;
}

.wpcf7 input[type="text"]::placeholder,
.wpcf7 input[type="email"]::placeholder,
.wpcf7 textarea::placeholder {
	color: rgba(26, 10, 16, 0.4);
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
	outline: none;
	box-shadow: 0 0 0 2px rgba(254, 79, 3, 0.3);
	border-color: #FE4F03;
}

.wpcf7 textarea {
	resize: none;
}

/* ---- Select dropdown arrow ---- */
.wpcf7 select {
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M6 8l4 4 4-4' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.75rem center;
	background-size: 20px;
	padding-right: 2.5rem;
}

/* ---- Checkbox (privacy consent) ---- */
.wpcf7 .ardena-privacy {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.wpcf7 .ardena-privacy .wpcf7-list-item {
	margin: 0;
}

.wpcf7 .ardena-privacy input[type="checkbox"] {
	margin-top: 0.25rem;
	width: 1rem;
	height: 1rem;
	border-radius: 0.25rem;
	border: 1px solid #d1d5db;
	accent-color: #FE4F03;
	flex-shrink: 0;
}

.wpcf7 .ardena-privacy .wpcf7-list-item-label {
	font-size: 0.875rem;
	color: rgba(26, 10, 16, 0.6);
	line-height: 1.5;
}

.wpcf7 .ardena-privacy a {
	color: #FE4F03;
	text-decoration: none;
}

.wpcf7 .ardena-privacy a:hover {
	text-decoration: underline;
}

/* ---- Submit button ---- */
.wpcf7 input[type="submit"] {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.875rem 2rem;
	background-color: #FE4F03;
	color: white;
	font-weight: 600;
	font-size: 1rem;
	font-family: inherit;
	border-radius: 0.75rem;
	border: none;
	cursor: pointer;
	transition: all 0.3s;
}

.wpcf7 input[type="submit"]:hover {
	background-color: rgba(254, 79, 3, 0.9);
	box-shadow: 0 10px 15px -3px rgba(254, 79, 3, 0.2);
	transform: translateY(-2px);
}

/* ---- Validation messages ---- */
.wpcf7-not-valid-tip {
	color: #dc2626;
	font-size: 0.8125rem;
	margin-top: 0.375rem;
}

.wpcf7 .wpcf7-response-output {
	border-radius: 0.75rem;
	padding: 1rem 1.25rem;
	margin: 1.5rem 0 0;
	font-size: 0.875rem;
}

/* ---- Remove default CF7 paragraph spacing ---- */
.wpcf7-form p {
	margin: 0;
}

/* ---- CF7 spinner ---- */
.wpcf7 .wpcf7-spinner {
	margin-left: 0.5rem;
}
