/**
 * Denisa Stojanović Theme - Main styles
 * Design system: dark background, gold accents, Playfair Display + Inter
 */

/* --------------------------------------------------------------------------
   CSS Variables
   -------------------------------------------------------------------------- */
:root {
	--color-bg: #0a0a0a;
	--color-bg-secondary: #1a1a1a;
	--color-bg-tertiary: #2a2a2a;
	--color-gold: #d4af37;
	--color-gold-light: #f4d03f;
	--color-gold-dark: #b8941e;
	--color-cream: #fff8e1;
	--color-white: #ffffff;
	--color-gray-300: #d1d5db;
	--color-gray-400: #9ca3af;
	--color-gray-500: #6b7280;

	--font-heading: 'Playfair Display', serif;
	--font-body: 'Inter', sans-serif;

	--container-max: 1280px;
	--container-padding: 1.5rem;
	--nav-height: 72px;
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	overflow-x: hidden;
	scroll-padding-top: 100px;
	max-width: 100vw;
	scroll-behavior: smooth;
}

body {
	background-color: var(--color-bg);
	color: var(--color-white);
	font-family: var(--font-body);
	line-height: 1.6;
	overflow-x: hidden;
	max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	line-height: 1.2;
	font-family: var(--font-heading);
}

a {
	color: var(--color-gold);
	text-decoration: none;
	transition: color 0.2s ease, background-color 0.2s ease;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* --------------------------------------------------------------------------
   Utility classes
   -------------------------------------------------------------------------- */
.gradient-text {
	background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
}

.gold-border {
	border-color: var(--color-gold);
}

.luxury-shadow {
	box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
}

.hover-lift {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
	transform: translateY(-8px);
	box-shadow: 0 25px 70px rgba(212, 175, 55, 0.25);
}

.container {
	width: 100%;
	max-width: var(--container-max);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--container-padding);
	padding-right: var(--container-padding);
}

/* --------------------------------------------------------------------------
   Formuláře – sjednocený vzhled, žádné létající prvky
   -------------------------------------------------------------------------- */
form {
	box-sizing: border-box;
	max-width: 100%;
}
form p,
form .form-field,
form .form-row {
	margin-bottom: 1.25rem;
	clear: both;
}
form label {
	display: block;
	margin-bottom: 0.35rem;
	color: var(--color-gray-300);
	font-weight: 500;
}
form input[type="text"],
form input[type="email"],
form input[type="password"],
form input[type="url"],
form input[type="tel"],
form input[type="number"],
form textarea,
form select {
	display: block;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: 0.75rem 1rem;
	background: var(--color-bg-secondary);
	border: 1px solid rgba(212, 175, 55, 0.3);
	border-radius: 6px;
	color: #fff;
	font-size: 1rem;
	font-family: inherit;
	line-height: 1.5;
}
form input:focus,
form textarea:focus,
form select:focus {
	outline: none;
	border-color: var(--color-gold);
	box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}
form textarea {
	min-height: 120px;
	resize: vertical;
}
form input[type="submit"],
form button[type="submit"] {
	display: inline-block;
	margin-top: 0.5rem;
	cursor: pointer;
}

/* --------------------------------------------------------------------------
   Scrollbar & Selection
   -------------------------------------------------------------------------- */
::-webkit-scrollbar {
	width: 10px;
}
::-webkit-scrollbar-track {
	background: var(--color-bg-secondary);
}
::-webkit-scrollbar-thumb {
	background: var(--color-gold);
	border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
	background: var(--color-gold-light);
}

::selection {
	background-color: rgba(212, 175, 55, 0.3);
	color: #ffffff;
}

/* --------------------------------------------------------------------------
   Navigation – vždy viditelná, na celou šířku (nikdy nemizí)
   -------------------------------------------------------------------------- */
.site-nav,
body .site-nav,
body.page-front .site-nav,
.site-nav.is-visible {
	transform: none !important;
	opacity: 1 !important;
	visibility: visible !important;
}
.site-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	transition: background-color 0.3s, border-color 0.3s, box-shadow 0.3s;
	background: rgba(0, 0, 0, 0.92);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}
