﻿/*
Theme Name: Klassiken Gemuese Doener Kebap
Theme URI: https://www.klassiken.pl
Author: Klassiken
Author URI: https://www.klassiken.pl
Description: Modern one-page WordPress theme for Klassiken in Bialystok. Red and white brand colors.
Version: 1.4.1
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: klassiken
Tags: food-and-drink, one-column, custom-logo, custom-menu, featured-images
*/
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Shrikhand&display=swap");

:root {
	--red: #d11f37;
	--red-dark: #9e1528;
	--red-mid: #e8364c;
	--white: #ffffff;
	--off: #fff5f6;
	--ink: #14090b;
	--muted: #6b4f55;
	--line: #f0c8ce;
	--header-h: 76px;
	--font: "DM Sans", system-ui, sans-serif;
	--display: "Shrikhand", Georgia, serif;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font);
	color: var(--ink);
	background: var(--white);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--red);
	text-decoration: none;
	transition: color 0.2s var(--ease);
}

a:hover {
	color: var(--red-dark);
}

h1,
h2,
h3 {
	font-family: var(--display);
	line-height: 1.05;
	letter-spacing: 0.01em;
	margin: 0 0 0.45em;
	font-weight: 400;
	text-wrap: balance;
}

h1 {
	font-size: clamp(2.1rem, 6.2vw, 4.6rem);
}
h2 {
	font-size: clamp(2rem, 4.5vw, 3.4rem);
}
h3 {
	font-size: clamp(1.35rem, 2vw, 1.7rem);
}

p {
	margin: 0 0 1em;
}

.container {
	width: min(1180px, calc(100% - 40px));
	margin-inline: auto;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 8px;
	background: var(--red);
	color: #fff;
	padding: 10px 14px;
	z-index: 1000;
	font-weight: 700;
}

