/*==============================================================
    ATELIER-HAVÍŘOV - Hlavní CSS
    Autor: Fotohome.cz
==============================================================*/



/* ------------------ Compact headings spacing (user request) ------------------ */
/* POUŽITÍ: Globálně napříč všemi stránkami pro kompaktní nadpisy */
h1, h2, h3, h4, h5, h6 {
	margin-bottom: 0.25rem !important; 
}

/* Menší mezera pro bloky sekcí */
/* POUŽITÍ: index.php (sekce služby, pronájem, vybavení, galerie, mapa) */
.section-heading {
	gap: 20px !important;
	margin-bottom: 4px !important; 
}

.section-heading .heading-right h2,
.heading-right h2 {
	margin-bottom: 2px !important;
}

.tag-small {
	margin-bottom: 0 !important;
}

.service-card p {
	margin-bottom: 6px !important;
	padding-bottom: 6px;
}

/*------ ZÁKLADNÍ STYL ------*/
/* POUŽITÍ: Globální CSS proměnné použité napříč celým projektem */

:root {
	--primary-color: #d81241;
	--dark-color: #1f1f1f;
	--light-gray: #f5f5f5;
	--border-gray: #ddd;
	--transition: all 0.3s ease-in-out;
	--theme-color: #d81241;
	--dark-bg: #000;
	--text-color: #666;
}

/*================================================================
    GENERAL STYLING
================================================================*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

html, body {
	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
	color: var(--text-color);
	font-size: 15px;
	line-height: 1.8;
}

h1, h2, h3, h4, h5, h6 {
	color: var(--dark-color);
	font-weight: 600;
	line-height: 1.2;
	margin: 0 0 15px 0;
	letter-spacing: 0;
	padding: 0;
}

a {
	text-decoration: none;
	transition: var(--transition);
	color: var(--dark-color);
}

a:hover {
	color: var(--primary-color);
}

/* Základní třídy */
.section {
	position: relative;
	width: 100%;
}

.layout-padding {
	padding-top: 30px;
	padding-bottom: 30px;
}

.dark-bg {
	background: var(--dark-bg);
	color: #fff;
}

.dark-bg h3,
.dark-bg h2,
.dark-bg h1 {
	color: #fff;
}

.dark-bg p,
.dark-bg span {
	color: #fff;
}

.text-align-left {
	text-align: left;
}

.text-align-center {
	text-align: center;
}

.padding-0 {
	padding: 0;
}

.padding-left-right {
	padding-left: 30px;
	padding-right: 30px;
}

.white-fonts {
	color: #fff;
}

.white-fonts h1,
.white-fonts h2,
.white-fonts h3,
.white-fonts h4,
.white-fonts h5,
.white-fonts h6 {
	color: #fff;
}

.theme-color {
	color: var(--primary-color);
}

.full {
	width: 100%;
}

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

html, body {
	height: 100%;
	scroll-behavior: smooth;
}

body {
	color: #666666;
	font-size: 15px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	line-height: 1.6;
	background-color: #fff;
}

/* Nadpisy - sjednocená pravidla */
h1, h2, h3, h4, h5, h6 {
	color: var(--dark-color);
	font-weight: 600;
	margin-bottom: 1rem;
	padding: 0;
	line-height: 1.2;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

/* Odstavce */
p {
	margin-bottom: 1rem;
	font-size: 15px;
	font-weight: 300;
	line-height: 1.7;
}

/* Odkazy - základní styl s přechodem */
a {
	color: var(--dark-color);
	text-decoration: none;
	transition: var(--transition);
}

a:hover {
	color: var(--primary-color);
}

/* Seznamy */
ul, li, ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Praktické třídy - Bootstrap kompatibilní */
.img-fluid {
	max-width: 100%;
	height: auto;
	display: block;
}

.theme-color {
	color: var(--primary-color);
}

.dark-bg {
	background: #000;
}

.white-text {
	color: #fff !important;
}

.white-text p,
.white-text h1,
.white-text h2,
.white-text h3,
.white-text h4,
.white-text h5,
.white-text h6,
.white-text a {
	color: #fff !important;
}

.white-text a:hover {
	color: var(--primary-color) !important;
}

/*------ LOADER (Preloader) ------*/
/* POUŽITÍ: index.php - spinner zobrazený při načítání stránky */
/* STATUS: ✅ AKTIVNÍ */

#preloader {
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 9999;
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
}

/* Preloader - Globální disable */
/* POZNÁMKA: Přepíná se pomocí JS, CSS má display:none jako fallback */
#preloader { display: none !important; }

.loader {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 250px;
	height: auto;
}

.loader img {
	width: 100%;
	height: auto;
	max-width: 150px;
}

/*------ HEADER / NAVIGACE ------*/
/* POUŽITÍ: Všechny stránky - hlavní navigační lišta */
/* Soubory: index.php, rezervace.php, moje-rezervace.php, admin.php, info_*.php, atd. */
/* STATUS: ✅ AKTIVNÍ - používáno globálně */

.top-header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	background: #1a1a1a;
	transition: var(--transition);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.top-header .navbar {
	padding: 10px 0;
	transition: var(--transition);
}

.top-header.fixed-menu {
	position: fixed;
	background: #1a1a1a;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
	width: 100%;
	animation: slideDown 0.3s ease-in-out;
}

/* Fix pro mobily - snížit z-index aby nepřekrýval inputy */
@media (max-width: 767px) {
	.top-header {
		z-index: 50;
	}
	
	.top-header.fixed-menu {
		z-index: 50;
	}
}

@keyframes slideDown {
	from {
		transform: translateY(-100%);
	}
	to {
		transform: translateY(0);
	}
}