/* WordPress admin bar – header posunout pod něj */
body.admin-bar .site-nav {
	top: 32px;
}
@media screen and (max-width: 782px) {
	body.admin-bar .site-nav {
		top: 46px;
	}
}
.site-nav.is-scrolled {
	background: rgba(0, 0, 0, 0.96);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(212, 175, 55, 0.25);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-inner {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.75rem var(--container-padding);
	width: 100%;
	max-width: var(--container-max);
	margin: 0 auto;
	box-sizing: border-box;
	flex-wrap: nowrap;
	min-height: 0;
}
.nav-brand {
	flex-shrink: 0;
	order: 1;
}
.nav-toggle {
	order: 3;
}
.nav-menu-wrap {
	order: 2;
}
@media (min-width: 768px) {
	.site-nav .nav-inner .nav-menu-wrap {
		flex: 1;
		min-width: 0;
		justify-content: space-between;
		gap: 1rem;
		padding-left: 1.5rem;
		padding-right: 0;
	}
	.nav-menu {
		flex: 1;
		justify-content: space-evenly;
		max-width: 100%;
		min-width: 0;
		flex-direction: row;
	}
	.nav-social {
		flex-shrink: 0;
	}
}
@media (max-width: 767px) {
	.nav-toggle {
		margin-left: auto;
	}
}
.nav-logo {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1.125rem;
	font-weight: 600;
}
.nav-logo .icon-sparkles {
	color: var(--color-gold);
	flex-shrink: 0;
}
.nav-logo-sub {
	opacity: 0.9;
	font-weight: 500;
}
@media (min-width: 768px) {
	.nav-logo { font-size: 1.25rem; }
}

.nav-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem;
	background: none;
	border: none;
	color: var(--color-gold);
	cursor: pointer;
	transition: background-color 0.2s;
	border-radius: 6px;
}
.nav-toggle:hover {
	background: rgba(212, 175, 55, 0.1);
}
.nav-toggle .icon-close {
	display: none;
}
.nav-toggle[aria-expanded="true"] .icon-menu {
	display: none;
}
.nav-toggle[aria-expanded="true"] .icon-close {
	display: block;
}
@media (min-width: 768px) {
	.nav-toggle { display: none; }
}

.nav-menu-wrap {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	max-width: 100%;
	height: 100vh;
	min-height: 100vh;
	max-height: 100vh;
	background: rgba(0, 0, 0, 0.95);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border-left: 1px solid rgba(212, 175, 55, 0.3);
	box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
	transform: translateX(100%);
	transition: transform 0.3s ease;
	z-index: 40;
	display: flex;
	flex-direction: column;
	padding: 6rem 2rem 2rem;
	overflow-y: auto;
	overflow-x: hidden;
	box-sizing: border-box;
}
/* Na mobilu: výška celého viewportu (backdrop-filter na .site-nav by jinak ořízl menu) */
@media (max-width: 767px) {
	.nav-menu-wrap {
		height: 100vh;
		height: 100dvh;
		min-height: 100vh;
		min-height: -webkit-fill-available;
		min-height: 100dvh;
		max-height: 100vh;
		max-height: 100dvh;
	}
}
.nav-menu-wrap.is-open {
	transform: translateX(0);
}
@media (min-width: 768px) {
	.nav-menu-wrap {
		position: static;
		top: auto;
		right: auto;
		bottom: auto;
		left: auto;
		width: auto;
		max-width: none;
		height: auto;
		min-height: 0;
		max-height: none;
		transform: none;
		background: none;
		border: none;
		box-shadow: none;
		padding: 0;
		overflow: visible;
		display: flex;
		flex-direction: row;
		align-items: center;
	}
}

.nav-menu {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0;
}
@media (min-width: 768px) {
	.nav-menu {
		flex-direction: row;
		align-items: center;
		gap: 0.5rem;
	}
}

.nav-menu .nav-item,
.nav-menu li {
	margin: 0;
}
.nav-menu a {
	display: block;
	padding: 0.75rem 1rem;
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--color-gray-300);
	border-radius: 6px;
	transition: color 0.2s, background-color 0.2s;
}
.nav-menu a:hover,
.nav-menu .nav-item-current a,
.nav-menu .current-menu-item a {
	color: var(--color-gold);
	background: rgba(212, 175, 55, 0.1);
}
.nav-menu .nav-item-current a,
.nav-menu .current-menu-item a {
	background: rgba(212, 175, 55, 0.2);
}
@media (min-width: 768px) {
	.nav-menu a {
		padding: 0.5rem 0.75rem;
	}
}
@media (max-width: 767px) {
	.nav-menu a {
		font-size: 1.25rem;
		padding: 1rem;
	}
}