.skip-link:focus {
	left: 8px;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

/* ——— Header ——— */
.site-header {
	position: sticky;
	top: 0;
	z-index: 60;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(14px);
	border-bottom: 4px solid var(--red);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: var(--header-h);
	gap: 16px;
}

.site-brand {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.brand-logo,
.custom-logo {
	height: 44px;
	width: auto;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 10px;
}

.nav-list {
	display: flex;
	align-items: center;
	gap: 2px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-list a {
	display: block;
	padding: 10px 14px;
	color: var(--ink);
	font-weight: 700;
	font-size: 0.92rem;
	border-radius: 999px;
}

.nav-list a:hover {
	background: var(--off);
	color: var(--red);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 26px;
	border-radius: 999px;
	font-weight: 800;
	font-size: 0.95rem;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
	line-height: 1.15;
}

.btn:hover {
	transform: translateY(-2px);
}

.btn-primary,
.btn-nav {
	background: var(--red);
	color: #fff !important;
	border-color: var(--red);
	box-shadow: 0 10px 28px rgba(209, 31, 55, 0.28);
}

.btn-primary:hover,
.btn-nav:hover {
	background: var(--red-dark);
	border-color: var(--red-dark);
	color: #fff !important;
}

.btn-order {
	background: var(--red) !important;
}

.btn-phone {
	background: var(--ink) !important;
	border-color: var(--ink) !important;
}

.btn-phone:hover {
	background: #000 !important;
	border-color: #000 !important;
}

.nav-list .menu-order > a {
	color: var(--red) !important;
	font-weight: 800;
}

.btn-outline {
	background: transparent;
	color: #fff !important;
	border-color: #fff;
}

.btn-outline:hover {
	background: #fff;
	color: var(--red) !important;
}

.btn-white {
	background: #fff;
	color: var(--red) !important;
	border-color: #fff;
}

.btn-white:hover {
	background: var(--off);
}

.nav-toggle {
	display: none;
	width: 48px;
	height: 48px;
	border: 2px solid var(--red);
	background: #fff;
	border-radius: 14px;
	padding: 11px;
	cursor: pointer;
}

.nav-toggle span {
	display: block;
	height: 2.5px;
	background: var(--red);
	margin: 6px 0;
	border-radius: 2px;
	transition: 0.2s;
}

/* ——— Hero ——— */
.hero {
	position: relative;
	min-height: min(78vh, 720px);
	display: grid;
	align-items: end;
	color: var(--ink);
	overflow: hidden;
	background: #fff;
}

.hero-media {
	position: absolute;
	inset: 0;
}

.hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 70% center;
	transform: scale(1.02);
	animation: heroZoom 20s var(--ease) infinite alternate;
}

@keyframes heroZoom {
	from { transform: scale(1.02); }
	to { transform: scale(1.08); }
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(100deg, #ffffff 0%, rgba(255, 255, 255, 0.94) 26%, rgba(255, 255, 255, 0.4) 44%, rgba(255, 255, 255, 0) 60%);
}

.hero-content {
	position: relative;
	z-index: 1;
	padding: 56px 0 64px;
	animation: fadeUp 0.8s var(--ease) both;
	max-width: 28rem;
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-kicker {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--red);
	margin: 0 0 14px;
}

.hero-title {
	font-family: var(--display);
	font-size: clamp(2.4rem, 5.5vw, 4rem);
	line-height: 1.05;
	color: var(--red);
	margin: 0 0 16px;
	font-weight: 400;
}

.hero-lead {
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	line-height: 1.55;
	color: var(--ink);
	font-weight: 600;
	margin: 0;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.btn-light {
	background: #fff;
	color: var(--red) !important;
	border-color: var(--red);
}

.btn-light:hover {
	background: var(--red);
	color: #fff !important;
}

.eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-size: 0.72rem;
	font-weight: 800;
	color: var(--red);
	margin-bottom: 10px;
}

/* Ingredient ribbon */
.ingredient-ribbon {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 0;
	background: var(--red);
}

.ingredient-ribbon figure {
	margin: 0;
	aspect-ratio: 1.15;
	overflow: hidden;
	position: relative;
}

.ingredient-ribbon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s var(--ease);
}

.ingredient-ribbon figure:hover img {
	transform: scale(1.08);
}

.ingredient-ribbon figcaption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 10px 12px;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
	color: #fff;
	font-size: 0.78rem;
	font-weight: 700;
}

/* Sections */
.section {
	padding: clamp(64px, 9vw, 110px) 0;
	scroll-margin-top: calc(var(--header-h) + 12px);
}

.section-head {
	max-width: 620px;
	margin: 0 auto 48px;
	text-align: center;
}

.section-head p {
	color: var(--muted);
	font-size: 1.05rem;
}

.about-grid,
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(28px, 5vw, 64px);
	align-items: center;
}

.about-copy strong {
	color: var(--red);
}

.about-tagline {
	font-weight: 800;
	font-size: 1.15rem;
	color: var(--red);
	margin-top: 8px;
}

.about-visual {
	display: grid;
	grid-template-columns: 1.25fr 0.85fr;
	gap: 14px;
	align-items: end;
}

.about-photo {
	margin: 0;
	overflow: hidden;
	border: 4px solid var(--red);
	box-shadow: 18px 18px 0 var(--red);
}

.about-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-photo-main {
	min-height: 440px;
}

.about-photo-side {
	min-height: 260px;
	margin-bottom: 36px;
	box-shadow: 12px 12px 0 var(--ink);
	border-color: var(--ink);
}

/* Features — no cards, photo columns */
.section-features {
	background: var(--red);
	color: #fff;
}

.section-features .eyebrow {
	color: #ffc4cc;
}

.section-features .section-head p {
	color: #ffdce1;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	border: 2px solid rgba(255, 255, 255, 0.35);
}

.feature-item {
	padding: 28px 22px 32px;
	border-right: 1px solid rgba(255, 255, 255, 0.28);
	background: transparent;
}

.feature-item:last-child {
	border-right: 0;
}

.feature-item h3 {
	margin-bottom: 10px;
}

.feature-item p {
	margin: 0;
	color: #ffe4e8;
	font-size: 0.95rem;
}

.feature-num {
	display: block;
	font-family: var(--display);
	font-size: 2.4rem;
	line-height: 1;
	margin-bottom: 14px;
	opacity: 0.55;
}

