/* ==========================================================================
   REMENKO Automotive — huisstijl v1.3
   Kleuren:  #FA6200 (merk-oranje) · #151C27 (navy) · #F4F5F7 · #3C3C3B
   Font:     New Frank
   Vormentaal: afgeronde hoeken
   ========================================================================== */

/* ---------- Fonts ---------- */
@font-face {
	font-family: "New Frank";
	src: url("../fonts/NewFrank-Regular.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "New Frank";
	src: url("../fonts/NewFrank-Medium.woff2") format("woff2");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "New Frank";
	src: url("../fonts/NewFrank-Bold.woff2") format("woff2");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "New Frank";
	src: url("../fonts/NewFrank-ExtraBold.woff2") format("woff2");
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
	--c-orange: #FA6200;
	--c-orange-dark: #d95500;
	--c-navy: #151C27;
	--c-navy-soft: #1e2836;
	--c-bg: #F4F5F7;
	--c-white: #FFFFFF;
	--c-text: #3C3C3B;
	--c-text-light: #6D6E6F;
	--radius: 16px;
	--radius-sm: 10px;
	--radius-pill: 999px;
	--shadow: 0 6px 24px rgba(21, 28, 39, 0.08);
	--shadow-hover: 0 14px 36px rgba(21, 28, 39, 0.16);
	--container: 1200px;
	--transition: 0.25s cubic-bezier(0.2, 0.6, 0.2, 1);
	--font: "New Frank", "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation: none !important; transition: none !important; }
}
body {
	margin: 0;
	font-family: var(--font);
	font-weight: 400;
	color: var(--c-text);
	background: var(--c-bg);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-orange); text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--c-orange); outline-offset: 2px; border-radius: 4px; }

.container {
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: 24px;
}

/* ---------- Header ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--c-navy);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 72px;
}
.brand {
	display: flex;
	align-items: center;
	gap: 12px;
}
.brand-logo, .brand .custom-logo { width: 44px; height: 44px; object-fit: contain; }
.brand-name {
	color: var(--c-white);
	font-weight: 800;
	font-size: 1.25rem;
	letter-spacing: 0.04em;
	line-height: 1.1;
	display: flex;
	flex-direction: column;
}
.brand-sub {
	font-weight: 500;
	font-size: 0.7rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--c-orange);
}

.site-nav .nav-list {
	display: flex;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.site-nav a {
	display: block;
	padding: 10px 16px;
	color: rgba(255, 255, 255, 0.85);
	font-weight: 500;
	border-radius: var(--radius-pill);
	transition: background var(--transition), color var(--transition);
}
.site-nav a:hover,
.site-nav .current-menu-item > a {
	color: var(--c-white);
	background: rgba(250, 98, 0, 0.18);
}

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: 0;
	padding: 10px;
	cursor: pointer;
}
.nav-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--c-white);
	border-radius: 2px;
	transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	border-radius: var(--radius-pill);
	font-weight: 700;
	font-size: 1rem;
	transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary {
	background: var(--c-orange);
	color: var(--c-white);
	box-shadow: 0 6px 20px rgba(250, 98, 0, 0.4);
}
.btn-primary:hover {
	background: var(--c-orange-dark);
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(250, 98, 0, 0.5);
}
.btn-arrow { transition: transform var(--transition); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ---------- Hero slider ---------- */
.hero {
	position: relative;
	height: min(72vh, 640px);
	min-height: 420px;
	overflow: hidden;
	background: var(--c-navy);
}
.hero-track, .hero-slide { position: absolute; inset: 0; }
.hero-slide {
	background-color: var(--c-navy);
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 0.8s ease;
	display: flex;
	align-items: center;
}
.hero-slide.is-active { opacity: 1; z-index: 1; }
.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(21, 28, 39, 0.88) 0%, rgba(21, 28, 39, 0.55) 45%, rgba(21, 28, 39, 0.15) 100%);
}
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-title {
	margin: 0 0 12px;
	color: var(--c-white);
	font-weight: 800;
	font-size: clamp(2.2rem, 5vw, 3.75rem);
	line-height: 1.08;
	max-width: 14ch;
}
.hero-text {
	margin: 0 0 28px;
	color: rgba(255, 255, 255, 0.85);
	font-size: clamp(1.05rem, 2vw, 1.3rem);
	max-width: 44ch;
}