.nav-social {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(212, 175, 55, 0.3);
}
@media (min-width: 768px) {
	.nav-social {
		margin-top: 0;
		padding-top: 0;
		padding-left: 1.5rem;
		margin-left: 1.5rem;
		border-top: none;
		border-left: 1px solid rgba(212, 175, 55, 0.3);
	}
}

.nav-social-link {
	color: var(--color-gray-300);
	padding: 0.5rem;
	border-radius: 6px;
	transition: color 0.2s, background-color 0.2s;
}
.nav-social-link:hover {
	color: var(--color-gold);
	background: rgba(212, 175, 55, 0.1);
}

.nav-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(4px);
	z-index: 30;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s;
}
.nav-backdrop.is-visible {
	opacity: 1;
	pointer-events: auto;
}
@media (min-width: 768px) {
	.nav-backdrop { display: none; }
}

body.nav-open {
	overflow: hidden;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	border-radius: 4px;
	transition: all 0.3s ease;
	cursor: pointer;
	border: 2px solid transparent;
	text-decoration: none;
	font-family: var(--font-body);
}
.btn-primary {
	background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
	color: #0a0a0a;
	border-color: var(--color-cream);
}
.btn-primary:hover {
	transform: scale(1.02);
	box-shadow: 0 12px 40px rgba(212, 175, 55, 0.35);
}
.btn-outline {
	background: rgba(0, 0, 0, 0.4);
	color: var(--color-gold);
	border-color: var(--color-gold);
}
.btn-outline:hover {
	background: rgba(212, 175, 55, 0.1);
	color: var(--color-gold-light);
	border-color: var(--color-gold-light);
}

/* --------------------------------------------------------------------------
   Course card (for Kurzy grid & LifterLMS loop)
   -------------------------------------------------------------------------- */
.card-course {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: linear-gradient(135deg, var(--color-bg-secondary), var(--color-bg));
	border: 2px solid rgba(212, 175, 55, 0.3);
	border-radius: 1rem;
	overflow: hidden;
	transition: border-color 0.3s, box-shadow 0.3s;
}
.card-course:hover {
	border-color: var(--color-gold);
	box-shadow: 0 0 30px rgba(212, 175, 55, 0.12);
}

.card-course-header {
	padding: 1.25rem 1.5rem;
	min-height: 140px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
}
.card-course-badge {
	display: inline-block;
	padding: 0.25rem 0.6rem;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	background: rgba(10, 10, 10, 0.2);
	color: #0a0a0a;
	border-radius: 9999px;
	align-self: flex-start;
}
.card-course-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #0a0a0a;
	margin: 0 0 0.25rem 0;
}
@media (min-width: 640px) {
	.card-course-title { font-size: 1.5rem; }
}
.card-course-desc {
	font-size: 0.875rem;
	color: rgba(10, 10, 10, 0.8);
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.card-course-body {
	padding: 1.25rem 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
	min-height: 180px;
}
.card-course-highlights {
	list-style: none;
	margin: 0 0 1rem 0;
}
.card-course-highlights li {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: var(--color-gray-300);
	margin-bottom: 0.5rem;
}
.card-course-highlights li::before {
	content: '';
	width: 1rem;
	height: 1rem;
	flex-shrink: 0;
	margin-top: 0.15rem;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E") no-repeat center;
	background-size: contain;
}
.card-course-price {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--color-white);
	margin-top: auto;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.card-course-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--color-gold);
	margin-top: 0.5rem;
	transition: gap 0.2s;
}
.card-course-link:hover {
	color: var(--color-gold-light);
	gap: 0.75rem;
}

/* --------------------------------------------------------------------------
   FAQ Accordion
   -------------------------------------------------------------------------- */
