/* Royce Resort – Coming Soon temporary home page */

:root {
	--bg-left: #f6efe9;            /* soft beige like reference */
	--text: #2b2b2b;
	--muted: #6e6e6e;
	--accent: #c7a17a;             /* warm sand accent */
	--input-bg: #ffffffcc;
	--border: #e6dad0;
	/* Set your image path here; replace with your file e.g. url('images/your-photo.jpg') */
	--hero-img: url('bg-img.jpg');
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
	margin: 0;
	font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	color: var(--text);
	background: #fff;
}

.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* Layout */
.coming-soon {
	display: grid;
	grid-template-columns: 1.05fr 1fr; /* left heavier like reference */
	min-height: 100vh;
}

.left-panel {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	justify-content: center;
	padding: clamp(28px, 5vw, 60px);
	background: var(--bg-left);
	overflow: hidden;
    height: 100vh;
}

/* Initial animation states */
.left-panel > * {
    opacity: 0;
    transform: translateY(30px);
}

/* subtle wavy line motif */
.left-panel::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(120% 80% at -10% -20%, #ffffff99 0%, #ffffff00 60%),
							radial-gradient(120% 80% at 110% 120%, #ffffff99 0%, #ffffff00 60%),
							repeating-linear-gradient(120deg, #e9ddd48c 0 2px, #0000 2px 28px);
	opacity: 0.55;
	pointer-events: none;
}

.right-panel {
	position: relative;
	background: var(--hero-img) center/cover no-repeat;
    height: 100vh;
    opacity: 0;
}
.right-panel::after {
	/* soft vignette for readability */
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, #00000020 0%, #0000 35%, #00000020 100%);
}

/* Content styling */
.logo {
	width: 84px;
	aspect-ratio: 1;
	display: grid;
	place-items: center;
	border: 1px solid var(--border);
	color: var(--muted);
	letter-spacing: 3px;
	font-weight: 600;
	font-size: 14px;
	background: #fff;
}
.logo img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

.kicker {
	margin: 0;
	line-height: 1.2;
	color: var(--muted);
	font-weight: 400;
}
.kicker .sub { opacity: 0.9; }

.headline {
	margin: 0 0 .5rem 0;
	font-family: 'Playfair Display', Georgia, serif;
	font-weight: 700;
	font-size: clamp(30px, 6vw, 54px);
	letter-spacing: 4px;
}

.timer {
	display: inline-flex;
	align-items: center;
	gap: clamp(10px, 1.6vw, 18px);
	margin: .4rem 0 1rem;
}
.time-box {
	display: grid;
	justify-items: center;
	min-width: 70px;
}
.time-box .value {
	font-variant-numeric: tabular-nums;
	font-size: clamp(24px, 5vw, 40px);
	font-weight: 600;
}
.time-box .label {
	font-size: 11px;
	letter-spacing: 2px;
	color: var(--muted);
}
.colon { font-size: 26px; color: #999; transform: translateY(-2px); }

.copy { max-width: 46ch; color: var(--muted); }

.socials {
	display: flex;
	gap: 14px;
	list-style: none;
	padding: 0;
	margin: .5rem 0 0;
}
.socials a {
	color: var(--muted);
	font-size: 16px;
	width: 36px; height: 36px; display: grid; place-items: center;
	border: 1px solid var(--border);
	border-radius: 999px;
	background: #fff;
	transition: all .2s ease;
    text-decoration: none;
}
.socials a:hover { color: var(--text); border-color: #d5c7bc; transform: translateY(-1px); }

.subscribe {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 10px;
	align-items: center;
	margin-top: 1rem;
	max-width: 520px;
}
.subscribe input[type="email"] {
	appearance: none;
	border: 1px solid var(--border);
	border-radius: 999px;
	padding: 14px 16px;
	background: var(--input-bg);
	outline: none;
	transition: border-color .2s ease, box-shadow .2s ease;
}
.subscribe input[type="email"]:focus { border-color: #d0b9a7; box-shadow: 0 0 0 3px #e7d9cf; }

.subscribe button {
	border: none;
	border-radius: 999px;
	padding: 14px 22px;
	background: var(--accent);
	color: #fff;
	font-weight: 600;
	letter-spacing: .5px;
	cursor: pointer;
	transition: filter .2s ease, transform .05s ease;
}
.subscribe button:active { transform: translateY(1px); }
.subscribe button:hover { filter: brightness(0.95); }

.subscribe .thanks {
	grid-column: 1 / -1;
	margin: 0;
	opacity: 0;
	transform: translateY(-4px);
	transition: .2s ease;
	font-size: 14px;
	color: #3a6e47;
}
.subscribe.done .thanks { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 940px) {
	.coming-soon { grid-template-columns: 1fr; }
	.right-panel { height: 46vh; order: -1; }
	.left-panel { padding-top: 28px; }
}

@media (max-width: 480px) {
	.time-box { min-width: 58px; }
	.logo { width: 70px; font-size: 12px; }
}

