/*
Theme Name: Blocksy Child — Arvydai Staging
Template: blocksy
Description: Stripped-down child theme for arvydai.scanify.lt prototype. Renders only a hero on the homepage with a CTA to /rezervacija. Hides nav/footer chrome site-wide. Not for production.
Version: 0.1.0
Text Domain: arvydai-staging
*/

/* ---------- Brand palette (mirrors prod arvydai.lt) ---------- */
:root {
	--ar-brown: #6c5543;
	--ar-rust: #7f4d2a;
	--ar-forest: #213631;
	--ar-forest-deep: #0f1a17;
	--ar-light: #f0f2f3;
	--ar-white: #ffffff;
}

/* ---------- Hide chrome site-wide (staging-only) ----------
   Keep header logo bar but drop nav, search, footer widgets, breadcrumbs,
   sidebars. We want the visitor to focus on hero → reservation. */
.ct-header [data-id="menu"],
.ct-header [data-id="search"],
.ct-header [data-id="account"],
.ct-header [data-id="cart"],
.ct-header [data-id="trigger"],
.ct-header [data-id="contact-info"],
.ct-header [data-id="socials"],
.ct-header [data-id="button"],
#offcanvas,
.ct-footer,
.ct-breadcrumbs,
.entry-meta,
aside.sidebar,
#sidebar {
	display: none !important;
}

body {
	font-family: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	margin: 0;
}

/* ---------- Front-page hero ----------
   Specificity: every text node uses .ar-hero .ar-hero__X to outrank
   Blocksy's heading-color and link-color rules from the parent theme. */
.ar-hero {
	position: relative;
	min-height: 65vh;
	display: flex;
	align-items: flex-end;
	background-image: url('assets/hero.jpg');
	background-size: cover;
	background-position: center center;
	padding: 0 6vw 8vh;
	color: #fff;
	overflow: hidden;
}

.ar-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	/* Darker bottom-weighted gradient so text reads cleanly without
	   killing the image entirely. */
	background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.78) 100%);
	z-index: 1;
}

.ar-hero__inner {
	position: relative;
	z-index: 2;
	max-width: 900px;
	width: 60%;
}

.ar-hero .ar-hero__eyebrow {
	font-size: 12px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-weight: 600;
	margin: 0 0 18px;
	color: #fff;
	opacity: 0.92;
	text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.ar-hero .ar-hero__headline {
	font-size: 56px;
	line-height: 1.1;
	font-weight: 700;
	margin: 0 0 20px;
	color: #fff;
	text-shadow: 0 2px 12px rgba(0,0,0,0.55);
}

.ar-hero .ar-hero__sub {
	font-size: 18px;
	line-height: 1.6;
	margin: 0 0 32px;
	max-width: 640px;
	color: #fff;
	opacity: 0.95;
	text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.ar-hero__cta {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: var(--ar-brown);
	color: var(--ar-white);
	padding: 18px 36px;
	border-radius: 15px;
	border: 2px solid var(--ar-brown);
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.ar-hero__cta:hover,
.ar-hero__cta:focus {
	background: var(--ar-rust);
	border-color: var(--ar-rust);
	color: var(--ar-white);
	transform: translateY(-2px);
}

.ar-hero__cta-arrow {
	width: 18px;
	height: 18px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
	.ar-hero {
		align-items: center;
		text-align: center;
		padding: 120px 6vw;
	}
	.ar-hero__inner { width: 100%; margin: 0 auto; }
	.ar-hero__sub { margin-left: auto; margin-right: auto; }
	.ar-hero__headline { font-size: 50px; }
}

@media (max-width: 767px) {
	.ar-hero { min-height: 90vh; padding: 100px 5vw; }
	.ar-hero__headline { font-size: 35px; }
	.ar-hero__sub { font-size: 16px; }
	.ar-hero__cta { padding: 14px 28px; font-size: 15px; }
}