.faq-list {
	max-width: 48rem;
	margin: 0 auto;
}
.faq-item {
	border: 1px solid rgba(212, 175, 55, 0.2);
	background: linear-gradient(135deg, var(--color-bg-secondary), var(--color-bg));
	border-radius: 0;
	margin-bottom: 0;
	transition: border-color 0.3s;
}
.faq-item:hover {
	border-color: rgba(212, 175, 55, 0.5);
}
.faq-item summary,
.faq-item .faq-question {
	width: 100%;
	padding: 1.5rem 2rem;
	text-align: left;
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--color-white);
	font-family: var(--font-heading);
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	list-style: none;
	transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker,
.faq-item summary::marker {
	display: none;
}
.faq-item:hover summary,
.faq-item:hover .faq-question {
	color: var(--color-gold);
}
.faq-item .faq-icon {
	width: 2rem;
	height: 2rem;
	flex-shrink: 0;
	border: 2px solid var(--color-gold);
	color: var(--color-gold);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s;
}
.faq-item[open] .faq-icon {
	transform: rotate(180deg);
}
.faq-item .faq-answer {
	padding: 0 2rem 1.5rem 2rem;
}
.faq-item .faq-answer-inner {
	border-top: 1px solid rgba(212, 175, 55, 0.3);
	padding-top: 1.5rem;
	font-size: 0.875rem;
	line-height: 1.7;
	color: var(--color-gray-300);
}
@media (min-width: 640px) {
	.faq-item summary,
	.faq-item .faq-question { padding: 2rem; font-size: 1.25rem; }
	.faq-item .faq-answer { padding: 0 2rem 2rem; }
	.faq-item .faq-answer-inner { font-size: 1rem; }
}

/* --------------------------------------------------------------------------
   Hero (generic)
   -------------------------------------------------------------------------- */
.hero-section {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding-top: var(--nav-height);
}
/* Hero uvnitř .site-main – .site-main už má padding-top, neduplikovat */
.site-main > .hero-section,
.site-main > .container > .hero-section {
	padding-top: 0;
}
body.admin-bar .hero-section {
	padding-top: calc(32px + var(--nav-height));
}
@media screen and (max-width: 782px) {
	body.admin-bar .hero-section {
		padding-top: calc(46px + var(--nav-height));
	}
}
.hero-mini {
	min-height: 60vh;
	padding-top: 6rem;
}
.hero-section .container {
	position: relative;
	z-index: 2;
}
.hero-title {
	font-size: clamp(3rem, 10vw, 9rem);
	font-weight: 800;
	line-height: 0.95;
	letter-spacing: -0.02em;
	margin-bottom: 0.5rem;
}
.hero-subtitle {
	font-size: 1.125rem;
	color: var(--color-cream);
	margin-bottom: 1rem;
}
@media (min-width: 768px) {
	.hero-subtitle { font-size: 1.5rem; }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
	background: var(--color-bg);
	border-top: 1px solid rgba(212, 175, 55, 0.2);
	padding: 3rem 0;
}
.footer-inner {
	text-align: center;
}
.footer-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	font-family: var(--font-heading);
}
.footer-tagline {
	color: var(--color-gray-400);
	margin-bottom: 1.5rem;
}
.footer-social {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	margin-bottom: 2rem;
}
.footer-social-link {
	color: var(--color-gray-400);
	transition: color 0.2s;
}
.footer-social-link:hover {
	color: var(--color-gold);
}
.footer-copy {
	font-size: 0.875rem;
	color: var(--color-gray-500);
}

/* --------------------------------------------------------------------------
   Site main – padding pod fixed header, aby obsah nepřekrýval
   -------------------------------------------------------------------------- */
.site-main {
	min-height: 60vh;
	padding-top: var(--nav-height);
	padding-bottom: 4rem;
	padding-left: 0;
	padding-right: 0;
}
body.admin-bar .site-main {
	padding-top: calc(32px + var(--nav-height));
}
@media screen and (max-width: 782px) {
	body.admin-bar .site-main {
		padding-top: calc(46px + var(--nav-height));
	}
}
.site-main .container {
	padding-top: 2rem;
}

/* --------------------------------------------------------------------------
   Entry (posts) – nadpisy stránek uprostřed
   -------------------------------------------------------------------------- */