/* Logo */
/* POUŽITÍ: Všechny stránky - logo a název v navigaci */
.navbar-brand {
	font-weight: 700;
	font-size: 24px;
	color: #fff;
	padding: 0 15px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.navbar-brand img {
	height: 50px;
	width: auto;
	transition: var(--transition);
}

.navbar-brand:hover img {
	opacity: 0.8;
}

/* Brand text wrapper */
/* POUŽITÍ: index.php - obal pro text vedle loga */
.brand-text {
	display: flex;
	flex-direction: column;
	gap: 0;
	line-height: 1;
}

p.fotohome {
	color: #ffffff;
	font-weight: 700;
	display: inline;
	font-family: 'Open Sans Condensed', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
	font-size: 24px;
	margin: 0;
	letter-spacing: 0.5px;
}

p.fotohome .photography {
	color: #AAAAAA;
	font-weight: 300;
	display: inline;
	font-family: 'Open Sans Condensed', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
}

/* H1 pod logem - kompaktní SEO nadpis */
h1.brand-subtitle {
	color: #AAAAAA;
	font-size: 11px;
	font-weight: 400;
	margin: 2px 0 0 0 !important;
	padding: 0;
	letter-spacing: 0.3px;
	line-height: 1.2;
	font-family: 'Open Sans Condensed', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
	white-space: nowrap;
	text-transform: none;
}

.navbar-brand:hover p.fotohome {
	color: var(--primary-color);
}

.navbar-brand:hover h1.brand-subtitle {
	color: #CCCCCC;
}

/* Menu - navigační položky */
.navbar-nav .nav-link {
	color: #fff !important;
	font-weight: 500;
	font-size: 14px;
	padding: 8px 15px !important;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: var(--transition);
}

.navbar-nav .nav-link:hover {
	color: var(--primary-color) !important;
}

.navbar-nav .nav-link.active {
	color: #fff !important;
}

/* Bazar link v menu */
.nav-bazar {
	border: 1px solid rgba(255, 255, 255, .38) !important;
	border-radius: 4px;
	padding: 6px 13px !important;
	margin-right: 4px;
	font-size: .9rem;
	color: rgba(255, 255, 255, .88) !important;
	transition: background .2s, border-color .2s;
}
.nav-bazar:hover {
	background: rgba(255, 255, 255, .12) !important;
	border-color: rgba(255, 255, 255, .65) !important;
	color: #fff !important;
}

/* Přihlašovací tlačítko v menu */
.btn-signup {
	background: var(--primary-color) !important;
	color: #fff !important;
	border-radius: 4px;
	padding: 8px 20px !important;
	margin-left: 10px;
}

.navbar-nav .btn-signup:hover {
	background: #b80e35 !important;
	color: #fff !important;
}

/* Toggler (mobilní menu) */
.navbar-toggler {
	border: 2px solid #fff;
	border-radius: 4px;
	padding: 8px;
	margin: 10px 15px;
}

.navbar-toggler span {
	display: block;
	width: 20px;
	height: 2px;
	background: #fff;
	margin: 5px 0;
	border-radius: 1px;
	transition: var(--transition);
}

.navbar-toggler:hover span {
	background: var(--primary-color);
}

/*------ BANNER / SLIDER ------*/
/* STATUS: ✅ AKTIVNÍ - používáno na index.php */
/* Třídysekce použité: .banner-section, .banner-wrapper, .banner-content, .slide-text */

.banner-section {
	position: relative;
	width: 100%;
	height: 600px;
	margin-top: 80px;
	overflow: hidden;
}

.banner-slider {
	position: relative;
	width: 100%;
	max-width: 1140px; 
	margin: 0 auto; 
	height: 600px;
	display: block;
	overflow: hidden;
}

.banner-slide {
	width: 100%;
	height: 600px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	display: none;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity 2s ease-in-out;
	z-index: 1;
}

/* Make banner height a bit smaller on large desktop and adapt on smaller screens */
@media (min-width: 1400px) {
	.banner-slider { max-width: 1200px; }
}

@media (max-width: 1199px) {
	.banner-slider { max-width: 960px; }
}

@media (max-width: 991px) {
	.banner-slider, .banner-slide { height: 420px; }
}

@media (max-width: 767px) {
	.banner-slider, .banner-slide { height: 320px; }
}

/* Removed gradient so slide images display without CSS overlay */
.banner-slide.banner-bg {
	background: none;
}

/* Ensure inline background-image on slides is not blended or covered */
.banner-slide.banner-bg[style] {
	background-blend-mode: normal !important;
	-webkit-background-size: cover !important;
	background-size: cover !important;
	background-position: center !important;
}

.banner-slide.active {
	opacity: 1;
	z-index: 2;
	display: flex;
}

.banner-slide::before {
	/* Overlay removed to show slide images fully */
	display: none;
}

/* Force-remove any remaining overlays/filters that could darken slides */
.banner-section,
.banner-slider,
.banner-slide,
.banner-slide * {
	-webkit-filter: none !important;
	filter: none !important;
	mix-blend-mode: normal !important;
	background-blend-mode: normal !important;
}

.slide-text {
	position: relative;
	z-index: 2;
	color: #fff;
	text-align: left;
	padding: 20px 80px 60px 20px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	margin-top: -40px;
}

.slide-text h1 {
	font-size: 38px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 15px;
	color: #fff;
}

.slide-text h2 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 15px;
	color: #fff;
}

.slide-text p {
	font-size: 16px;
	margin-bottom: 25px;
	color: rgba(255, 255, 255, 0.9);
}

.btn-contact {
	display: inline-block;
	padding: 12px 30px;
	background: var(--primary-color);
	color: #fff;
	border-radius: 4px;
	font-weight: 600;
	transition: var(--transition);
}

.btn-contact:hover {
	background: #b80e35;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(216, 18, 65, 0.3);
}

/* Responsive - Tablet */
@media (max-width: 991px) {
	.slide-text {
		padding: 40px 40px;
	}

	.slide-text h1 {
		font-size: 36px;
	}

	.slide-text h2 {
		font-size: 24px;
	}

	.slide-text p {
		font-size: 16px;
	}

	.banner-section {
		min-height: 400px;
	}

	.banner-slider,
	.banner-slide {
		height: 400px;
	}

	.banner-slide {
		display: none;
		position: absolute;
		top: 0;
		left: 0;
		opacity: 0;
		transition: opacity 2s ease-in-out;
	}

	.banner-slide.active {
		display: flex;
		opacity: 1;
		z-index: 2;
	}
}

/* Responsive - Mobil */
@media (max-width: 767px) {
	.slide-text {
		padding: 15px 20px;
	}

	.slide-text h1 {
		font-size: 22px;
		line-height: 1.2;
		margin-bottom: 6px;
	}
	
	.slide-text h1 br {
		display: none;
	}

	.slide-text h2 {
		font-size: 17px;
		margin-bottom: 6px;
	}

	.slide-text p {
		font-size: 13px;
		margin-bottom: 10px;
	}

	.banner-section {
		min-height: 300px;
	}

	.banner-slider,
	.banner-slide {
		height: 300px;
	}
	
	/* Banner s inline styly - responsive */
	.banner-section > .container > div[style*="height"] {
		height: 340px !important;
		align-items: flex-start !important;
		padding-top: 25px !important;
		border-radius: 8px !important;
	}
	
	.btn-contact {
		padding: 8px 20px !important;
		font-size: 13px !important;
	}
}