.highlight-band {
	margin-top: 48px;
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	min-height: 340px;
	background: #fff;
	color: var(--ink);
	overflow: hidden;
}

.highlight-band img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	min-height: 300px;
}

.highlight-copy {
	padding: clamp(28px, 4vw, 48px);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.highlight-copy p {
	color: var(--muted);
}

/* Online order widget */
.section-order {
	background: var(--off);
}

.order-widget {
	background: #fff;
	border: 3px solid var(--red);
	padding: clamp(16px, 3vw, 28px);
	min-height: 320px;
	box-shadow: 16px 16px 0 rgba(209, 31, 55, 0.12);
}

.order-widget-full {
	min-height: 480px;
}

.order-page-link {
	text-align: center;
	margin: 28px 0 0;
}

.order-help {
	margin-top: 28px;
	text-align: center;
	color: var(--muted);
}

.section-order-page .section-head h1,
.section-about h1,
.section-features h1,
.section-gallery h1,
.section-reviews h1,
.section-contact h1 {
	font-family: var(--display);
	font-size: clamp(2rem, 4.5vw, 3.4rem);
	font-weight: 400;
	margin: 0 0 0.45em;
	line-height: 1.05;
}

/* Gallery */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 8px;
}

.gallery-item {
	margin: 0;
	padding: 0;
	border: 0;
	background: #1a0a0d;
	overflow: hidden;
	cursor: zoom-in;
	aspect-ratio: 1;
}

.gallery-item:nth-child(1) {
	grid-column: span 2;
	grid-row: span 2;
	aspect-ratio: auto;
	min-height: 100%;
}

.gallery-item:nth-child(7) {
	grid-column: span 2;
	grid-row: span 2;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s var(--ease), filter 0.35s;
	filter: saturate(1.05);
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
	transform: scale(1.07);
	filter: saturate(1.15);
}

/* Reviews */
.section-reviews {
	background:
		radial-gradient(ellipse at top, #fff 0%, var(--off) 55%, #ffe8eb 100%);
}

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.review-card {
	background: #fff;
	padding: 28px 24px;
	border-left: 6px solid var(--red);
	box-shadow: 0 16px 40px rgba(209, 31, 55, 0.1);
}

.stars {
	color: var(--red);
	letter-spacing: 3px;
	margin-bottom: 12px;
	font-size: 1.05rem;
}

.review-card blockquote {
	margin: 0 0 18px;
	font-size: 1rem;
}

.review-card footer {
	display: flex;
	justify-content: space-between;
	color: var(--muted);
	font-size: 0.88rem;
	font-weight: 600;
}

/* Contact */
.contact-list {
	list-style: none;
	padding: 0;
	margin: 0 0 28px;
}

.contact-list li {
	margin-bottom: 18px;
}

.contact-label {
	display: block;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-weight: 800;
	color: var(--red);
	margin-bottom: 4px;
}

.contact-list a {
	color: var(--ink);
	font-weight: 700;
	font-size: 1.05rem;
}

.hours-box {
	background: var(--off);
	padding: 24px;
	border-top: 4px solid var(--red);
}

.hours-list {
	list-style: none;
	padding: 0;
	margin: 0 0 14px;
}

.hours-list li {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid var(--line);
	font-weight: 700;
}

.hours-extra {
	margin: 14px 0 0;
	color: var(--muted);
	font-size: 0.92rem;
}

.contact-map {
	min-height: 480px;
	overflow: hidden;
	border: 4px solid var(--red);
	box-shadow: 16px 16px 0 var(--red);
}

.contact-map iframe {
	width: 100%;
	height: 100%;
	min-height: 480px;
	border: 0;
	display: block;
}

.cta-banner {
	background: var(--ink);
	color: #fff;
	padding: 36px 0;
	scroll-margin-top: calc(var(--header-h) + 12px);
}

.cta-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.cta-inner img {
	width: 96px;
	border-radius: 10px;
}

.cta-inner h2 {
	margin: 0 0 6px;
	font-size: clamp(1.5rem, 3.5vw, 2.3rem);
	color: #fff;
}

.cta-inner p {
	margin: 0;
	color: #ffb3be;
}

/* Footer */
.site-footer {
	background: #fff;
	border-top: 4px solid var(--red);
	padding-top: 52px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1.1fr;
	gap: 36px;
	padding-bottom: 40px;
}

.footer-brand p,
.footer-col p,
.footer-note {
	color: var(--muted);
}

.footer-col h3 {
	color: var(--red);
}

.social-links {
	display: flex;
	gap: 10px;
	margin-top: 16px;
}

.social-links a {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--red);
	color: #fff;
	display: grid;
	place-items: center;
}