.entry-header {
	margin-bottom: 1.5rem;
	text-align: center;
}
.entry-title {
	font-size: 2rem;
	margin-bottom: 0.5rem;
	text-align: center;
}
.entry-content {
	color: var(--color-gray-300);
}
.entry-content p {
	margin-bottom: 1rem;
}

.no-results {
	text-align: center;
	padding: 3rem 0;
}
.no-results .page-title {
	margin-bottom: 1rem;
}
.no-results .btn {
	margin-top: 1rem;
}

/* --------------------------------------------------------------------------
   Shimmer animation (optional use)
   -------------------------------------------------------------------------- */
@keyframes shimmer {
	0%   { background-position: -200% 0; }
	100% { background-position: 200% 0; }
}
.shimmer {
	background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
	background-size: 200% 100%;
	animation: shimmer 3s infinite;
}

/* --------------------------------------------------------------------------
   Fade in up (for cards/sections)
   -------------------------------------------------------------------------- */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.animate-fade-in-up {
	animation: fadeInUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* --------------------------------------------------------------------------
   Hero Home
   -------------------------------------------------------------------------- */
.hero-home {
	padding-top: 0;
}
.hero-home-bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
}
.hero-home-gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #18140a 0%, var(--color-bg) 50%, #18140a 100%);
	opacity: 0.95;
}
.hero-home-glow {
	position: absolute;
	right: 0;
	top: 25%;
	width: 40%;
	height: 66%;
	background: linear-gradient(90deg, rgba(212, 175, 55, 0.3), transparent);
	filter: blur(60px);
	opacity: 0.8;
	pointer-events: none;
}
.hero-home-particles {
	position: absolute;
	inset: 0;
	pointer-events: none;
}
.hero-home-particles::before,
.hero-home-particles::after,
.hero-home-particles .p {
	content: '';
	position: absolute;
	width: 4px;
	height: 4px;
	background: var(--color-gold);
	border-radius: 50%;
	opacity: 0.5;
	animation: particle-float 15s ease-in-out infinite;
}
.hero-home-particles::before { left: 10%; top: 20%; animation-delay: 0s; }
.hero-home-particles::after { left: 80%; top: 60%; animation-delay: 3s; }
@keyframes particle-float {
	0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
	50% { transform: translateY(-30px) scale(1.2); opacity: 0.6; }
}

.hero-home-image {
	position: absolute;
	background-size: cover;
	background-position: center 20%;
	pointer-events: none;
}
.hero-home-image-desk {
	display: none;
	right: 0;
	top: 0;
	bottom: 0;
	width: 50%;
	z-index: 2;
	filter: drop-shadow(0 8px 40px rgba(212, 175, 55, 0.8));
}
.hero-home-image-mob {
	display: block;
	inset: 0;
	opacity: 0.5;
	filter: brightness(0.85);
}
.hero-home-image-mob::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(24, 20, 10, 0.4), rgba(10, 10, 10, 0.5));
}
@media (min-width: 768px) {
	.hero-home-image-desk { display: block; }
	.hero-home-image-mob { display: none; }
}

.hero-home-content {
	position: relative;
	z-index: 10;
	width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: center;
}
.hero-home-inner {
	max-width: 42rem;
}
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	margin-bottom: 1rem;
	border: 1px solid rgba(212, 175, 55, 0.4);
	background: linear-gradient(90deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
	backdrop-filter: blur(12px);
	border-radius: 9999px;
	box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}