/* Responsive - Malé mobily a iPhone */
@media (max-width: 480px) {
	.banner-section > .container > div[style*="height"] {
		height: 300px !important;
		padding-top: 20px !important;
	}
	
	.slide-text {
		padding: 10px 15px;
	}
	
	.slide-text h1 {
		font-size: 20px;
		margin-bottom: 5px;
	}
	
	.slide-text h2 {
		font-size: 15px;
		margin-bottom: 5px;
	}
	
	.slide-text p {
		font-size: 12px;
		margin-bottom: 8px;
	}
}

/* iPhone specifické */
@media (max-width: 390px) {
	.banner-section > .container > div[style*="height"] {
		height: 280px !important;
		padding-top: 15px !important;
	}
	
	.slide-text h1 {
		font-size: 18px;
	}
	
	.slide-text h2 {
		font-size: 14px;
	}
	
	.btn-contact {
		padding: 7px 18px !important;
		font-size: 12px !important;
	}
}

/*------ SEKCE - Obecné styly ------*/
/* STATUS: ✅ AKTIVNÍ */
/* Používáno: .section, .layout-padding, .section-heading, .heading-left, .heading-right */
/* Třídy: .tag-small, .text-large, .theme-color */

.section {
	width: 100%;
	display: block;
	scroll-margin-top: 100px;
}

.footer-section {
	scroll-margin-top: 100px;
}

.layout-padding {
	padding-top: 30px;
	padding-bottom: 30px;
}

/* Nadpis sekce se číslem */
.section-heading {
	display: flex;
	gap: 40px;
	margin-bottom: 12px; /* reduced global space under section headings */
}

.heading-left {
	flex-shrink: 0;
}

/* (legacy .section-number přesunut na konec souboru) */

.heading-right {
	flex: 1;
}

.tag-small {
	font-size: 18px;
	text-transform: uppercase;
	color: #000;
	font-weight: 600;
	line-height: normal;
	margin: 0;
}

.heading-small {
	font-size: 32px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: -0.5px;
	line-height: 1.3;
	font-family: 'Raleway', sans-serif;
}

.heading-right h2 {
	font-size: 40px;
	font-weight: 600;
	margin-bottom: 6px; /* further reduced for tighter layout */
	text-transform: uppercase;
	letter-spacing: -0.5px;
	font-family: 'Raleway', sans-serif;
}

.text-large {
	font-size: 18px;
	color: #767676;
	margin-bottom: 0;
	font-weight: 500;
}

/* Tmavá sekce */
.section.dark-bg {
	background: #000;
	color: #fff;
}

/* Specific tighter spacing for Services section per request */
#services .section-heading {
	margin-bottom: 6px !important;
}

#services .heading-right h2 {
	margin-bottom: 4px !important;
	font-size: 36px; /* slightly smaller to match compact layout */
}

#services .tag-small {
	margin-bottom: 2px !important;
}

/* ------------------------------------------------------------------
   Unified section heading style
------------------------------------------------------------------ */
.section-heading .tag-small {
	font-size: 14px !important;
	text-transform: uppercase !important;
	color: #000 !important;
	font-weight: 600 !important;
	margin-bottom: 4px !important;
}

.section-heading .heading-right h2,
.section-heading h2 {
	font-size: 28px !important;
	font-weight: 600 !important;
	margin-bottom: 6px !important;
	text-transform: uppercase !important;
	letter-spacing: -0.5px !important;
	font-family: 'Raleway', sans-serif !important;
	color: var(--dark-color) !important;
}

.section-heading .text-large {
	font-size: 18px !important;
	color: #767676 !important;
	margin-bottom: 0 !important;
	font-weight: 500 !important;
}

/* Ensure empty left column hides and right column aligns left */
.section-heading .heading-left:empty { display: none !important; }
.section-heading .heading-right { padding-left: 0 !important; text-align: left !important; }

/* Běžný odstavcový text v sekcích */
.section-text {
	font-size: 15px;
	color: #555;
	line-height: 1.7;
	margin-bottom: 12px;
}

/* Odkazy uvnitř běžného textu musí jít odlišit i jinak než barvou (WCAG 1.4.1).
   Barvou to tady vyřešit nejde: text odstavce je #555 a proti němu nedá 3:1
   ani čistá černá (2,82:1), natož značková růžová (1,45:1) - má podobnou
   světlost, jen jiný odstín. Proto podtržení. */
.section-text a {
	text-decoration: underline;
}

/* SEO box - šedý kontejner s odsazením */
.seo-box {
	background: #f8f9fa;
	padding: 30px 40px;
	border-radius: 8px;
}

/* Gallery-specific tighter spacing */
#gallery .section-heading {
	margin-bottom: 0 !important; /* reduce space between heading and images */
}

#gallery .heading-right h2 {
	margin-bottom: 0 !important;
	font-size: 32px; /* slightly smaller to match tighter layout */
}

#gallery .text-large {
	margin-bottom: 0 !important;
	color: #777;
}

/* Make sure small top margins are adjusted on mobile as well */
@media (max-width: 767px) {
	#gallery .section-heading { margin-bottom: 0 !important; }
	#gallery .heading-right h2 { margin-bottom: 0 !important; }
	#gallery .text-large { margin-bottom: 0 !important; }
}

/* Align services heading to the left edge like other blocks */
#services .heading-left {
	display: none; /* hide empty left column reserved for section numbers */
}

#services .heading-right {
	padding-left: 0 !important;
	text-align: left;
}

/* Global: if the left heading column is empty, hide it and align the right column to the left
   This keeps section headings consistent across the site */
.section-heading .heading-left:empty {
	display: none;
}

.section-heading .heading-right {
	padding-left: 0;
	text-align: left;
}

.section.dark-bg .white-text {
	color: #fff;
}

/* Responsive */
@media (max-width: 767px) {
	.section-heading {
		gap: 20px;
	}

	.section-number {
		font-size: 60px;
	}

	.heading-right h2 {
		font-size: 24px;
	}

	.layout-padding {
		padding-top: 25px;
		padding-bottom: 25px;
	}
}

/*------ SLUŽBY - Service Cards ------*/
/* STATUS: ✅ AKTIVNÍ - používáno na index.php v PHP loop */
/* Třídy: .service-card, .service-icon, .service-icon-img, .service-icon-fa, .service-title */

