/* ============================================
   CLASSIC Template — Serif, light blue, sharp
   Replica of kadernice.jaknalokalnimarketing.cz
   ============================================ */

.template-classic {
	--wv3-font-heading: "Lora", Georgia, serif;
	--wv3-font-body: "Work Sans", system-ui, -apple-system, sans-serif;
	--wv3-font-weight-heading: 500;
	--wv3-radius-sm: 0;
	--wv3-radius-md: 0;
	--wv3-radius-lg: 0;
	--wv3-radius-xl: 0;
	/* --wv3-accent-bg is now dynamic — derived from --wv3-primary in base.css :root */
}

/* Heading font-weight — configurable via --wv3-font-weight-heading */
.template-classic h1,
.template-classic h2,
.template-classic h3,
.template-classic h4,
.template-classic h5,
.template-classic h6,
.template-classic .wv3-header__site-name,
.template-classic .wv3-footer__brand-name,
.template-classic .wv3-footer__site-name {
	font-weight: var(--wv3-font-weight-heading, 500);
}

/* Header — light blue background */
.template-classic .wv3-header {
	background: var(--wv3-accent-bg);
	border-bottom: none;
}

.template-classic .wv3-header.scrolled {
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* Header CTA — outline style */
.template-classic .wv3-header__cta {
	background: transparent;
	color: var(--wv3-text);
	border: 1px solid var(--wv3-border);
	border-radius: 0;
}

.template-classic .wv3-header__cta:hover {
	background: var(--wv3-text);
	color: #fff;
	border-color: var(--wv3-text);
}

/* Buttons — sharp, dark filled */
.template-classic .wv3-btn {
	border-radius: 0;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: 0.875rem;
}

.template-classic .wv3-btn--primary {
	background: var(--wv3-text);
	color: #fff;
	border: 2px solid var(--wv3-text);
}

.template-classic .wv3-btn--primary:hover {
	background: transparent;
	color: var(--wv3-text);
}

.template-classic .wv3-btn--secondary {
	border: 2px solid var(--wv3-text);
	color: var(--wv3-text);
}

.template-classic .wv3-btn--secondary:hover {
	background: transparent;
	color: var(--wv3-text);
	border-color: var(--wv3-text);
}

/* Cards — sharp, solid CTA buttons */
.template-classic .wv3-card__text {
	color: var(--wv3-text);
}

.template-classic .wv3-card {
	box-shadow: none;
	border: 1px solid var(--wv3-border);
	border-radius: 0;
	transition: opacity 0.5s ease, transform 0.5s ease, box-shadow var(--wv3-transition-base), border-color var(--wv3-transition-fast);
}

/* Animation override — ensure cards animate in CLASSIC template */
body.wv3-animate.template-classic .wv3-card {
	opacity: 0;
	transform: translateY(20px);
}

body.wv3-animate.template-classic .wv3-card.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Service cards — no border, grey bg */
.template-classic .wv3-services__card {
	border: none;
	background: var(--wv3-bg-light);
}

.template-classic .wv3-card:hover {
	box-shadow: none;
	border-color: var(--wv3-text);
	transform: none;
}

.template-classic .wv3-card__image {
	border-radius: 0;
}

.template-classic .wv3-card__cta .wv3-btn {
	background: var(--wv3-text);
	color: #fff;
	border: 2px solid var(--wv3-text);
}

.template-classic .wv3-card__cta .wv3-btn:hover {
	background: transparent;
	color: var(--wv3-text);
}

/* Alternating light blue sections */
.template-classic .wv3-section--light {
	background-color: var(--wv3-bg-light);
}

.template-classic .wv3-gallery {
	background-color: var(--wv3-accent-bg);
}

.template-classic .wv3-about {
	background-color: var(--wv3-accent-bg);
	padding: var(--wv3-space-section) 0;
}

.template-classic .wv3-process {
	background-color: var(--wv3-accent-bg);
}

.template-classic .wv3-booking__wrapper {
	border-radius: 0;
}

.template-classic .wv3-contact {
	background-color: #fff;
}

/* Section title — line accent */
.template-classic .wv3-section__title {
	position: relative;
	padding-bottom: var(--wv3-space-md);
}

.template-classic .wv3-section__title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 2px;
	background: var(--wv3-primary);
}

