/* ============================================================
   Walkabout Discounts â€” front-end styles
   Edit this file in cPanel anytime. Bump the version in the
   wp_enqueue_style() call in walkabout-registry.php if a change
   doesn't show up (browser cache).

   Sections:
     1. Tokens (brand colours in one place)
     2. Signup form
     3. Notices
     4. [ later ] Wizard steps
     5. [ later ] Claim page
   ============================================================ */

/* ---- 1. Tokens -------------------------------------------- */
:root {
	--wad-teal:        #5FB4C7;
	--wad-teal-deep:   #0F6E56;
	--wad-red:         #D6421F;
	--wad-red-hover:   #C9422A;
	--wad-ink:         #1A2530;
	--wad-ink-soft:    #5F5E5A;
	--wad-cream:       #FDFCF9;
	--wad-cream-warm:  #F5EFD9;
	--wad-border:      #D4CDBF;
	--wad-border-soft: #E5DED0;
}

/* ---- 2. Signup form --------------------------------------- */
.wad-form-wrap {
	max-width: 560px;
	margin: 0 auto;
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

.wad-form {
	background: #fff;
	border: 1px solid var(--wad-border-soft);
	border-radius: 14px;
	padding: 28px;
	box-shadow: 0 4px 20px rgba(26, 37, 48, 0.06);
}

.wad-form label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: var(--wad-ink);
	margin-bottom: 16px;
}

.wad-form input,
.wad-form select,
.wad-form textarea {
	display: block;
	width: 100%;
	margin-top: 6px;
	padding: 11px 13px;
	font-size: 15px;
	border: 1px solid var(--wad-border);
	border-radius: 8px;
	background: var(--wad-cream);
	box-sizing: border-box;
	font-family: inherit;
	color: var(--wad-ink);
}

.wad-form input:focus,
.wad-form select:focus,
.wad-form textarea:focus {
	outline: none;
	border-color: var(--wad-teal);
	box-shadow: 0 0 0 3px rgba(95, 180, 199, 0.15);
}

.wad-form textarea {
	min-height: 90px;
	resize: vertical;
}

.wad-form-row {
	display: flex;
	gap: 16px;
}
.wad-form-row label {
	flex: 1;
}

.wad-form hr {
	border: none;
	border-top: 1px solid var(--wad-border-soft);
	margin: 22px 0;
}

.wad-form-submit {
	background: var(--wad-red);
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 13px 28px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: background 0.15s ease, transform 0.1s ease;
}
.wad-form-submit:hover  { background: var(--wad-red-hover); }
.wad-form-submit:active { transform: translateY(1px); }

/* ---- 3. Notices ------------------------------------------- */
.wad-notice {
	padding: 14px 16px;
	border-radius: 10px;
	margin-bottom: 18px;
	font-size: 15px;
}
.wad-notice--success {
	background: #E8F5E9;
	color: #2E7D32;
	border: 1px solid #C8E6C9;
}
.wad-notice--error {
	background: #FDECEA;
	color: #C62828;
	border: 1px solid #F5C6C3;
}

/* Stack the side-by-side rows on narrow screens */
@media (max-width: 520px) {
	.wad-form-row { flex-direction: column; gap: 0; }
}

/* ---- 4. Wizard steps -------------------------------------- */
/* (added when the wizard is built) */

/* ---- 5. Claim page ---------------------------------------- */
/* (the claim page is currently styled inline in the handler;
    move those styles here later if you want them editable too) */