.service-card {
	padding: 30px;
	border: 1px solid var(--border-gray);
	border-radius: 8px;
	background: #fff;
	transition: var(--transition);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.service-card:hover {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transform: translateY(-5px);
	border-color: #1a1a1a;
}

.service-icon {
	margin-bottom: 20px;
	display: flex;
	justify-content: flex-start;
}

.service-icon .fas {
	color: var(--primary-color) !important;
}

.service-icon img {
	width: 75px;
	height: 75px;
	object-fit: contain;
}

/* Icon size classes for service cards */
.service-icon-img {
	height: 75px;
	width: 75px;
	object-fit: contain;
}

.service-icon-fa {
	font-size: 75px;
	color: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 75px;
	width: 75px;
}

/* Banner Section Styles */
/* STATUS: ✅ AKTIVNÍ */
/* Refactored z inline stylů - používá se na index.php */
.banner-section {
	padding: 3px 0 40px 0;
}

.banner-wrapper {
	position: relative;
	background-image: url('img/top-Baner-1200.webp');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	overflow: hidden;
}

@media (max-width: 991px) {
	.banner-wrapper {
		height: 380px;
	}
}

@media (max-width: 767px) {
	.banner-wrapper {
		height: auto;
		min-height: 280px;
		padding: 30px 15px;
		align-items: flex-start;
	}
	.banner-wrapper .slide-text {
		margin-top: 0;
		padding: 0;
	}
}

.banner-content {
	position: relative;
	z-index: 2;
}

/* Map Section Styles */
/* STATUS: ✅ AKTIVNÍ */
/* Třída: .map-iframe - Google Maps embed na index.php */
.map-iframe {
	border: 0;
	border-radius: 8px;
}

.service-card .service-title {
	font-size: 18px;
	font-weight: 700;
	color: #000000;
	text-transform: uppercase;
	margin-bottom: 15px;
	border-bottom: 2px solid #000000;
	padding-bottom: 10px;
	letter-spacing: 0.5px;
	margin-top: 15px;
}

.service-card p {
	font-size: 14px;
	color: #666;
	flex-grow: 1;
	margin-bottom: 0;
}

/* (carousel/portfolio nepoužívané bloky přesunuty na konec) */

/*------ TÝM - Team Section ------*/
/* NEPOUŽÍVÁ SE - sekce týmu není v aktuální verzi implementována */
/*
(všechny team- třídy zakomentovat)
*/

/* (kontakt nepoužívané bloky přesunuty na konec) */

.team-member {
	text-align: center;
}

.team-image {
	position: relative;
	margin-bottom: 20px;
	overflow: hidden;
	border-radius: 8px;
}

.team-image img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	display: block;
	transition: var(--transition);
}

.team-image:hover img {
	transform: scale(1.05);
}

.team-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(216, 18, 65, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: var(--transition);
}

.team-image:hover .team-overlay {
	opacity: 1;
}

.team-member h4 {
	font-size: 20px;
	margin-bottom: 5px;
}

.team-member p {
	font-size: 14px;
	color: #888;
	margin-bottom: 0;
}

/* (statistiky nepoužívané bloky přesunuty na konec) */

/*------ FOOTER ------*/
/* STATUS: ✅ AKTIVNÍ - používáno globálně přes includes/footer.php */
/* Třídy: .footer-section, .footer-brand, .footer-menu, .social-links, .footer-bottom */

.footer-section {
	background: #1f1f1f;
	color: #fff;
	padding: 50px 0 0;
}

.footer-section .white-text {
	color: #fff;
}

.footer-section h3 {
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 20px;
}

.footer-icon {
	display: inline-block;
	margin-right: 15px;
	font-size: 24px;
	color: var(--primary-color);
}

.footer-icon i {
	color: var(--primary-color);
}

.footer-section p {
	color: #aaa;
	font-size: 14px;
	margin-bottom: 15px;
}

.footer-section p a {
	color: #aaa;
	text-decoration: none;
	transition: var(--transition);
}

.footer-section p a:hover {
	color: var(--primary-color);
}

.footer-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-menu li {
	line-height: 30px;
}

.footer-menu li a {
	color: #aaa;
	font-size: 14px;
	transition: var(--transition);
}

.footer-menu li a:hover {
	color: var(--primary-color);
	padding-left: 5px;
}

/* Newsletter formulář */
.newsletter-text {
	font-size: 14px;
	margin-bottom: 20px;
}

.newsletter-form {
	display: flex;
	flex-direction: column;
}

.newsletter-form input {
	padding: 10px 15px;
	border: none;
	border-radius: 4px;
	font-size: 14px;
	margin-bottom: 10px;
}

.newsletter-form input::placeholder {
	color: #999;
}

.btn-theme {
	background: var(--primary-color);
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: 4px;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
}

.btn-theme:hover {
	background: #b80e35;
	transform: translateY(-2px);
}

/* Sociální ikony */
.social-links {
	display: flex;
	gap: 10px;
	list-style: none;
	padding: 0;
	margin: 0;
	flex-wrap: wrap;
}

.social-links li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: var(--primary-color);
	color: #fff;
	border-radius: 50%;
	transition: var(--transition);
}

.social-links li a:hover {
	background: #b80e35;
	transform: scale(1.1);
}

.social-links i {
	color: #fff;
	font-size: 16px;
}

/*------ FOOTER BOTTOM ------*/

.footer-bottom {
	background: #191919;
	padding: 20px 0;
	border-top: 1px solid #333;
}

.copyright {
	color: #888;
	font-size: 14px;
	margin: 0;
}

.footer-bottom-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 20px;
	float: right;
}

.footer-bottom-menu li a {
	color: #888;
	font-size: 14px;
	transition: var(--transition);
}

.footer-bottom-menu li a:hover {
	color: var(--primary-color);
}

/* Footer */
.footer-brand { margin-bottom: 15px; }
.footer-brand img { margin-bottom: 5px; }
.footer-brand .fotohome { font-size: 14px; margin: 0; }
.footer-brand .fotohome span:first-child { font-weight: 700; }
.footer-brand .fotohome span:last-child { font-size: 12px; }

.footer-heading { font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.footer-heading.mt { margin-top: 15px; }

.footer-text { font-size: 13px; margin: 5px 0; }

/* Odkazy v patičce jako bloky s odsazením - dotyková plocha musí mít
   aspoň 24px (WCAG 2.2). Řádkové odkazy měly 13px * 1.8 = 23,4px, tedy
   těsně pod hranicí. Blok + 5px odsazení dává ~33px a odkazy se navíc
   nepřekrývají, takže projde i požadavek na rozestupy. */
.footer-links a,
.footer-docs a {
	display: block;
	padding: 5px 0;
	text-decoration: none;
	color: inherit;
}
.footer-docs a#cookieReopenSettings { text-decoration: none; color: inherit; }

.footer-section .social-links { font-size: 16px; }

/*------ SCROLL TO TOP ------*/
/* STATUS: ✅ AKTIVNÍ */
/* ID: #scroll-to-top - tlačítko pro scroll nahoru na index.php */

#scroll-to-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 50px;
	height: 50px;
	background: var(--primary-color);
	color: #fff;
	border: none;
	border-radius: 50%;
	display: none;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	cursor: pointer;
	transition: var(--transition);
	z-index: 99;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	line-height: 1;
	padding: 0;
}

