/*
Theme Name: Carehouse Huoltosivu
Theme URI: https://carehouse.fi
Author: Carehouse.fi
Author URI: https://carehouse.fi
Description: Huoltosivuteema hoivapalvelulle.
Version: 1.0.0
Requires at least: 6.9
Tested up to: 6.9
Requires PHP: 8.1
Text Domain: carehouse
*/

:root {
	--blue-soft: #e8f3ff;
	--blue-main: #5d90c5;
	--green-soft: #e9f4ec;
	--green-main: #6ba27a;
	--text: #223242;
	--white: #ffffff;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	min-height: 100%;
}

body {
	font-family: "Inter", "Segoe UI", sans-serif;
	color: var(--text);
	overflow-x: hidden;
}

.maintenance-page {
	min-height: 100vh;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 2rem 1.25rem;
	background: linear-gradient(135deg, var(--blue-soft), var(--green-soft));
	background-size: 180% 180%;
	animation: bgShift 12s ease-in-out infinite;
}

.eyebrow {
	margin: 0 0 1rem;
	font-size: 0.82rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--blue-main);
}

.maintenance-content {
	width: 100%;
	max-width: 44rem;
	text-align: center;
}

.maintenance-content h1 {
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(2rem, 4.5vw, 3.3rem);
	line-height: 1.2;
	margin: 0 0 1rem;
}

.lead {
	font-size: clamp(1rem, 2.2vw, 1.2rem);
	line-height: 1.7;
	margin: 0 auto 1.5rem;
	max-width: 38rem;
}

.contact {
	font-size: 1.02rem;
	line-height: 1.8;
}

.contact p {
	margin: 0;
}

.contact a {
	color: var(--blue-main);
	text-decoration: none;
	font-weight: 600;
}

.contact a:hover,
.contact a:focus-visible {
	text-decoration: underline;
}

@keyframes bgShift {
	0%,
	100% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
}