/* Left-aligned titles get left-aligned underline */
.template-classic .wv3-business-info__card .wv3-section__title::after,
.template-classic .wv3-business-info__details .wv3-section__title::after {
	left: 0;
	transform: none;
}

/* Hero */
.template-classic .wv3-hero {
	background-color: var(--wv3-bg-light);
}

.template-classic .wv3-hero__image {
}

.template-classic .wv3-hero__badge {
	border-radius: 0;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: 0.75rem;
}

.template-classic .wv3-hero__subtitle {
	font-size: clamp(0.9375rem, 2vw, 1.1875rem);
}

.template-classic .wv3-hero__review-badge {
	color: var(--wv3-text-secondary);
	opacity: 0.8;
}

.template-classic .wv3-hero__image img {
	border-radius: 0;
}

/* Gallery — sharp */
.template-classic .wv3-gallery__item {
	border-radius: 0;
	border: 1px solid transparent;
}

/* Reviews — text styling */
.template-classic .wv3-reviews__text {
	font-family: "Lora", Georgia, serif;
}

.template-classic .wv3-reviews__text::before {
	content: "\201C";
	display: block;
	font-size: 3rem;
	color: var(--wv3-primary);
	opacity: 0.2;
	font-family: "Lora", Georgia, serif;
	line-height: 0.8;
	margin-bottom: var(--wv3-space-sm);
}

/* Process — vertical timeline */
.template-classic .wv3-process__grid {
	display: flex;
	flex-direction: column;
	gap: 0;
	max-width: 600px;
	margin: 0 auto 0;
}

.template-classic .wv3-process__step {
	display: flex;
	gap: var(--wv3-space-lg);
	text-align: left;
	padding: 0 0 var(--wv3-space-lg);
}

.template-classic .wv3-process__step:last-child {
	padding-bottom: 0;
}

.template-classic .wv3-process__step:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 56px;
	left: 27px;
	width: 2px;
	height: calc(100% - 56px);
	background: var(--wv3-primary);
	right: auto;
}

.template-classic .wv3-process__marker {
	flex-shrink: 0;
	justify-content: flex-start;
}

.template-classic .wv3-process__number {
	border-radius: 0;
	background: transparent;
	border: 2px solid var(--wv3-primary);
	color: var(--wv3-primary);
}

.template-classic .wv3-process__content {
	padding-top: var(--wv3-space-md);
}

/* Pricing — grey wrapper, no borders */
.template-classic .wv3-pricing {
	background-color: var(--wv3-bg-light);
}

.template-classic .wv3-pricing__table {
	box-shadow: none;
	border: none;
	border-radius: 0;
	background: transparent;
}

.template-classic .wv3-pricing__row {
	border-bottom: 1px solid var(--wv3-border);
	background: var(--wv3-bg);
	border-left: 3px solid transparent;
	padding-right: var(--wv3-space-2xl);
	transition: border-color var(--wv3-transition-fast), background var(--wv3-transition-fast), opacity 0.5s ease, transform 0.5s ease;
}

.template-classic .wv3-pricing__row:hover {
	border-left-color: var(--wv3-primary);
	background: var(--wv3-bg-light);
}

.template-classic .wv3-pricing__row:last-child {
	border-bottom: none;
}

.template-classic .wv3-pricing__category {
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-size: 0.875rem;
}

/* About */
.template-classic .wv3-about__photo {
}

.template-classic .wv3-about__photo img {
	border-radius: 0;
}

.template-classic .wv3-about__photo::after {
	border-radius: 0;
}

.template-classic .wv3-about__qual {
	border-radius: 0;
}

/* Blog section — grey bg */
.template-classic .wv3-blog-section {
	background-color: var(--wv3-bg-light);
}

/* Post cards — white, no border */
.template-classic .wv3-post-card {
	border-radius: 0;
	box-shadow: none;
	border: none;
	background: var(--wv3-bg);
	overflow: hidden;
}

.template-classic .wv3-post-card__image {
	overflow: hidden;
}

.template-classic .wv3-post-card__image img {
	display: block;
	transition: transform 0.4s ease;
}

.template-classic .wv3-post-card:hover .wv3-post-card__image img {
	transform: scale(1.05);
}