#scroll-to-top i {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	position: relative;
	line-height: 1;
}

#scroll-to-top.show {
	display: flex;
}

#scroll-to-top:hover {
	background: #b80e35;
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/*================================================================
    RESPONSIVE DESIGN - Třístupňový přístup
================================================================*/
/* STATUS: [AKTIVNI] - Media queries pro všechny velikosti obrazovek */
/* Použito globálně napříč všemi stránkami */

/* DESKTOP - velké monitory (1200px+) */
/* Výchozí CSS výše */

/* TABLET - středně velké obrazovky (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
	.navbar .navbar-collapse ul li a {
		font-size: 14px;
		padding: 7px 15px;
	}

	.banner-slide {
		height: 500px;
	}

	.slide-text h1 {
		font-size: 32px;
	}

	.slide-text h2 {
		font-size: 24px;
	}

	.section-heading {
		gap: 20px;
	}

	.section-number {
		font-size: 80px;
	}

	.heading-right h2 {
		font-size: 28px;
	}

	.service-card {
		padding: 20px;
	}

	.stat-number {
		font-size: 48px;
	}

	#portfolio-carousel .carousel-control-prev {
		left: 10px;
	}

	#portfolio-carousel .carousel-control-next {
		right: 10px;
	}

	.footer-bottom-menu {
		gap: 15px;
	}
}

/* TABLET - střední obrazovky (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
	.navbar .navbar-collapse ul li a {
		padding: 5px 15px;
		font-size: 13px;
	}

	.navbar-brand img {
		height: 35px;
	}

	.banner-slider {
		height: 450px;
	}

	.banner-slide {
		height: 450px;
		display: none;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 0;
		left: 0;
		opacity: 0;
		transition: opacity 2s ease-in-out;
	}

	.banner-slide.active {
		display: flex;
		opacity: 1;
		z-index: 2;
	}

	.banner-slide .container {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
		padding: 0;
		margin: 0;
	}

	.banner-slide .row {
		display: flex;
		align-items: center;
		justify-content: center;
		height: 100%;
		width: 100%;
		margin: 0;
	}

	.banner-slide .col-md-12 {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.banner-slide .col-md-6 {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.slide-text {
		padding: 40px 50px;
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
	}

	.slide-text h1 {
		font-size: 28px;
		margin: 0;
	}

	.slide-text h2 {
		font-size: 20px;
		margin: 0;
	}

	.slide-text p {
		font-size: 14px;
	}

	.btn-contact {
		padding: 8px 20px;
		font-size: 14px;
	}

	.about-img {
		margin-bottom: 30px;
		margin-top: 30px;
	}

	.section-heading {
		flex-direction: column;
		gap: 20px;
	}

	.section-number {
		font-size: 70px;
	}

	.heading-right h2 {
		font-size: 26px;
	}

	.heading-right p {
		font-size: 15px;
	}

	.service-card {
		padding: 15px;
		margin-bottom: 15px;
	}

	.service-card h3 {
		font-size: 16px;
	}

	.service-card p {
		font-size: 13px;
	}

	.stat-number {
		font-size: 42px;
	}

	.stat-label {
		font-size: 13px;
	}

	.team-image img {
		height: 220px;
		width: 220px;
	}

	.team-info h3 {
		font-size: 16px;
	}

	.team-info p {
		font-size: 13px;
	}

	#portfolio-carousel .carousel-control-prev {
		left: 8px;
	}

	#portfolio-carousel .carousel-control-next {
		right: 8px;
	}

	.footer-section {
		margin-bottom: 20px;
	}

	.footer-section h3 {
		font-size: 16px;
	}

	.footer-menu li {
		line-height: 25px;
		font-size: 13px;
	}

	.footer-bottom-menu {
		gap: 10px;
		justify-content: center;
		float: none;
		margin-top: 15px;
	}

	.copyright {
		text-align: center;
		margin-bottom: 10px;
		font-size: 12px;
	}
}

/* MOBIL - malé obrazovky (max 767px) */
@media (max-width: 767px) {
	html, body {
		font-size: 13px;
	}

	.top-header {
		position: relative;
		z-index: 1000;
		background: #1a1a1a;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
		margin-bottom: 0;
	}

	.top-header.fixed-menu {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		width: 100%;
		z-index: 1001;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	}

	.navbar {
		padding: 10px 0;
		z-index: 1001;
		position: relative;
	}

	.navbar-brand img {
		height: 30px;
	}

	p.fotohome {
		font-size: 16px;
	}

	p.fotohome .photography {
		color: #AAAAAA;
		font-weight: 300;
		display: inline;
		font-family: 'Open Sans Condensed', sans-serif;
		font-size: 16px;
	}

	/* DŮLEŽITÉ: Mobilní navbar-collapse menu */
	.navbar-collapse {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #0d0d0d;
		border-bottom: 2px solid var(--primary-color);
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
		z-index: 1000;
		max-height: 0;
		overflow: hidden;
		padding: 0;
		transition: all 0.3s ease-in-out;
	}

	/* Když je menu OTEVŘENÉ */
	.navbar-collapse.show {
		display: block !important;
		max-height: 500px;
		padding: 15px 0;
		overflow: visible;
	}

	/* Když se menu OTEVÍRÁ/ZAVÍRÁ */
	.navbar-collapse.collapsing {
		display: block !important;
		overflow: hidden !important;
	}

	.navbar-nav {
		flex-direction: column;
		width: 100%;
		margin: 0;
		padding: 0;
	}

	.navbar-nav .nav-item {
		width: 100%;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		margin: 0;
	}

	.navbar-nav .nav-item:last-child {
		border-bottom: none;
	}

	.navbar-nav .nav-link {
		padding: 12px 20px !important;
		font-size: 14px;
		display: block;
		color: #fff !important;
		width: 100%;
		margin: 0;
	}

	.navbar .navbar-collapse ul li a:hover {
		background: rgba(216, 18, 65, 0.1);
		color: var(--primary-color) !important;
	}

	.btn-signup {
		background: var(--primary-color) !important;
		color: #fff !important;
		margin: 10px 20px !important;
		width: calc(100% - 40px) !important;
		font-weight: 600;
	}

	.navbar-toggler {
		padding: 0.25rem 0.5rem;
		border: 2px solid #fff;
		margin-right: 15px;
	}

	.navbar-toggler span {
		width: 25px;
		height: 3px;
		background: var(--primary-color);
		display: block;
		margin: 5px 0;
		transition: 0.3s;
		border-radius: 2px;
	}

	.navbar-toggler:focus {
		box-shadow: none;
		border-color: var(--primary-color);
	}

	/* Opravit vzdálenost od headeru */
	body {
		padding-top: 0;
	}

	.banner-section {
		margin-top: 0;
	}

	.banner-slider {
		height: 400px;
	}

	.banner-slide {
		height: 400px;
		padding: 0;
		margin-top: 0;
		display: none;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 0;
		left: 0;
		opacity: 0;
		transition: opacity 2s ease-in-out;
	}

	.banner-slide.active {
		display: flex;
		opacity: 1;
		z-index: 2;
	}

	.banner-slide .container {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
		padding: 0;
		margin: 0;
	}

	.banner-slide .row {
		display: flex;
		align-items: center;
		justify-content: center;
		height: 100%;
		width: 100%;
		margin: 0;
	}

	.banner-slide .col-md-12 {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.banner-slide .col-md-6 {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.slide-text {
		padding: 20px 30px;
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
	}

	.slide-text h1 {
		font-size: 22px;
		line-height: 1.4;
		margin: 0;
	}

	.slide-text h2 {
		font-size: 16px;
		margin: 0;
	}

	.slide-text p {
		font-size: 12px;
		display: none;
	}

	.btn-contact {
		padding: 8px 20px;
		font-size: 13px;
	}

	.about-section {
		padding: 30px 0;
	}

	.about-img {
		margin-bottom: 20px;
	}

	.about-img img {
		width: 100%;
		height: auto;
	}

	.about-info h3 {
		font-size: 18px;
	}

	.about-info p {
		font-size: 13px;
		line-height: 1.6;
	}

	.section-heading {
		flex-direction: column;
		gap: 15px;
	}

	.section-number {
		font-size: 50px;
	}

	.heading-right h2 {
		font-size: 20px;
	}

	.heading-right p {
		font-size: 13px;
	}

	.service-card {
		padding: 15px;
		margin-bottom: 15px;
		text-align: center;
	}

	.service-card img {
		height: 60px;
		width: auto;
	}

	.service-card h3 {
		font-size: 15px;
		margin: 10px 0;
	}

	.service-card p {
		font-size: 12px;
	}

	#portfolio-carousel .carousel-item img {
		height: 250px;
		object-fit: cover;
	}

	#portfolio-carousel .carousel-control-prev {
		left: 5px;
	}

	#portfolio-carousel .carousel-control-next {
		right: 5px;
	}

	#portfolio-carousel .carousel-control-prev,
	#portfolio-carousel .carousel-control-next {
		width: 35px;
		height: 35px;
	}

	.stat-section {
		padding: 30px 0;
	}

	.stat-item {
		margin-bottom: 20px;
		text-align: center;
	}

	.stat-number {
		font-size: 40px;
	}

	.stat-label {
		font-size: 12px;
	}

	.team-image img {
		height: 200px;
		width: 200px;
		border-radius: 100%;
	}

	.team-info h3 {
		font-size: 15px;
		margin: 10px 0;
	}

	.team-info p {
		font-size: 12px;
	}

	.team-info-text {
		display: none;
	}

	.contact-info-box {
		padding: 20px;
	}

	.contact-info-box h3 {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.contact-item {
		padding: 15px;
	}

	.contact-item i {
		font-size: 30px;
		margin-bottom: 10px;
	}

	.contact-item h5 {
		font-size: 16px;
		margin-bottom: 8px;
	}

	.contact-item p {
		font-size: 13px;
	}

	.footer-section {
		margin-bottom: 20px;
		text-align: center;
	}

	.footer-section h3 {
		font-size: 15px;
		margin-bottom: 10px;
	}

	.footer-menu {
		list-style: none;
		padding: 0;
		margin: 0;
	}

	.footer-menu li {
		line-height: 22px;
		font-size: 12px;
	}

	.footer-menu li a {
		color: #888;
		text-decoration: none;
	}

	.social-links {
		justify-content: center;
		margin: 15px 0;
	}

	.social-links a {
		margin: 0 10px;
	}

	.footer-bottom-menu {
		gap: 8px;
		justify-content: center;
		flex-direction: column;
	}

	.footer-bottom-menu li {
		font-size: 11px;
	}

	.copyright {
		text-align: center;
		margin-bottom: 10px;
		font-size: 11px;
	}

	#scroll-to-top {
		width: 40px;
		height: 40px;
		font-size: 16px;
		bottom: 15px;
		right: 15px;
	}
}