.social-links a:hover {
	background: var(--red-dark);
	color: #fff;
}

.footer-bottom {
	border-top: 1px solid var(--line);
	padding: 18px 0;
	font-size: 0.88rem;
	color: var(--muted);
}

.content-narrow {
	max-width: 760px;
}

.page-template-page-zamow-online .content-narrow,
.page-id-order .content-narrow {
	max-width: 1100px;
}

/* Lightbox */
.lightbox {
	position: fixed;
	inset: 0;
	background: rgba(10, 4, 6, 0.94);
	z-index: 90;
	display: grid;
	place-items: center;
	padding: 24px;
}

.lightbox[hidden] {
	display: none !important;
}

.lightbox-img {
	max-width: min(92vw, 1100px);
	max-height: 86vh;
	object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
	position: absolute;
	background: var(--red);
	color: #fff;
	border: 0;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	font-size: 1.5rem;
	cursor: pointer;
}

.lightbox-close {
	top: 18px;
	right: 18px;
}
.lightbox-prev {
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
}
.lightbox-next {
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
}

@media (max-width: 980px) {
	.about-grid,
	.contact-grid,
	.highlight-band,
	.features-grid,
	.reviews-grid,
	.footer-grid,
	.ingredient-ribbon {
		grid-template-columns: 1fr 1fr;
	}

	.features-grid {
		grid-template-columns: 1fr 1fr;
	}

	.feature-item:nth-child(2) {
		border-right: 0;
	}

	.feature-item:nth-child(1),
	.feature-item:nth-child(2) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.28);
	}

	.gallery-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.gallery-item:nth-child(1),
	.gallery-item:nth-child(7) {
		grid-column: span 1;
		grid-row: span 1;
		aspect-ratio: 1;
	}

	.cta-inner {
		flex-direction: column;
		text-align: center;
	}

	.ingredient-ribbon figure:nth-child(n + 5) {
		display: none;
	}
}

@media (max-width: 760px) {
	.nav-toggle {
		display: block;
	}

	.site-header {
		position: relative;
	}

	.site-nav {
		display: none;
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		background: #fff;
		border-bottom: 4px solid var(--red);
		padding: 14px 18px 22px;
		flex-direction: column;
		align-items: stretch;
		box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
	}

	.site-nav.is-open {
		display: flex;
	}

	.nav-list {
		flex-direction: column;
		margin-bottom: 12px;
	}

	.hero {
		min-height: 70vh;
		align-items: end;
	}

	.hero-content {
		padding: 36px 0 44px;
		max-width: 100%;
	}

	.hero-overlay {
		background:
			linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.88) 58%, #fff 100%);
	}

	.hero-title {
		font-size: clamp(2.2rem, 12vw, 3.2rem);
	}

	.about-grid,
	.contact-grid,
	.highlight-band,
	.features-grid,
	.reviews-grid,
	.footer-grid,
	.about-visual,
	.ingredient-ribbon {
		grid-template-columns: 1fr;
	}

	.feature-item {
		border-right: 0 !important;
		border-bottom: 1px solid rgba(255, 255, 255, 0.28);
	}

	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.about-photo {
		box-shadow: 10px 10px 0 var(--red);
	}

	.about-photo-side {
		margin-bottom: 0;
	}

	.contact-map {
		box-shadow: 10px 10px 0 var(--red);
		min-height: 320px;
	}

	.contact-map iframe {
		min-height: 320px;
	}

	.hero-scroll {
		display: none;
	}

	.ingredient-ribbon figure:nth-child(n + 3) {
		display: none;
	}
}