.hero-badge-dot {
	width: 8px;
	height: 8px;
	background: var(--color-gold-light);
	border-radius: 50%;
	animation: pulse-dot 2s ease-out infinite;
}
@keyframes pulse-dot {
	0%, 100% { transform: scale(1); opacity: 0.75; }
	50% { transform: scale(2); opacity: 0; }
}
.hero-badge-text {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--color-gold);
}
.hero-home-title {
	font-size: clamp(3rem, 12vw, 9rem);
	font-weight: 800;
	line-height: 0.95;
	letter-spacing: -0.02em;
	margin-bottom: 0.5rem;
	background: linear-gradient(135deg, var(--color-cream), var(--color-gold), var(--color-gold-light));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.hero-home-title-line {
	display: block;
}
.hero-home-title-italic {
	font-style: italic;
	font-size: 0.7em;
}
.hero-home-subtitle {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--color-cream);
	margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
	.hero-home-subtitle { font-size: 1.5rem; }
}
.hero-home-desc {
	font-size: 1rem;
	color: var(--color-gold-light);
	font-style: italic;
	margin-bottom: 1rem;
}
@media (min-width: 768px) {
	.hero-home-desc { font-size: 1.125rem; }
}
.hero-home-line {
	width: 6rem;
	height: 4px;
	background: linear-gradient(90deg, var(--color-cream), var(--color-gold));
	margin-bottom: 2rem;
	border-radius: 2px;
}
@media (min-width: 768px) {
	.hero-home-line { width: 8rem; margin-bottom: 2rem; }
}
.hero-home-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 1.5rem;
}
.hero-home-instagram {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: var(--color-cream);
	padding: 0.5rem 1rem;
	border: 2px solid rgba(212, 175, 55, 0.3);
	border-radius: 9999px;
	background: linear-gradient(90deg, rgba(212, 175, 55, 0.2), rgba(244, 208, 63, 0.1));
	transition: color 0.2s, border-color 0.2s;
}
.hero-home-instagram:hover {
	color: var(--color-gold-light);
	border-color: rgba(212, 175, 55, 0.5);
}
.hero-home-instagram svg {
	flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Content sections (generic)
   -------------------------------------------------------------------------- */
.content-section {
	position: relative;
	padding: 5rem 0;
	overflow: hidden;
}
@media (min-width: 640px) {
	.content-section { padding: 6rem 0; }
}
@media (min-width: 768px) {
	.content-section { padding: 8rem 0; }
}

.section-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}
.section-gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, transparent, rgba(212, 175, 55, 0.05), transparent);
}
.section-gradient-lips {
	background: linear-gradient(225deg, rgba(212, 175, 55, 0.08), transparent, rgba(212, 175, 55, 0.05));
}
.section-sep-line {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}
.glow-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	opacity: 0.5;
	animation: glow-pulse 8s ease-in-out infinite;
}
.glow-orb-1 {
	top: 25%;
	right: 25%;
	width: 300px;
	height: 300px;
	background: rgba(212, 175, 55, 0.08);
}
@media (min-width: 640px) {
	.glow-orb-1 { width: 400px; height: 400px; }
}
.glow-orb-2 {
	bottom: 25%;
	left: 25%;
	width: 350px;
	height: 350px;
	background: rgba(212, 175, 55, 0.06);
}
@keyframes glow-pulse {
	0%, 100% { transform: scale(1); opacity: 0.4; }
	50% { transform: scale(1.2); opacity: 0.6; }
}

.section-inner {
	position: relative;
	z-index: 2;
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
}
.section-header {
	text-align: center;
	margin-bottom: 4rem;
}
@media (min-width: 768px) {
	.section-header { margin-bottom: 5rem; }
}
.section-label {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--color-gold);
}
.section-label-line {
	width: 2rem;
	height: 1px;
	background: var(--color-gold);
}
.section-title {
	font-size: 2.25rem;
	font-weight: 700;
	margin-bottom: 1rem;
	font-family: var(--font-heading);
}
@media (min-width: 640px) {
	.section-title { font-size: 3rem; }
}
@media (min-width: 768px) {
	.section-title { font-size: 3.75rem; }
}
.section-title-large {
	font-size: 3rem;
}
@media (min-width: 768px) {
	.section-title-large { font-size: 4rem; }
}
.section-desc {
	font-size: 1rem;
	color: var(--color-gray-300);
	max-width: 42rem;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.7;
}
@media (min-width: 768px) {
	.section-desc { font-size: 1.25rem; }
}
.max-w-2xl { max-width: 42rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.section-body {
	color: var(--color-gray-300);
	font-size: 1rem;
	line-height: 1.8;
}
@media (min-width: 768px) {
	.section-body { font-size: 1.125rem; }
}

.section-two-col {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
}
@media (min-width: 1024px) {
	.section-two-col {
		grid-template-columns: 1fr 1fr;
		gap: 4rem;
	}
}
.section-two-col-reverse .section-col-text { order: 2; }
.section-two-col-reverse .section-col-media { order: 1; }
@media (min-width: 1024px) {
	.section-two-col-reverse .section-col-text { order: 1; }
	.section-two-col-reverse .section-col-media { order: 2; }
}
.section-media-wrap {
	border-radius: 0.5rem;
	border: 1px solid rgba(212, 175, 55, 0.3);
	overflow: hidden;
}
.section-media-wrap img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.section-phibrows-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
}
@media (min-width: 1024px) {
	.section-phibrows-grid {
		grid-template-columns: 1fr 1fr;
		gap: 4rem;
	}
}
.phibrows-images {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}
.phibrows-img-wrap {
	border-radius: 0.5rem;
	border: 1px solid rgba(212, 175, 55, 0.3);
	overflow: hidden;
	aspect-ratio: 1;
}
.phibrows-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.phibrows-img-1 { grid-row: span 2; align-self: center; }
.phibrows-img-2 { aspect-ratio: 1; }
.phibrows-img-3 { margin-top: 2rem; aspect-ratio: 1; }