/* ------------------ Slider: match container width & 20% lower height ------------------ */
/* STATUS: [AKTIVNI] - Banner slider responsive overrides pro index.php */

.banner-section {
	min-height: 480px !important; /* 600 * 0.8 */
}

.banner-slider {
	width: 100% !important;    /* fill the parent .container */
	max-width: 100% !important;/* don't exceed container width */
	height: 480px !important;  /* reduced height */
	margin: 0 auto !important;
}

.banner-slide {
	height: 480px !important;
}

/* Larger desktop where original might be 500-600px -> scale down ~20% */
@media (min-width: 1200px) {
	.banner-section, .banner-slider, .banner-slide { height: 480px !important; min-height: 480px !important; }
}

/* Slightly smaller desktop/tablet */
@media (min-width: 992px) and (max-width: 1199px) {
	.banner-section, .banner-slider, .banner-slide { height: 400px !important; min-height: 400px !important; } /* 500 -> 400 */
}

@media (min-width: 768px) and (max-width: 991px) {
	.banner-section, .banner-slider, .banner-slide { height: 360px !important; min-height: 360px !important; } /* 450 -> 360 */
}

@media (max-width: 991px) {
	.banner-section, .banner-slider, .banner-slide { height: 336px !important; min-height: 336px !important; } /* 420 -> 336 */
	
	/* Banner responsive */
	.banner-section > .container > div[style*="height"] {
		height: 400px !important;
	}
	
	.slide-text h1 {
		font-size: 36px;
		line-height: 1.3;
	}
	
	.slide-text h2 {
		font-size: 24px;
	}
}

