/**
 * Public styles for Instant Maintenance Coming Soon Mode.
 *
 * Provides utility resets and responsive helpers used by all templates.
 * Each template embeds its own scoped <style> block; this file adds
 * cross-template shared rules loaded via wp_enqueue_style().
 *
 * @package Instant_Maintenance_Coming_Soon_Mode
 * @since 1.0.0
 */

/* -----------------------------------------------------------------------
   Full-screen body reset (shared across all templates)
----------------------------------------------------------------------- */
html,
body {
	margin: 0;
	padding: 0;
	min-height: 100%;
}

/* -----------------------------------------------------------------------
   Accessible focus ring — overrides browser default where needed
----------------------------------------------------------------------- */
.wpts-immcs-btn:focus,
.wpts-immcs-form input:focus,
.wpts-immcs-form textarea:focus {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

/* -----------------------------------------------------------------------
   Responsive utilities
----------------------------------------------------------------------- */
@media ( max-width: 480px ) {
	.wpts-immcs-form__row {
		flex-direction: column;
	}

	.wpts-immcs-countdown {
		gap: 10px;
	}

	.wpts-immcs-countdown__number {
		font-size: 2.2rem;
	}

	.wpts-immcs-container {
		padding: 32px 16px;
	}
}
