/*
Theme Name: JFVisuals Holding
Theme URI: https://jfvisuals.au
Author: JFVisuals
Description: A lightweight, standalone single-page holding/coming-soon theme for JFVisuals. Displays a "site under construction" message with call-to-action links. No page-builder or plugin dependencies. Mirrors the brand palette and typography of the main JFVisuals site.
Version: 1.0.1
Requires at least: 5.0
Requires PHP: 7.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jfvisuals-holding
*/

/* ---------- Reset / base ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

:root {
	/* Brand tokens taken from the live JFVisuals site */
	--bg: #ffffff;
	--text: #000000;
	--text-muted: #555555;
	--accent: #0065f2;          /* brand blue */
	--accent-hover: #488ff2;
	--btn-secondary-bg: #eef6ff;
	--btn-secondary-bg-hover: #ffffff;
	--border: rgba(0, 0, 0, 0.12);
	--radius: 2px;              /* brand uses 2px button radius */
	--maxw: 720px;

	--font-heading: "Tenor Sans", sans-serif;
	--font-body: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	position: relative;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-body);
	font-weight: 400;
	line-height: 1.4;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	min-height: 100vh;
	min-height: 100dvh; /* avoids the mobile address-bar height jump */
	display: flex;
	flex-direction: column;
}

/* Full-bleed background photo + white scrim so text stays readable.
   The photo is mostly white, so a translucent white overlay keeps the
   brand's black text / blue accents legible everywhere. Tweak the two
   rgba alpha values below to make the photo more (lower) or less (higher)
   visible. */
body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.62)),
		url("https://jfvisuals.au/wp-content/uploads/2023/12/PXL_20220304_161740135.MP-1-scaled.jpg")
			center / cover no-repeat;
}

/* ---------- Layout ---------- */
.site {
	position: relative;
	z-index: 1;
	flex: 1 0 auto;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	min-height: 100dvh;
}

.site-header {
	padding: 2.5rem 1.5rem 0;
	text-align: center;
}

.site-logo img {
	display: inline-block;
	width: auto;
	height: 60px;
	max-width: 240px;
}

.site-content {
	flex: 1 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 3rem 1.5rem;
}

.holding {
	width: 100%;
	max-width: var(--maxw);
	text-align: center;
}

.holding__eyebrow {
	display: inline-block;
	margin-bottom: 1.5rem;
	font-family: var(--font-body);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--accent);
}

.holding__title {
	margin: 0 0 1.25rem;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: clamp(2rem, 6vw, 3.25rem);
	line-height: 1.15;
}

.holding__text {
	margin: 0 auto 2.75rem;
	max-width: 34rem;
	color: var(--text-muted);
	font-size: 1.05rem;
}

/* ---------- CTA buttons ---------- */
.cta-group {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	justify-content: center;
}

.cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 1.7rem;
	border: 1px solid transparent;
	border-radius: var(--radius);
	background: var(--btn-secondary-bg);
	color: var(--accent);
	font-family: var(--font-body);
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-decoration: none;
	transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.cta:hover,
.cta:focus {
	background: var(--btn-secondary-bg-hover);
	color: var(--accent);
	transform: translateY(-2px);
}

.cta--primary {
	background: var(--accent);
	color: #ffffff;
}

.cta--primary:hover,
.cta--primary:focus {
	background: var(--accent-hover);
	color: #ffffff;
}

/* ---------- Footer ---------- */
.site-footer {
	flex-shrink: 0;
	padding: 2.5rem 1.5rem;
	text-align: center;
	color: var(--text);
	font-size: 0.85rem;
}

.footer-socials {
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem;
	justify-content: center;
	margin-bottom: 1rem;
}

.footer-socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	/* 24px icon + padding -> ~44px tap target (Apple/Google touch guidance) */
	padding: 0.6rem;
	color: var(--text);
	transition: color 0.3s ease, opacity 0.3s ease;
}

/* Brand behaviour: dim siblings on hover, highlight the hovered icon */
.footer-socials:hover a {
	opacity: 0.5;
}

.footer-socials a:hover,
.footer-socials a:focus {
	opacity: 1;
	color: var(--accent);
}

.footer-address {
	margin-bottom: 0.4rem;
	color: var(--text-muted);
}

.footer-copy {
	letter-spacing: 0.05em;
	color: var(--text-muted);
}

/* ---------- Tablets / small laptops ---------- */
@media (max-width: 600px) {
	.site-header {
		padding-top: 2rem;
	}

	.site-content {
		padding: 2rem 1.25rem;
	}

	.holding__text {
		font-size: 1rem;
	}
}

/* ---------- Phones ---------- */
@media (max-width: 480px) {
	.site-logo img {
		height: 52px;
	}

	.cta-group {
		flex-direction: column;
		gap: 0.75rem;
	}

	.cta {
		width: 100%;
	}
}
