/*
Theme Name: Ana Tu Minimal
Theme URI: https://anatu.com.au
Author: Ana Tu Psychology
Description: Minimal blank theme for Ana Tu Psychology. No header, nav, or footer chrome - this site exists to host web forms only.
Version: 1.0
Requires PHP: 7.4
*/

html, body {
	  margin: 0;
	  padding: 0;
}

/* ---------------------------------------------------------------
   Fluent Forms styling — applies site-wide to every form (current
   and future) via the generic .fluentform wrapper class, so this
   only needs to be defined once here rather than per-form.
   Palette matches the homepage: sage/teal #3f5a52, cream #f6f3ec.
   --------------------------------------------------------------- */

.fluentform {
	max-width: 820px;
	margin: 2rem auto;
	padding: 2.5rem 3rem;
	background: #f6f3ec;
	border-radius: 8px;
	box-shadow: 0 2px 12px rgba(63, 90, 82, 0.08);
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	box-sizing: border-box;
}

.fluentform h2, .fluentform h3 {
	color: #3f5a52;
	font-weight: 400;
}
.fluentform h2 {
	font-size: 1.9rem;
	font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', serif;
}
.fluentform h3 { font-size: 1.3rem; margin-bottom: 0.25rem; }
.fluentform h4 {
	color: #3f5a52;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	font-weight: 400;
	font-size: 1.1rem;
	margin: 1.5rem 0 0.75rem;
}

.fluentform .ff-accordion-header {
	background: #eef2ef;
	border-radius: 6px;
	padding: 0.9rem 1.25rem;
	margin-top: 0.5rem;
}
.fluentform .ff-accordion-title {
	color: #3f5a52;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	font-weight: 400;
	font-size: 1.1rem;
}
.fluentform .ff-accordion-content {
	padding: 1.25rem 0.5rem 0.5rem;
}

.fluentform label,
.fluentform .ff-el-input--label label {
	color: #3f5a52;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.fluentform input[type="text"],
.fluentform input[type="email"],
.fluentform input[type="tel"],
.fluentform input[type="date"],
.fluentform input[type="number"],
.fluentform textarea,
.fluentform select {
	border: 1px solid #d8ddd9;
	border-radius: 4px;
	padding: 0.6rem 0.75rem;
	font-family: inherit;
	box-sizing: border-box;
}
.fluentform input:focus,
.fluentform textarea:focus,
.fluentform select:focus {
	border-color: #3f5a52;
	outline: none;
	box-shadow: 0 0 0 2px rgba(63, 90, 82, 0.12);
}

.fluentform .fluentform-signature-pad-wrapper canvas {
	border-radius: 4px;
}
/* The signature field's hidden backing input isn't display:none by
   default, which pushes the visible canvas below other fields'
   input boxes in the same row — force it out of flow. */
.fluentform input.force-hide {
	display: none !important;
}
.fluentform .ff-repeater-hint {
	font-size: 0.9rem;
	color: #3f5a52;
	font-weight: 500;
	margin: -0.5rem 0 1rem;
}

.fluentform button[type="submit"],
.fluentform .ff-btn-submit {
	background-color: #3f5a52 !important;
	border-color: #3f5a52 !important;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	padding: 0.75rem 2rem !important;
	border-radius: 4px !important;
}

.fluentform hr {
	border-top: 2px solid #d8ddd9 !important;
}

.fluentform .ff-repeater-container .ff_repeater_cell.repeat_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}
.fluentform .ff-repeater-container .ff-el-repeat-buttons-list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.fluentform .ff-repeater-container .ff-el-repeat-buttons-list .repeat-plus,
.fluentform .ff-repeater-container .ff-el-repeat-buttons-list .repeat-minus {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	cursor: pointer;
}
.fluentform .ff-repeater-container .repeat-plus {
	background: #3f5a52;
}
.fluentform .ff-repeater-container .repeat-plus svg {
	fill: #ffffff;
	width: 16px;
	height: 16px;
}
.fluentform .ff-repeater-container .repeat-minus {
	background: #ffffff;
	border: 1.5px solid #b23b3b;
}
.fluentform .ff-repeater-container .repeat-minus svg {
	fill: #b23b3b;
	width: 14px;
	height: 14px;
}
/* Hover tooltip so the icon-only buttons are unambiguous */
.fluentform .ff-repeater-container .repeat-plus::after,
.fluentform .ff-repeater-container .repeat-minus::after {
	content: attr(data-tooltip);
	position: absolute;
	right: calc(100% + 8px);
	top: 50%;
	transform: translateY(-50%);
	background: #3f5a52;
	color: #ffffff;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	font-size: 0.8rem;
	white-space: nowrap;
	padding: 0.35rem 0.6rem;
	border-radius: 4px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.15s ease;
	z-index: 5;
}
.fluentform .ff-repeater-container .repeat-plus:hover::after,
.fluentform .ff-repeater-container .repeat-minus:hover::after {
	opacity: 1;
}
.fluentform .ff-repeater-container .repeat-plus::after { content: "Add another"; }
.fluentform .ff-repeater-container .repeat-minus::after { content: "Remove this one"; background: #b23b3b; }

@media (max-width: 600px) {
	.fluentform {
		padding: 1.5rem 1.25rem;
		margin: 1rem;
	}
}