@media (max-width: 767px) {
	.banner-section, .banner-slider, .banner-slide { height: 256px !important; min-height: 256px !important; } /* 320 -> 256 */
	
	/* Banner responsive mobile */
	.banner-section {
		padding: 3px 0 20px 0 !important;
	}
	
	.banner-section > .container > div[style*="height"] {
		height: 350px !important;
		border-radius: 8px !important;
	}
	
	.slide-text {
		padding: 20px 15px;
	}
	
	.slide-text h1 {
		font-size: 26px;
		line-height: 1.2;
		margin-bottom: 8px;
	}
	
	.slide-text h1 br {
		display: none;
	}
	
	.slide-text h2 {
		font-size: 20px;
		margin-bottom: 8px;
	}
	
	.slide-text p {
		font-size: 14px;
		margin-bottom: 12px;
	}
	
	.btn-contact {
		padding: 10px 25px;
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.banner-section > .container > div[style*="height"] {
		height: 280px !important;
	}
	
	.slide-text h1 {
		font-size: 22px;
	}
	
	.slide-text h2 {
		font-size: 18px;
	}
}

/* Ensure slide inner containers still center correctly */
.banner-slide > .container { height: 100% !important; }

/* End slider overrides */

/* ============================================================================
	COOKIE CONSENT & MODAL STYLES
	============================================================================ */

/*==============================================================
    COOKIE CONSENT BANNER & MODAL
==============================================================*/
/* STATUS: ✅ AKTIVNÍ - GDPR cookie souhlas na všech stránkách */
/* Třídy: .cookie-consent, .cookie-modal, .cookie-title, .cookie-buttons */

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: -300px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9998;
    transition: bottom 0.4s ease-in-out;
}

.cookie-consent.show {
    bottom: 0;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 48px;
    color: #ffc107;
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h5 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 600;
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 5px;
    white-space: nowrap;
}

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: #fff;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cookie-modal-header {
    padding: 20px;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h5 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.cookie-modal-header h5 i {
    color: #ffc107;
    margin-right: 8px;
}

.cookie-modal-header .btn-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.cookie-modal-header .btn-close:hover {
    opacity: 1;
}

.cookie-modal-body {
    padding: 20px;
}

.cookie-modal-body > p {
    margin-bottom: 20px;
    color: #666;
}

.cookie-category {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 15px;
}

.cookie-category:last-child {
    margin-bottom: 0;
}

.cookie-category .form-check-input {
    width: 48px;
    height: 24px;
    cursor: pointer;
}

.cookie-category .form-check-input:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.cookie-category .form-check-label {
    margin-left: 10px;
}

.cookie-category .form-check-label strong {
    display: block;
    margin-bottom: 4px;
    color: #333;
    font-size: 15px;
}

.cookie-category .form-check-label small {
    color: #6c757d;
    font-size: 13px;
    line-height: 1.4;
}

.cookie-modal-footer {
    padding: 20px;
    border-top: 1px solid #dee2e6;
    display: flex;
    justify-content: flex-end;
}

.cookie-modal-footer .btn {
    padding: 10px 30px;
    font-size: 15px;
}

/* Responsive Cookie Consent */
@media (max-width: 768px) {
    .cookie-consent {
        padding: 15px 10px;
    }
    
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-icon {
        font-size: 32px;
    }
    
    .cookie-text {
        min-width: auto;
    }
    
    .cookie-text h5 {
        font-size: 16px;
        margin-bottom: 5px;
    }
    
    .cookie-text p {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
        gap: 8px;
    }
    
    .cookie-buttons .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .cookie-modal-content {
        margin: 10px;
    }
}




/* Název služby v kartičkách */
/* STATUS: ✅ AKTIVNÍ - service cards na index.php */
.service-title {
	font-size: 18px;
	font-weight: 700;
	color: #000000;
	text-transform: uppercase;
	margin-bottom: 15px;
	margin-top: 15px;
	border-bottom: 2px solid #000000;
	padding-bottom: 10px;
	letter-spacing: 0.5px;
}

/* Zvýrazněný titulek (FotoHome služby) */
/* NEPOUŽÍVÁ SE - bylo nahrazeno .services-info-title */
/* Dříve: highlight-title měla inline styly v HTML */
/*
.highlight-title {
}
*/

/* Podnadpis sekce (Nabízíme) */  
/* NEPOUŽÍVÁ SE - bylo nahrazeno .gray-offer-subtitle */
/* Dříve: section-subtitle měla inline styly v HTML */
/*
.section-subtitle {
}
*/

/* Název kategorie vybavení a karty */
/* STATUS: ✅ AKTIVNÍ - equipment section na index.php */
/* Třídy: .equipment-box, .equipment-box--spaced, .equipment-title, .equipment-list */
.equipment-box {
	padding: 25px;
	background: #f5f5f5;
	border-radius: 8px;
}

.equipment-box--spaced {
	margin-bottom: 20px;
}

.equipment-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 15px;
	color: var(--primary-color);
}

.equipment-title .fas {
	margin-right: 10px;
}

.equipment-list {
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 14px;
}

.equipment-list li {
	padding: 6px 0;
}

.equipment-list .fas {
	color: var(--primary-color);
	margin-right: 10px;
}

/* Cookie consent title */
/* STATUS: ✅ AKTIVNÍ - cookie banner */
.cookie-title {
	font-size: 18px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 10px;
}

/* Modal title styling */
/* STATUS: ⚠️ POUŽÍVÁNO - Bootstrap modals napříč projektem */
.modal-title {
	font-size: 20px;
	font-weight: 600;
	color: #1a1a1a;
}

/* =====================
   Services Info (prefix: services-info-)
   Přesun inline stylů z bloku FotoHome služby
   ===================== */
/* STATUS: ✅ AKTIVNÍ - FotoHome služby box na index.php */
/* Třídy: .services-info-box, .services-info-title, .services-info-text, atd. */
.services-info-box {
	padding: 40px;
	background: #ffffff;
	border-radius: 12px;
	border: 3px solid #1a1a1a;
	box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.services-info-title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 15px;
	color: #1a1a1a;
}

.services-info-text {
	font-size: 16px;
	margin-bottom: 15px;
	color: #333;
	line-height: 1.8;
}

.services-info-subtext {
	font-size: 15px;
	margin-bottom: 20px;
	color: #555;
	line-height: 1.7;
}

.services-info-note {
	font-size: 14px;
	margin-bottom: 15px;
	color: #666;
}

.services-info-cta {
	font-size: 16px;
	padding: 15px 30px;
	display: inline-block;
	margin-bottom: 15px;
}