.template-classic .wv3-post-card:hover .wv3-post-card__title a {
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* Map — sharp */
.template-classic .wv3-business-info__map {
	border-radius: 0;
	border: 1px solid var(--wv3-border);
}

/* Footer — light blue */
.template-classic .wv3-footer {
	background: var(--wv3-accent-bg);
	color: var(--wv3-text);
	border-top: 2px solid var(--wv3-primary);
}

.template-classic .wv3-footer a {
	color: var(--wv3-text);
}

.template-classic .wv3-footer a:hover {
	color: var(--wv3-primary);
}

.template-classic .wv3-footer__brand-name {
	color: var(--wv3-text);
	font-size: 3rem;
	margin-top: 0;
}

.template-classic .wv3-footer__brand-claim {
	color: var(--wv3-text-secondary);
}

.template-classic .wv3-footer__site-name {
	color: var(--wv3-text);
}

.template-classic .wv3-footer__title {
	color: var(--wv3-text);
	font-size: 1.75rem;
	text-transform: none;
	letter-spacing: 0;
}

.template-classic .wv3-footer__address {
	color: var(--wv3-text);
	font-size: 1.0625rem;
}

.template-classic .wv3-footer__link {
	font-size: 1.0625rem;
}

.template-classic .wv3-footer__link:hover {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.template-classic .wv3-footer__bottom {
	border-top: 2px solid var(--wv3-primary);
	color: var(--wv3-text-muted);
}

.template-classic .wv3-footer__legal-info {
	color: var(--wv3-text);
	font-size: 0.88rem;
}

.template-classic .wv3-footer__credit {
	color: var(--wv3-text);
	font-size: 0.88rem;
	line-height: 1.6;
}

.template-classic .wv3-footer__legal-sep {
	color: var(--wv3-text);
}

.template-classic .wv3-footer__credit a {
	color: var(--wv3-text);
}

.template-classic .wv3-footer__credit a:hover {
	color: var(--wv3-primary);
}

.template-classic .wv3-footer__links a {
	font-size: 1.0625rem;
	color: var(--wv3-text);
}

.template-classic .wv3-footer__links a:hover,
.template-classic .wv3-footer__cta-link:hover {
	color: var(--wv3-primary);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.template-classic .wv3-footer__cta-link {
	color: var(--wv3-text);
	font-size: 1.0625rem;
}

.template-classic .wv3-footer__legal a {
	color: var(--wv3-text);
	font-size: 0.88rem;
}

.template-classic .wv3-footer__legal a:hover {
	color: var(--wv3-primary);
}

.template-classic .wv3-footer__lokafi-badge {
	width: 8.75rem;
	height: auto;
	opacity: 0.6;
}

.template-classic .wv3-footer__lokafi-badge:hover {
	opacity: 1;
}

.template-classic .wv3-footer__lokafi-badge--light {
	display: none;
}

.template-classic .wv3-footer__lokafi-badge--dark {
	display: block;
}

.template-classic .wv3-business-info__amenities--below-map {
	border-radius: 0;
	background: var(--wv3-bg);
	border: 1px solid var(--wv3-border);
}

/* Business info — social icons sharp */
.template-classic .wv3-business-info__social-link {
	border-radius: 0;
	background: #fff;
	color: var(--wv3-text-secondary);
}

.template-classic .wv3-business-info__social-link svg,
.template-classic .wv3-footer__social-link svg {
	stroke-width: 1.5;
}

.template-classic .wv3-business-info__social-link:hover {
	background: var(--wv3-primary);
	color: #fff;
}

/* Business info — accent-bg */
.template-classic .wv3-business-info {
	background-color: var(--wv3-accent-bg);
}

/* Business info card — no border on classic */
.template-classic .wv3-business-info__card {
	border-radius: 0;
	box-shadow: none;
	border: none;
}

/* Opening hours — same font as address */
.template-classic .wv3-business-info__hours-row dt,
.template-classic .wv3-business-info__hours-row dd {
	font-size: 1.0625rem;
}

/* Contact form — no border on classic */
.template-classic .wv3-contact__form {
	border-radius: 0;
	box-shadow: none;
	border: none;
	background: var(--wv3-bg-light);
}

/* Reviews cards — sharp */
.template-classic .wv3-reviews__card {
	border: 1px solid var(--wv3-border);
	border-left: 3px solid var(--wv3-primary);
	border-radius: 0;
	background: var(--wv3-bg);
}

.template-classic .wv3-reviews__card:hover {
	border-color: var(--wv3-primary);
	border-left-width: 3px;
}

/* Social icons — white bg, +25% size */
.template-classic .wv3-footer__social-link {
	background: #fff;
	color: var(--wv3-text-secondary);
	border-radius: 0;
	width: 50px;
	height: 50px;
}

.template-classic .wv3-footer__social-link svg {
	width: 25px;
	height: 25px;
}

.template-classic .wv3-footer .wv3-footer__social-link:hover {
	background: var(--wv3-primary);
	color: #fff;
}

/* Venue slider — sharp nav buttons */
.template-classic .wv3-venue__nav {
	border-radius: 0;
}

.template-classic .wv3-venue__dot {
	border-radius: 0;
}

.template-classic .wv3-venue__dot.active {
	border-radius: 0;
}

/* Navigation — uppercase, dock magnification effect */
.template-classic .wv3-nav__link {
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: 0.875rem;
	color: var(--wv3-text);
	display: inline-block;
	transition: color var(--wv3-transition-fast);
}

.template-classic .wv3-nav__link:hover {
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* Mobile overrides */
@media (max-width: 768px) {
	.template-classic .wv3-nav {
		background: var(--wv3-accent-bg);
	}

	.template-classic .wv3-nav__link {
		border-bottom-color: rgba(0, 0, 0, 0.08);
	}

	.template-classic .wv3-nav__mobile-cta {
		margin-top: var(--wv3-space-lg);
	}

	.template-classic .wv3-hero__image {
		min-height: 0;
	}

	/* A1 — Center underline under section titles on mobile */
	.template-classic .wv3-section__title::after {
		left: 50%;
		transform: translateX(-50%);
	}

	/* Footer separator 70% on mobile */
	.template-classic .wv3-footer__bottom {
		border-top: none;
		position: relative;
	}

	.template-classic .wv3-footer__bottom::before {
		content: "";
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 70%;
		height: 2px;
		background: var(--wv3-primary);
	}
}

/* Archive tabs — sharp */
.template-classic .wv3-archive__tab {
	border-radius: 0;
}

.template-classic .wv3-archive__tab--active {
	background: var(--wv3-text);
}

.template-classic .wv3-archive__tab--active:hover {
	background: var(--wv3-primary);
}

/* Post card category badge — sharp */
.template-classic .wv3-post-card__category {
	border-radius: 0;
	background: var(--wv3-text);
}

/* Article category — sharp */
.template-classic .wv3-article__category {
	border-radius: 0;
	background: var(--wv3-text);
}

/* Sidebar — sharp */
.template-classic .wv3-sidebar__widget {
	border-radius: 0;
}

.template-classic .wv3-sidebar__post-image {
	border-radius: 0;
}

.template-classic .wv3-sidebar__banner img {
	border-radius: 0;
}

/* Author BIO — sharp */
.template-classic .wv3-author-bio {
	border-radius: 0;
}

.template-classic .wv3-author-bio__photo {
	border-radius: 0;
}

/* Reviews nav — sharp */
.template-classic .wv3-reviews__nav {
	border-radius: 0;
}

/* Lightbox controls — sharp */
.template-classic .wv3-lightbox__close,
.template-classic .wv3-lightbox__nav {
	border-radius: 0;
}

/* Header — sharp scrolled border */
.template-classic .wv3-header.scrolled {
	border-bottom: 1px solid var(--wv3-border);
}

/* Cookie banner — sharp, uppercase, dark buttons */
.template-classic .wv3-cookie-banner__content {
	border-radius: 0;
}

.template-classic .wv3-cookie-banner__btn {
	border-radius: 0;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: 0.875rem;
}

.template-classic .wv3-cookie-banner__btn--accept {
	background: var(--wv3-text);
	border-color: var(--wv3-text);
	color: #fff;
}

.template-classic .wv3-cookie-banner__btn--accept:hover {
	background: transparent;
	color: var(--wv3-text);
}

.template-classic .wv3-cookie-banner__btn--decline {
	background: var(--wv3-bg-light, #f5f5f5);
	border-color: var(--wv3-border, #ddd);
	color: var(--wv3-text);
}

.template-classic .wv3-cookie-banner__btn--decline:hover {
	background: var(--wv3-border, #ddd);
	color: var(--wv3-text);
}