.section-badge-inline {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	margin-bottom: 2rem;
	border: 1px solid rgba(212, 175, 55, 0.4);
	background: var(--color-bg);
	border-radius: 9999px;
	font-weight: 600;
	letter-spacing: 0.05em;
}
.section-phibrows-brand .section-desc {
	margin-bottom: 0;
}

.section-cta .section-title {
	margin-bottom: 0.5rem;
}
.section-cta-buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	margin-top: 2rem;
}

/* --------------------------------------------------------------------------
   Academy hero (front page) – jednoduchý, header vždy vidět
   -------------------------------------------------------------------------- */
.hero-academy {
	padding-top: calc(var(--nav-height) + 2rem);
	min-height: 42vh;
	display: flex;
	align-items: center;
	justify-content: center;
}
body.admin-bar .hero-academy {
	padding-top: calc(32px + var(--nav-height) + 2rem);
}
@media screen and (max-width: 782px) {
	body.admin-bar .hero-academy {
		padding-top: calc(46px + var(--nav-height) + 2rem);
	}
}
.hero-academy-gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, var(--color-bg-secondary) 0%, var(--color-bg) 100%);
}
.hero-academy .glow-orb {
	opacity: 0.25;
}
.hero-academy-label {
	font-size: 0.875rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-gold);
	margin-bottom: 0.5rem;
}
.hero-academy-title {
	font-size: clamp(2.5rem, 8vw, 5rem);
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 0.75rem;
}
.hero-academy-title-name {
	display: block;
	font-size: 0.6em;
	font-weight: 600;
	opacity: 0.95;
	color: var(--color-cream);
	letter-spacing: 0.02em;
}
.hero-academy-inner {
	text-align: center;
	width: 100%;
	max-width: 40rem;
	margin-left: auto;
	margin-right: auto;
}
.hero-academy-subtitle {
	font-size: 1.125rem;
	color: var(--color-gray-400);
	max-width: 32rem;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
	.hero-academy-subtitle { font-size: 1.25rem; }
}
.hero-academy-actions {
	margin: 0;
}
.hero-academy-actions .btn {
	display: inline-block;
	padding: 0.85rem 2rem;
	background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
	color: var(--color-bg);
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 4px 16px rgba(212, 175, 55, 0.25);
	transition: transform 0.2s, box-shadow 0.2s;
}
.hero-academy-actions .btn:hover {
	transform: scale(1.03);
	box-shadow: 0 6px 24px rgba(212, 175, 55, 0.35);
}

/* --------------------------------------------------------------------------
   Courses grid (front + archive)
   -------------------------------------------------------------------------- */
.courses-grid,
.llms-courses-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}
@media (min-width: 640px) {
	.courses-grid,
	.llms-courses-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 1024px) {
	.courses-grid,
	.llms-courses-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 2rem;
	}
}
.course-card-wrap {
	min-width: 0;
}
.section-no-courses {
	text-align: center;
	color: var(--color-gray-400);
	padding: 2rem;
}

.section-courses-cta {
	text-align: center;
	max-width: 32rem;
	margin: 0 auto;
}
.section-courses-voucher-text {
	color: var(--color-gray-300);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}
.section-courses-cta .btn {
	margin-top: 0.5rem;
}