.hero-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	width: 48px;
	height: 48px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.14);
	color: var(--c-white);
	font-size: 1.6rem;
	line-height: 1;
	cursor: pointer;
	backdrop-filter: blur(6px);
	transition: background var(--transition);
}
.hero-nav:hover { background: var(--c-orange); }
.hero-prev { left: 20px; }
.hero-next { right: 20px; }

.hero-dots {
	position: absolute;
	bottom: 22px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	display: flex;
	gap: 10px;
}
.hero-dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	cursor: pointer;
	transition: background var(--transition), width var(--transition);
}
.hero-dot.is-active {
	background: var(--c-orange);
	width: 28px;
	border-radius: var(--radius-pill);
}

/* ---------- Webshop grid ---------- */
.shops { padding: 72px 0 88px; }
.section-title {
	margin: 0 0 8px;
	font-weight: 800;
	font-size: clamp(1.7rem, 3vw, 2.3rem);
	color: var(--c-navy);
}
.section-title::after {
	content: "";
	display: block;
	width: 56px;
	height: 5px;
	margin-top: 12px;
	border-radius: var(--radius-pill);
	background: var(--c-orange);
}
.shop-grid {
	margin-top: 40px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.shop-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--c-white);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	color: var(--c-text);
	transition: transform var(--transition), box-shadow var(--transition);
}
.shop-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-hover);
}
.shop-bar {
	height: 6px;
	background: var(--shop-color, var(--c-orange));
}
.shop-media {
	height: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--c-bg);
	padding: 20px;
}
.shop-media img { max-height: 100%; object-fit: contain; }
.shop-media--placeholder {
	background:
		radial-gradient(120% 140% at 100% 0%, color-mix(in srgb, var(--shop-color, #FA6200) 22%, transparent) 0%, transparent 55%),
		var(--c-bg);
}
.shop-initial {
	font-size: 3rem;
	font-weight: 800;
	color: var(--shop-color, var(--c-orange));
	opacity: 0.9;
}
.shop-body {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 22px 24px 24px;
	flex: 1;
}
.shop-name {
	font-weight: 700;
	font-size: 1.15rem;
	color: var(--c-navy);
}
.shop-tag {
	color: var(--c-text-light);
	font-size: 0.95rem;
	flex: 1;
}
.shop-link {
	margin-top: 14px;
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--shop-color, var(--c-orange));
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.shop-link span { transition: transform var(--transition); }
.shop-card:hover .shop-link span { transform: translateX(4px); }

/* ---------- Page content ---------- */
.page-content { padding: 64px 0; }
.page-content--single { padding-top: 48px; }
.prose { max-width: 780px; }
.prose h1, .prose h2, .prose h3 { color: var(--c-navy); font-weight: 700; line-height: 1.2; }
.page-title { font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 800; }
.prose img { border-radius: var(--radius); }

/* ---------- Footer ---------- */
.site-footer {
	background: var(--c-navy);
	color: rgba(255, 255, 255, 0.75);
	padding: 56px 0 32px;
	margin-top: 40px;
}
.footer-inner { display: grid; gap: 24px; text-align: center; justify-items: center; }
.footer-logo { width: 48px; height: 48px; object-fit: contain; margin-inline: auto; }
.footer-brand p { margin: 12px 0 0; font-weight: 500; }
.footer-list {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 20px;
	list-style: none;
	margin: 0;
	padding: 0;
	justify-content: center;
}
.footer-list a { color: rgba(255, 255, 255, 0.75); font-weight: 500; }
.footer-list a:hover { color: var(--c-orange); }
.footer-copy { margin: 0; font-size: 0.85rem; color: rgba(255, 255, 255, 0.45); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
	.shop-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
	.nav-toggle { display: flex; }
	.site-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--c-navy-soft);
		display: none;
		box-shadow: 0 16px 24px rgba(0, 0, 0, 0.3);
	}
	.site-nav.is-open { display: block; }
	.site-nav .nav-list { flex-direction: column; padding: 12px; }
	.hero { min-height: 380px; }
	.hero-nav { display: none; }
}
@media (max-width: 560px) {
	.shop-grid { grid-template-columns: 1fr; }
}

/* ---------- Shop card logo (v1.1) ---------- */
.shop-logo { display: block; }
.shop-logo img { max-height: 44px; width: auto; object-fit: contain; }
.brand-logo { width: 48px; height: 48px; object-fit: contain; }

/* ---------- Formulieren ---------- */
.remenko-form { margin-top: 12px; max-width: 560px; }
.remenko-form label { display: block; font-weight: 700; color: var(--c-navy); margin-bottom: 6px; }
.remenko-form input, .remenko-form textarea {
	width: 100%;
	padding: 13px 16px;
	border: 1.5px solid #dcdfe4;
	border-radius: var(--radius-sm);
	background: var(--c-white);
	font: inherit;
	color: var(--c-text);
	transition: border-color var(--transition), box-shadow var(--transition);
}
.remenko-form input:focus, .remenko-form textarea:focus {
	outline: none;
	border-color: var(--c-orange);
	box-shadow: 0 0 0 3px rgba(250, 98, 0, 0.15);
}
.remenko-form button { border: 0; cursor: pointer; font-family: inherit; }
.hp-field { position: absolute !important; left: -9999px !important; }
.form-notice { padding: 14px 18px; border-radius: var(--radius-sm); font-weight: 500; margin: 16px 0; }
.form-notice--ok { background: #e6f4ea; color: #1e6b34; border: 1px solid #b7e0c3; }
.form-notice--err { background: #fdecec; color: #a32020; border: 1px solid #f3bcbc; }

/* ---------- Header v1.2 ---------- */
.brand-logo--wordmark { width: auto !important; height: 46px !important; max-width: 62vw; object-fit: contain; }
@media (max-width: 720px) { .brand-logo--wordmark { height: 36px !important; } }
.nav-cta {
	background: var(--c-orange);
	color: var(--c-white) !important;
	font-weight: 700;
}
.nav-cta:hover { background: var(--c-orange-dark) !important; }


/* ---------- v1.3: nav underline, footer left, mobile polish ---------- */

/* Nav: geen CTA-kleur, oranje underline bij hover/actief */
.nav-cta { background: transparent; font-weight: 500; }
.nav-cta:hover { background: transparent !important; }
.site-nav a {
	position: relative;
	border-radius: 0;
	background: none !important;
}
.site-nav a::after {
	content: "";
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: 6px;
	height: 3px;
	border-radius: var(--radius-pill);
	background: var(--c-orange);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--transition);
}
.site-nav a:hover::after,
.site-nav .current-menu-item > a::after { transform: scaleX(1); }
.site-nav a:hover { color: var(--c-white); }

/* Footer: content links */
.footer-inner {
	text-align: left;
	justify-items: start;
	grid-template-columns: 1fr;
}
.footer-logo { margin-inline: 0; }
.footer-list { justify-content: flex-start; }

/* Mobiel */
@media (max-width: 720px) {
	.header-inner { min-height: 64px; }
	.site-nav a { padding: 14px 20px; }
	.site-nav a::after { left: 20px; right: auto; width: 40px; bottom: 8px; }
	.hero { height: 62vh; min-height: 340px; }
	.hero-title { font-size: clamp(1.9rem, 8vw, 2.4rem); }
	.hero-content { padding-inline: 4px; }
	.btn { padding: 13px 22px; font-size: 0.95rem; }
	.shops { padding: 48px 0 56px; }
	.shop-media { height: 130px; }
	.container { padding-inline: 18px; }
	.footer-inner { gap: 18px; }
	.remenko-form input, .remenko-form textarea { font-size: 16px; } /* voorkomt iOS zoom */
}
@media (max-width: 400px) {
	.brand-logo--wordmark { height: 30px !important; }
}