.services-info-contact {
	font-size: 13px;
	color: #666;
	margin-top: 15px;
}

.services-info-contact a {
	color: var(--primary-color);
	font-weight: 600;
}

/* =====================
   Gallery Section (prefix: gallery-)
   Přesun inline stylů z index.php – karty s obrázky
   ===================== */
/* STATUS: ✅ AKTIVNÍ - galerie na index.php */
/* Třída: .gallery-card */
.gallery-card {
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* =====================
   Gray Offer Section (prefix: gray-offer-)
   Přesun inline stylů z index.php – šedá sekce s textem
   ===================== */
/* STATUS: ✅ AKTIVNÍ - "O nás" sekce na index.php */
/* Třídy: .gray-offer-container, .gray-offer-content, .gray-offer-text, */
/* .gray-offer-subtitle, .gray-offer-list, .gray-offer-note, */
/* .gray-offer-cta-wrap, .gray-offer-cta */
.gray-offer-container {
	background: #f2f2f2;
}

.gray-offer-content {
	color: #333;
}

.gray-offer-text {
	margin-left: 40px;
	margin-right: 40px;
	color: #555;
	font-size: 14px;
}

.gray-offer-subtitle {
	margin-top: 25px;
	margin-left: 40px;
	color: #d81241;
	font-size: 16px;
	font-weight: 700;
}

.gray-offer-list {
	list-style: none;
	padding: 0;
	margin: 15px 0 15px 40px;
	padding-left: 20px;
	font-size: 13px;
}

.gray-offer-list li {
	padding: 6px 0;
	margin-left: 0;
	color: #555;
}

.gray-offer-list .fa-check {
	color: #d81241;
	margin-right: 12px;
}

.gray-offer-note {
	margin-top: 20px;
	margin-left: 40px;
	margin-right: 40px;
	color: #666;
	font-size: 14px;
}

/* CTA tlačítko v šedé sekci */
.gray-offer-cta-wrap {
	margin-top: 30px;
	margin-left: 40px;
	margin-right: 40px;
	text-align: center;
}

.gray-offer-cta {
	font-size: 18px;
	padding: 15px 40px;
	display: inline-block;
}

.gray-offer-cta .fa-calendar-check {
	margin-right: 8px;
}

/*==============================================================
	NEPOUŽÍVANÉ / LEGACY BLOKY PŘESUNUTÉ NA KONEC SOUBORU
	Tyto sekce jsou zakomentované a ponechané pro případný návrat.
==============================================================*/

/* ------ Nadpis sekce s číslem (LEGACY) ------ */
/* NEPOUŽÍVÁ SE - legacy kód z původního designu s velkými čísly */
/* .section-number - zobrazovala velká čísla vedle nadpisů sekcí */
/*
.section-number {
	font-size: 155px;
	font-weight: 400;
	color: #cccac5;
	line-height: 70px;
	margin: 0 45px 0 0;
	font-family: 'Raleway', sans-serif;
}
*/

/* ------ CAROUSEL / PORTFOLIO (NEPOUŽÍVANÉ) ------ */
/* NEPOUŽÍVÁ SE - carousel komponenta není v aktuální verzi implementována */
/*
#portfolio-carousel .carousel-item {
	padding: 20px 0;
}

#portfolio-carousel .carousel-control-prev,
#portfolio-carousel .carousel-control-next {
	width: 50px;
	height: 50px;
	background: var(--primary-color);
	border-radius: 50%;
	opacity: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 50%;
	transform: translateY(-50%);
}

#portfolio-carousel .carousel-control-prev {
	left: -70px;
}

#portfolio-carousel .carousel-control-next {
	right: -70px;
}

#portfolio-carousel .carousel-control-prev:hover,
#portfolio-carousel .carousel-control-next:hover {
	background: #b80e35;
}

#portfolio-carousel .carousel-control-prev-icon,
#portfolio-carousel .carousel-control-next-icon {
	width: 20px;
	height: 20px;
}
*/

/* ------ MAPA A KONTAKT (NEPOUŽÍVANÉ) ------ */
/* NEPOUŽÍVÁ SE - contact-info-box a contact-item nejsou použity */
/*
.contact-info-box {
	background: #f8f9fa;
	padding: 40px;
	border-radius: 8px;
	margin-top: 40px;
}

.contact-info-box h3 {
	font-size: 24px;
	margin-bottom: 20px;
	color: #333;
	font-weight: 700;
}

.contact-item {
	text-align: center;
	padding: 20px;
}

.contact-item i {
	font-size: 40px;
	color: var(--primary-color);
	margin-bottom: 15px;
	display: block;
}

.contact-item h5 {
	font-size: 18px;
	margin-bottom: 10px;
	color: #333;
	font-weight: 700;
}

.contact-item p {
	font-size: 14px;
	color: #666;
	margin: 0;
	line-height: 1.6;
}

.contact-item a {
	color: var(--primary-color);
	text-decoration: none;
	transition: var(--transition);
}

.contact-item a:hover {
	text-decoration: underline;
}
*/

/* ------ STATISTIKA / COUNTER (NEPOUŽÍVANÉ) ------ */
/* NEPOUŽÍVÁ SE - statistiky nejsou v aktuální verzi implementovány */
/*
.stats-section {
	margin-top: 40px;
}

.stat-box {
	text-align: center;
	padding: 30px 0;
}

.stat-number {
	font-size: 60px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 10px;
	display: block;
}

.stat-label {
	font-size: 18px;
	color: #fff;
	font-weight: 600;
	margin-bottom: 0;
	text-transform: uppercase;
	letter-spacing: 1px;
}
*/

/* ============================================================
   FAQ - Časté dotazy (index.php, sekce #faq)
   ============================================================ */
.faq-item {
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 8px;
	margin-bottom: 12px;
	overflow: hidden;
}

.faq-item summary {
	cursor: pointer;
	padding: 18px 22px;
	font-weight: 600;
	font-size: 17px;
	color: #1a1a1a;
	list-style: none;
	position: relative;
	padding-right: 48px;
	transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	content: "+";
	position: absolute;
	right: 22px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 24px;
	font-weight: 400;
	color: var(--primary-color);
	transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
	content: "\2212";
}

.faq-item summary:hover,
.faq-item[open] summary {
	color: var(--primary-color);
}

.faq-item p {
	padding: 0 22px 18px;
	margin: 0;
	color: #555;
	line-height: 1.7;
}

.faq-item p a {
	color: var(--primary-color);
	font-weight: 600;
}
