/*
Theme Name: Minimly Vault
Theme URI: https://stonetowerwinery.com
Template: minimly
Text Domain: minimly-vault
Author: Stone Tower Winery
Description: Lightweight branded child theme for The Vault.
Version: 1.0.0
Requires at least: 6.6
Requires PHP: 8.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

:root {
	color-scheme: dark;
}

html,
body {
	min-height: 100%;
}

body {
	background: #101814;
	margin: 0;
}

.vault-coming-soon {
	align-items: center;
	background:
		radial-gradient(circle at 50% 44%, rgba(173, 152, 65, 0.13), transparent 34rem),
		linear-gradient(145deg, #17241e 0%, #0d1411 62%, #090d0b 100%);
	box-sizing: border-box;
	color: #faf9f5;
	display: flex;
	justify-content: center;
	min-height: 100svh;
	overflow: hidden;
	padding: clamp(2rem, 6vw, 5rem);
	position: relative;
	text-align: center;
}

.vault-coming-soon::before,
.vault-coming-soon::after {
	border: 1px solid rgba(173, 152, 65, 0.36);
	content: "";
	inset: clamp(1rem, 2.5vw, 2rem);
	pointer-events: none;
	position: absolute;
}

.vault-coming-soon::after {
	border-color: rgba(250, 249, 245, 0.08);
	inset: clamp(1.35rem, 3.1vw, 2.5rem);
}

.vault-coming-soon__content {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: clamp(1.75rem, 4vw, 3.5rem);
	position: relative;
	width: min(100%, 64rem);
	z-index: 1;
}

.vault-coming-soon__logo {
	display: block;
	height: auto;
	max-width: min(74vw, 42rem);
	width: 100%;
}

.vault-coming-soon__rule {
	background: #ad9841;
	height: 1px;
	width: clamp(4rem, 12vw, 8rem);
}

.vault-coming-soon__title {
	color: #faf9f5;
	font-family: "Lora", Georgia, serif;
	font-size: clamp(3.5rem, 11vw, 9rem);
	font-weight: 400;
	letter-spacing: 0.035em;
	line-height: 0.88;
	margin: 0;
	text-transform: uppercase;
}

.vault-coming-soon__status {
	color: #ad9841;
	font-family: "Lora", Georgia, serif;
	font-size: clamp(0.72rem, 1.4vw, 0.92rem);
	font-weight: 600;
	letter-spacing: 0.38em;
	margin: 0 -0.38em 0 0;
	text-transform: uppercase;
}

@media (max-width: 600px) {
	.vault-coming-soon {
		padding-inline: 2.25rem;
	}

	.vault-coming-soon__logo {
		max-width: min(82vw, 30rem);
	}

	.vault-coming-soon__title {
		font-size: clamp(3rem, 17vw, 5.5rem);
	}
}

@media (prefers-reduced-motion: no-preference) {
	.vault-coming-soon__content {
		animation: vault-reveal 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
	}

	@keyframes vault-reveal {
		from {
			opacity: 0;
			transform: translateY(18px);
		}

		to {
			opacity: 1;
			transform: translateY(0);
		}
	}
}
