/* ==========================================================================
   Fotobomba – hlavné štýly (podľa Figma „Fotobomba-web-vol2“)
   ========================================================================== */

/* Písmo Bricolage Grotesque – hostované lokálne (bez Google Fonts, GDPR friendly) */
@font-face {
	font-family: "Bricolage Grotesque";
	font-style: normal;
	font-display: swap;
	font-weight: 200 800;
	src: url("../fonts/bricolage-grotesque-latin-ext.woff2") format("woff2-variations"), url("../fonts/bricolage-grotesque-latin-ext.woff2") format("woff2");
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
	font-family: "Bricolage Grotesque";
	font-style: normal;
	font-display: swap;
	font-weight: 200 800;
	src: url("../fonts/bricolage-grotesque-latin.woff2") format("woff2-variations"), url("../fonts/bricolage-grotesque-latin.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
	--fb-black: #2e1c35;
	--fb-red: #de3b43;
	--fb-red-dark: #c42f37;
	--fb-white: #fff;
	--fb-pink-100: #fbf6fd;
	--fb-pink-200: #f9e9ff;
	--fb-pink-300: #e8deec;
	--fb-purple-700: #52375c;
	--fb-gray-50: #f9fafb;
	--fb-gray-200: #e5e7eb;
	--fb-gray-300: #d2d6db;
	--fb-gray-400: #9da4ae;

	--fb-font: "Bricolage Grotesque", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

	--fb-container: 1200px;
	--fb-gutter: max(16px, calc((100vw - var(--fb-container)) / 2));
	--fb-section: clamp(64px, 7vw, 96px);

	--fb-radius-lg: 24px;
	--fb-radius-md: 12px;

	--fb-shadow-lg: 0 12px 16px -4px rgba(16, 24, 40, .08), 0 4px 6px -2px rgba(16, 24, 40, .03);
	--fb-shadow-xl: 0 20px 24px -4px rgba(16, 24, 40, .08), 0 8px 8px -4px rgba(16, 24, 40, .03);
}

/* Reset ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
	margin: 0;
	font-family: var(--fb-font);
	font-variation-settings: "opsz" 14; /* rovnako ako vo Figme */
	font-weight: 500;
	font-size: 16px;
	line-height: 1.6;
	color: var(--fb-black);
	background: var(--fb-white);
	overflow-x: clip;
	-webkit-font-smoothing: antialiased;
	display: flex; flex-direction: column; min-height: 100vh;
}
.fb-main { flex: 1 0 auto; }
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
:where(ul[class], ol[class]) { list-style: none; padding: 0; }
button { font: inherit; color: inherit; }
strong, b { font-weight: 700; }

:focus-visible { outline: 3px solid var(--fb-red); outline-offset: 3px; border-radius: 6px; }

.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.fb-skip {
	position: absolute; left: 16px; top: -100px; z-index: 1000;
	background: var(--fb-black); color: #fff; padding: 12px 16px; border-radius: 12px;
}
.fb-skip:focus { top: 16px; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { transition-duration: .01ms !important; }
}

/* Layout + typografia ---------------------------------------------------- */
.fb-container { width: min(var(--fb-container), 100% - 32px); margin-inline: auto; }
.fb-rel { position: relative; }
.fb-center { text-align: center; }
.fb-section { padding-block: var(--fb-section); position: relative; }

.fb-h-xl {
	font-size: clamp(42px, 5.6vw, 80px);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.02em;
	text-wrap: balance;
}
.fb-h-lg {
	font-size: clamp(32px, 3.4vw, 48px);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.02em;
	text-wrap: balance;
}
.fb-body { font-size: 16px; line-height: 1.6; font-weight: 500; }
.fb-lead { font-size: clamp(17px, 1.4vw, 20px); line-height: 1.5; max-width: 640px; margin-inline: auto; }

/* Tlačidlá + odkazy ------------------------------------------------------ */
.fb-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 17.5px 24px;
	border-radius: 9999px;
	background: var(--fb-red);
	color: var(--fb-white);
	font-size: 14px; font-weight: 600; line-height: 1;
	white-space: nowrap;
	transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.fb-btn:hover { background: var(--fb-red-dark); transform: translateY(-1px); box-shadow: 0 8px 16px -6px rgba(222, 59, 67, .55); }
.fb-btn:active { transform: none; }
.fb-btn--block { width: 100%; border-radius: var(--fb-radius-md); padding-block: 20px; }

.fb-contact-link {
	display: inline-flex; align-items: center; gap: 6px;
	font-size: 14px; font-weight: 600; line-height: 1; white-space: nowrap;
	transition: color .2s ease;
}
.fb-contact-link .fb-icon { color: var(--fb-red); flex: none; }
.fb-contact-link:hover { color: var(--fb-red); }

.fb-icon { flex: none; }

/* Placeholder (červený štvorec, kým nie je nahraný obrázok) -------------- */
.fb-ph {
	display: flex; align-items: center; justify-content: center;
	width: 100%; height: 100%;
	background: var(--fb-red);
	color: rgba(255, 255, 255, .85);
	font-size: 14px; font-weight: 600; text-align: center; padding: 12px;
}
.fb-ph--map {
	aspect-ratio: 1200 / 578; background: var(--fb-gray-200); color: var(--fb-gray-400);
	border-radius: var(--fb-radius-lg);
}

/* Dekorácie (emoji) ------------------------------------------------------ */
.fb-deco { position: absolute; z-index: 3; pointer-events: none; user-select: none; height: auto; }

/* ==========================================================================
   Hlavička
   ========================================================================== */
.fb-header {
	position: sticky; top: 12px; z-index: 100;
	width: min(var(--fb-container), 100% - 32px);
	margin: 24px auto 0;
}
.fb-header__bar {
	position: relative;
	display: flex; align-items: center; justify-content: space-between; gap: 24px;
	padding: 12px;
	background: var(--fb-gray-50);
	border-radius: 999px;
	transition: box-shadow .25s ease, background-color .25s ease;
}
.fb-header.is-scrolled .fb-header__bar { background: rgba(249, 250, 251, .92); backdrop-filter: blur(10px); box-shadow: var(--fb-shadow-lg); }
.fb-header__logo { display: block; flex: none; padding-left: 12px; }
.fb-logo { width: 83px; height: 50px; object-fit: contain; }

.fb-menu { display: flex; align-items: center; gap: 24px; list-style: none; margin: 0; padding: 0; }
.fb-menu > li { position: relative; }
.fb-menu a {
	display: inline-flex; align-items: center; gap: 5px;
	font-size: 14px; font-weight: 600; line-height: 1; white-space: nowrap;
	padding-block: 8px;
	transition: color .2s ease;
}
.fb-menu a:hover, .fb-menu .current-menu-item > a { color: var(--fb-red); }
.fb-menu .fb-icon { transition: transform .2s ease; }
.fb-menu .menu-item-has-children:hover > a .fb-icon,
.fb-menu .menu-item-has-children.is-open > a .fb-icon { transform: rotate(180deg); }

.fb-menu .sub-menu {
	position: absolute; left: -16px; top: 100%;
	min-width: 260px; margin: 0; padding: 8px; list-style: none;
	background: var(--fb-white);
	border: 1px solid var(--fb-pink-300);
	border-radius: 16px;
	box-shadow: var(--fb-shadow-xl);
	opacity: 0; visibility: hidden; transform: translateY(6px);
	transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.fb-menu .sub-menu::before { content: ""; position: absolute; left: 0; right: 0; top: -12px; height: 12px; }
.fb-menu .menu-item-has-children:hover > .sub-menu,
.fb-menu .menu-item-has-children:focus-within > .sub-menu,
.fb-menu .menu-item-has-children.is-open > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.fb-menu .sub-menu a { display: flex; padding: 12px; border-radius: 10px; }
.fb-menu .sub-menu a:hover { background: var(--fb-pink-100); color: var(--fb-black); }

.fb-header__right { display: flex; align-items: center; gap: 24px; flex: none; }
.fb-header__contacts { display: flex; align-items: center; gap: 24px; }
.fb-nav__mobile-extra { display: none; }

.fb-burger {
	display: none; align-items: center; justify-content: center;
	width: 49px; height: 49px; border: 0; border-radius: 50%;
	background: var(--fb-white); cursor: pointer;
}
.fb-burger__close { display: none; }
.fb-header.is-open .fb-burger__open { display: none; }
.fb-header.is-open .fb-burger__close { display: block; }

@media (max-width: 1180px) {
	.fb-header__contacts { display: none; }
}
@media (max-width: 900px) {
	.fb-burger { display: inline-flex; }
	.fb-nav {
		position: absolute; left: 0; right: 0; top: calc(100% + 8px);
		padding: 16px;
		background: var(--fb-white);
		border: 1px solid var(--fb-pink-300);
		border-radius: 24px;
		box-shadow: var(--fb-shadow-xl);
		opacity: 0; visibility: hidden; transform: translateY(-8px);
		transition: opacity .2s ease, transform .2s ease, visibility .2s;
		max-height: calc(100vh - 120px); overflow-y: auto;
	}
	.fb-header.is-open .fb-nav { opacity: 1; visibility: visible; transform: none; }
	.fb-menu { flex-direction: column; align-items: stretch; gap: 0; }
	.fb-menu > li > a { display: flex; justify-content: space-between; padding: 14px 12px; font-size: 18px; }
	.fb-menu .sub-menu {
		position: static; min-width: 0; padding: 0 0 8px 12px; border: 0; box-shadow: none; border-radius: 0;
		opacity: 1; visibility: visible; transform: none; display: none;
	}
	.fb-menu .menu-item-has-children.is-open > .sub-menu { display: block; }
	.fb-menu .menu-item-has-children:hover > a .fb-icon { transform: none; }
	.fb-menu .menu-item-has-children.is-open > a .fb-icon { transform: rotate(180deg); }
	.fb-menu .sub-menu a { font-size: 16px; }
	.fb-nav__mobile-extra {
		display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
		margin-top: 8px; padding: 16px 12px 4px; border-top: 1px solid var(--fb-pink-300);
	}
	.fb-nav__mobile-extra .fb-btn { width: 100%; }
}
@media (max-width: 560px) {
	.fb-header { margin-top: 12px; top: 8px; width: calc(100% - 24px); }
	.fb-header__bar { padding: 8px; }
	.fb-header__logo { padding-left: 8px; }
	.fb-logo { width: 66px; height: 40px; }
	.fb-header__cta { display: none; }
	.fb-burger { width: 44px; height: 44px; }
}

/* ==========================================================================
   1. Hero
   ========================================================================== */
.fb-hero { padding: 69px 0 var(--fb-section); }
.fb-hero__intro { text-align: center; }
.fb-hero__intro .fb-h-xl { max-width: 820px; margin-inline: auto; }
.fb-hero__actions {
	display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px 24px;
	margin-top: 32px;
}
.fb-hero__ig {
	display: inline-flex; align-items: center; gap: 6px;
	font-size: 14px; font-weight: 600; line-height: 1;
	text-decoration: underline; text-underline-offset: 3px;
}
.fb-hero__ig .fb-icon { color: var(--fb-red); }
.fb-hero__ig:hover { color: var(--fb-red); }

.fb-marquee {
	position: relative;
	margin-top: var(--fb-section);
	overflow-x: clip; overflow-y: visible;
}
.fb-marquee__track {
	display: flex; width: max-content;
	animation: fb-marquee var(--fb-marquee-duration, 36s) linear infinite;
}
.fb-marquee:hover .fb-marquee__track { animation-play-state: paused; }
.fb-marquee__group { display: flex; gap: 14px; padding-right: 14px; }
.fb-marquee__item {
	width: clamp(260px, 41.667vw, 600px);
	aspect-ratio: 3 / 2;
	border-radius: var(--fb-radius-lg);
	overflow: hidden;
	background: var(--fb-pink-100);
}
.fb-marquee__img { width: 100%; height: 100%; object-fit: cover; }
@keyframes fb-marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
	.fb-marquee { overflow-x: auto; }
	.fb-marquee__track { animation: none; }
	.fb-marquee__group[aria-hidden="true"] { display: none; }
}
.fb-deco--hero { width: clamp(96px, 13.6vw, 196px); top: clamp(-87px, -6vw, -48px); right: max(8px, calc(50% - 608px)); transform: rotate(8deg); }

/* ==========================================================================
   2. Čo ponúka náš fotokútik – karusel
   ========================================================================== */
.fb-features .fb-h-lg { position: relative; z-index: 1; }
.fb-deco--features { width: clamp(80px, 11vw, 160px); left: clamp(-8px, 7.3vw, 105px); top: 24px; transform: rotate(-12deg); }
@media (max-width: 900px) { .fb-deco--features { top: -56px; left: -4px; } }

.fb-carousel { position: relative; z-index: 1; margin-top: 32px; }
.fb-carousel__track {
	display: flex; gap: 24px;
	overflow-x: auto; overscroll-behavior-x: contain;
	scroll-snap-type: x mandatory;
	scroll-padding-inline: var(--fb-gutter);
	padding: 32px var(--fb-gutter) 40px;
	scrollbar-width: none;
	cursor: grab;
}
.fb-carousel__track::-webkit-scrollbar { display: none; }
.fb-carousel__track.is-dragging { cursor: grabbing; scroll-snap-type: none; user-select: none; }
.fb-carousel__track.is-dragging a { pointer-events: none; }
.fb-carousel__slide { flex: 0 0 300px; scroll-snap-align: start; }

.fb-feature {
	display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
	height: 400px; padding: 32px;
	background: var(--fb-white);
	border: 1px solid var(--fb-pink-300);
	border-radius: var(--fb-radius-lg);
	box-shadow: var(--fb-shadow-lg);
	text-align: center;
	transition: transform .25s ease, box-shadow .25s ease;
}
a.fb-feature:hover, .fb-feature:hover { transform: translateY(-4px); box-shadow: var(--fb-shadow-xl); }
.fb-feature__media { display: flex; align-items: center; justify-content: center; width: 200px; height: 200px; flex: none; }
.fb-feature__img { width: 100%; height: 100%; object-fit: contain; }
.fb-feature__media .fb-ph { border-radius: 16px; }
.fb-feature__title {
	font-size: 24px; font-weight: 500; line-height: 1; letter-spacing: -0.02em;
	text-wrap: balance;
}
.fb-feature__title strong { font-weight: 700; }

.fb-dots {
	display: flex; gap: 8px; width: max-content; margin: 24px auto 0;
	padding: 4px; border-radius: 999px; background: var(--fb-white);
}
.fb-dots[hidden] { display: none; }
.fb-dot {
	width: 38px; height: 13px; padding: 0; border: 0; border-radius: 9999px;
	background: var(--fb-pink-300); cursor: pointer;
	transition: background-color .2s ease, width .2s ease;
}
.fb-dot:hover { background: #d9c6e0; }
.fb-dot.is-active { background: var(--fb-red); }

@media (max-width: 560px) {
	.fb-carousel__slide { flex-basis: 260px; }
	.fb-feature { height: 340px; padding: 24px; }
	.fb-feature__media { width: 170px; height: 170px; }
	.fb-feature__title { font-size: 21px; }
}

/* ==========================================================================
   3. Foto služby – kategórie
   ========================================================================== */
.fb-services__grid {
	display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 48px 24px; margin-top: 64px;
}
.fb-service-card { display: flex; flex-direction: column; gap: 24px; }
.fb-service-card__media {
	display: block; aspect-ratio: 384 / 224;
	border-radius: var(--fb-radius-lg); overflow: hidden;
	background: var(--fb-pink-100);
}
.fb-service-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.fb-service-card__title { font-size: 20px; font-weight: 700; line-height: 1; display: inline-flex; align-items: center; gap: 8px; transition: color .2s ease; }
.fb-service-card:hover .fb-service-card__img { transform: scale(1.04); }
.fb-service-card:hover .fb-service-card__title { color: var(--fb-red); }

@media (max-width: 900px) {
	.fb-services__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 16px; margin-top: 40px; }
	.fb-service-card { gap: 16px; }
	.fb-service-card__title { font-size: 18px; }
}
@media (max-width: 380px) {
	.fb-services__grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
	.fb-h-xl br, .fb-h-lg br { display: none; }
}

/* ==========================================================================
   4. Spomienky nechajte na nás
   ========================================================================== */
.fb-memories { padding-block: clamp(80px, 10.4vw, 150px); }
.fb-memories__grid {
	display: grid; grid-template-columns: minmax(0, 384px) minmax(0, 486px);
	justify-content: center; align-items: center;
	column-gap: clamp(48px, 8.75vw, 126px);
}
.fb-memories__text { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
.fb-contact-row { display: flex; flex-wrap: wrap; gap: 12px 24px; }
.fb-memories__media { position: relative; }
.fb-memories__frame {
	position: relative; aspect-ratio: 486 / 372;
	border-radius: var(--fb-radius-lg); overflow: hidden;
	background: var(--fb-pink-100);
}
.fb-memories__img { width: 100%; height: 100%; object-fit: cover; }
.fb-memories__logo { position: absolute; left: 30px; bottom: 30px; width: clamp(80px, 23%, 114px); }
.fb-memories__logo .fb-logo { width: 100%; height: auto; }
.fb-deco--memories { width: clamp(100px, 12vw, 172px); top: -23px; right: 17px; transform: rotate(10deg); }

@media (max-width: 900px) {
	.fb-memories__grid { grid-template-columns: 1fr; row-gap: 56px; }
	.fb-memories__media { max-width: 560px; }
	.fb-deco--memories { top: -48px; right: -4px; }
}

/* ==========================================================================
   5. Cenník
   ========================================================================== */
.fb-pricing { background: var(--fb-pink-100); }
.fb-pricing__grid {
	display: grid; grid-template-columns: repeat(var(--fb-cols, 3), minmax(0, 1fr));
	gap: 24px; margin-top: 48px;
}
.fb-price-card {
	display: flex; flex-direction: column; gap: 24px;
	padding: 12px;
	background: var(--fb-white);
	border: 1px solid var(--fb-pink-300);
	border-radius: var(--fb-radius-lg);
	box-shadow: var(--fb-shadow-xl);
}
.fb-price-card__head {
	display: flex; flex-direction: column; align-items: center; gap: 12px;
	padding: 24px 12px;
	border-radius: var(--fb-radius-md);
	background: linear-gradient(180deg, var(--fb-pink-200) 0%, rgba(251, 246, 253, 0) 100%);
}
.fb-price-card__name {
	display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px;
	font-size: 24px; font-weight: 700; line-height: 1; letter-spacing: -0.02em; text-align: center;
}
.fb-pill {
	display: inline-flex; padding: 8px 12px; border-radius: 99px;
	background: var(--fb-black); color: var(--fb-white);
}
.fb-price-card__price { font-size: clamp(44px, 3.9vw, 56px); font-weight: 700; line-height: 1; letter-spacing: -0.02em; }
.fb-checklist { list-style: none; margin: 0; padding: 0; }
.fb-checklist li {
	display: flex; align-items: center; gap: 4px;
	padding-block: 8px;
	border-bottom: 1px solid var(--fb-pink-300);
	font-size: 16px; font-weight: 500; line-height: 1.25;
}
.fb-checklist .fb-icon { color: var(--fb-red); }
.fb-price-card .fb-btn { margin-top: auto; }

.fb-custom-wrap { position: relative; margin-top: 24px; }
.fb-custom {
	display: flex; flex-direction: column; align-items: center; gap: 24px;
	padding: 48px 24px;
	background: linear-gradient(90deg, #301d38 0%, #4a3154 100%);
	border: 1px solid var(--fb-pink-300);
	border-radius: var(--fb-radius-lg);
	box-shadow: var(--fb-shadow-xl);
	color: var(--fb-white); text-align: center;
	overflow: hidden;
}
.fb-custom__text { font-size: 18px; font-weight: 500; line-height: 1.35; }
.fb-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 24px; margin-top: 8px; }
.fb-chip {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 16px 18px; border-radius: 999px;
	background: var(--fb-purple-700);
	font-size: 14px; font-weight: 600; line-height: 1; white-space: nowrap;
}
.fb-deco--pricing { width: clamp(80px, 11vw, 160px); left: -44px; top: 27px; transform: rotate(-6deg); }

@media (max-width: 1000px) {
	.fb-pricing__grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
	.fb-deco--pricing { left: -12px; top: -48px; }
	.fb-custom { padding-top: 56px; }
}
@media (max-width: 560px) {
	.fb-chip { white-space: normal; text-align: left; }
}

/* ==========================================================================
   6. Kde fotíme
   ========================================================================== */
.fb-area { padding-block: clamp(64px, 8.3vw, 120px); }
.fb-area__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px 48px; }
.fb-area__head .fb-body { max-width: 384px; }
.fb-area__map { margin-top: clamp(40px, 7.8vw, 113px); }
.fb-area__img { width: 100%; height: auto; }
@media (max-width: 760px) {
	.fb-area__head { flex-direction: column; }
}

/* ==========================================================================
   Pätička
   ========================================================================== */
.fb-footer {
	background: var(--fb-gray-50);
	border-top: 1px solid var(--fb-gray-200);
	padding: 78px 0 22px;
}
.fb-footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto auto;
	column-gap: clamp(48px, 9vw, 129px);
}
.fb-footer__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
.fb-footer__logo .fb-logo--lg { width: 151px; height: 91px; }
.fb-footer__claim { font-size: clamp(36px, 3.4vw, 48px); line-height: 1.2; letter-spacing: -0.01em; }
.fb-footer__claim strong, .fb-footer__claim span { display: block; }
.fb-footer__claim strong { font-weight: 700; }
.fb-footer__claim span { font-weight: 400; }
.fb-footer__col { padding-top: 115px; min-width: 188px; }
.fb-footer__label { font-size: 16px; font-weight: 500; line-height: 1; color: var(--fb-gray-400); margin-bottom: 24px; }
.fb-footer__list { display: flex; flex-direction: column; gap: 16px; list-style: none; margin: 0; padding: 0; }
.fb-footer__list--plain { gap: 18px; }
.fb-footer__list a { font-size: 20px; font-weight: 500; line-height: 1.1; transition: color .2s ease; }
.fb-footer__list a:hover { color: var(--fb-red); }
.fb-social { display: inline-flex; align-items: center; gap: 16px; }
.fb-social__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 36px; height: 36px; border-radius: 99px;
	background: var(--fb-red); color: var(--fb-white);
	transition: transform .2s ease;
}
.fb-social:hover .fb-social__icon { transform: scale(1.08); }

.fb-footer__bottom {
	display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px 24px;
	margin-top: 36px;
	font-size: 14px; font-weight: 500; line-height: 1.6; color: var(--fb-gray-400);
}
.fb-footer__legal ul { display: flex; flex-wrap: wrap; gap: 4px 21px; list-style: none; margin: 0; padding: 0; }
.fb-footer__bottom a:hover { color: var(--fb-black); }

@media (max-width: 900px) {
	.fb-footer { padding-top: 56px; }
	.fb-footer__grid { grid-template-columns: 1fr 1fr; row-gap: 48px; }
	.fb-footer__brand { grid-column: 1 / -1; }
	.fb-footer__col { padding-top: 0; min-width: 0; }
}
@media (max-width: 560px) {
	.fb-footer__grid { grid-template-columns: 1fr; row-gap: 40px; }
	.fb-footer__list a { font-size: 18px; }
}

/* ==========================================================================
   Podstránky – spoločné
   ========================================================================== */
.fb-page-head { padding: 69px 0 clamp(56px, 6.7vw, 96px); text-align: center; }
.fb-page-head .fb-h-xl { max-width: 900px; margin-inline: auto; font-size: clamp(38px, 4.45vw, 64px); }
.fb-page-head--wide .fb-h-xl { max-width: 880px; }
.fb-page-head .fb-lead {
	margin-top: 32px; max-width: 700px;
	font-size: clamp(17px, 1.4vw, 20px); font-weight: 500; line-height: 1.6;
}
.fb-h-xl--page { font-size: clamp(38px, 4.6vw, 64px); max-width: 900px; margin-inline: auto; }
.fb-h-md { font-size: clamp(26px, 2.4vw, 32px); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
.fb-breadcrumb { font-size: 14px; font-weight: 600; color: var(--fb-red); margin-bottom: 16px; }
.fb-breadcrumb a:hover { text-decoration: underline; }

.fb-big-contacts {
	display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 49px;
	margin: 32px 0 0; padding: 0; list-style: none;
}
.fb-big-contacts a {
	display: inline-flex; align-items: center; gap: 14px;
	font-size: clamp(18px, 1.7vw, 24px); font-weight: 500; line-height: 1.2;
	transition: color .2s ease;
}
.fb-big-contacts a:hover { color: var(--fb-red); }
.fb-social__icon--lg { width: 40px; height: 40px; }

/* Text článku (foto služby, akcie, bežné stránky) */
.fb-prose { font-size: 16px; font-weight: 500; line-height: 1.6; }
.fb-prose > * + * { margin-top: 28px; }
.fb-prose h2, .fb-prose h3 { font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
.fb-prose > h2, .fb-prose > h3 { margin-top: 56px; }
.fb-prose > :first-child { margin-top: 0; }
.fb-prose h2 { font-size: clamp(24px, 2vw, 28px); }
.fb-prose h2 + p, .fb-prose h3 + p { margin-top: 24px; }
.fb-prose h3 { font-size: 22px; }
.fb-prose a { color: var(--fb-red); text-decoration: underline; text-underline-offset: 3px; }
.fb-prose ul { padding-left: 0; list-style: none; }
.fb-prose ul li { position: relative; padding-left: 30px; }
.fb-prose ul li + li { margin-top: 8px; }
.fb-prose ul li::before {
	content: ""; position: absolute; left: 0; top: .2em; width: 20px; height: 20px;
	background: no-repeat center / 20px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23DE3B43' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}
.fb-prose ol { padding-left: 1.4em; list-style: decimal; }
.fb-prose ol li { padding-left: 6px; }
.fb-prose ol li + li { margin-top: 8px; }
.fb-prose ol li::marker { color: var(--fb-red); font-weight: 700; }
.fb-prose img { border-radius: var(--fb-radius-lg); }
.fb-prose .wp-block-image, .fb-prose .wp-block-gallery { margin-block: 40px; }
.fb-prose .wp-block-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.fb-prose .wp-block-gallery figure { margin: 0; }
.fb-prose .wp-block-gallery img { width: 100%; height: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.fb-prose .alignwide { width: min(1200px, 100vw - 32px); max-width: none; margin-inline: calc(50% - min(600px, 50vw - 16px)); }
.fb-prose .wp-block-button__link { background: var(--fb-red); color: #fff; border-radius: 9999px; padding: 17.5px 24px; font-size: 14px; font-weight: 600; text-decoration: none; }
.fb-prose--intro { max-width: 700px; padding-bottom: 48px; text-align: center; }

.fb-article { max-width: 700px; padding-top: clamp(56px, 8.3vw, 120px); }
.fb-article:empty { display: none; }

.fb-single__cover { border-radius: var(--fb-radius-lg); overflow: hidden; aspect-ratio: 3 / 2; max-height: 680px; width: 100%; }
.fb-single__cover img { width: 100%; height: 100%; object-fit: cover; }
.fb-page-plain { max-width: 760px; padding-bottom: var(--fb-section); }

/* Pás veľkých fotiek (galéria služby / akcie) */
.fb-gallery { margin-top: clamp(0px, 2.4vw, 35px); }
.fb-carousel--gallery { --fb-gw: min(498px, 100vw - 64px); margin-top: 0; }
.fb-carousel--gallery .fb-carousel__track {
	padding: 0 calc((100% - var(--fb-gw)) / 2);
	scroll-padding-inline: 0;
}
.fb-carousel--gallery .fb-carousel__slide {
	flex: 0 0 var(--fb-gw); scroll-snap-align: center;
	aspect-ratio: 3 / 2; border-radius: var(--fb-radius-lg); overflow: hidden;
	background: var(--fb-pink-100);
}
.fb-gallery__img { width: 100%; height: 100%; object-fit: cover; }
.fb-gallery__nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 24px; }
.fb-gallery__nav .fb-dots { margin: 0; }
.fb-arrow {
	display: inline-flex; align-items: center; justify-content: center;
	width: 44px; height: 44px; padding: 0; border-radius: 50%;
	border: 1px solid var(--fb-pink-300); background: var(--fb-white); color: var(--fb-black);
	cursor: pointer; transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.fb-arrow:hover { background: var(--fb-red); border-color: var(--fb-red); color: var(--fb-white); }
.fb-flip { transform: rotate(180deg); }

/* Cenník – stránka */
.fb-pricing--notitle .fb-pricing__grid { margin-top: 0; }

/* ==========================================================================
   Kontakt – formulár
   ========================================================================== */
.fb-form-section { margin-top: -20px; padding-bottom: 52px; }
.fb-form-wrap { position: relative; max-width: 997px; }
.fb-deco--form { width: clamp(90px, 13.6vw, 196px); right: -81px; bottom: -140px; transform: rotate(-6deg); }
.fb-form-card {
	display: flex; flex-direction: column; gap: 24px;
	padding: clamp(20px, 3.4vw, 48px);
	background: var(--fb-white);
	border: 1px solid var(--fb-gray-200);
	border-radius: 12px;
	box-shadow: var(--fb-shadow-xl);
}
.fb-fieldset { border: 0; margin: 0; padding: 0; min-width: 0; }
.fb-fieldset > legend { float: left; width: 100%; padding: 0; margin: 0 0 24px; }
.fb-fieldset > legend + * { clear: both; }
.fb-form-title { font-size: 20px; font-weight: 700; line-height: 1; }
.fb-form-sub { display: block; font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.fb-form-intro { font-size: 15px; }
.fb-hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.fb-packages { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
.fb-package { position: relative; display: block; cursor: pointer; }
.fb-package input { position: absolute; opacity: 0; pointer-events: none; }
.fb-package__box {
	position: relative;
	display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
	min-height: 159px; padding: 12px; text-align: center;
	border: 1px solid var(--fb-gray-300); border-radius: 12px; background: var(--fb-white);
	transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.fb-package:hover .fb-package__box { border-color: #b9bec5; }
.fb-package input:checked + .fb-package__box { border-color: var(--fb-red); box-shadow: 0 20px 12px -12px rgba(16, 24, 40, .12), 0 8px 4px -4px rgba(16, 24, 40, .03); }
.fb-package input:focus-visible + .fb-package__box { outline: 3px solid var(--fb-red); outline-offset: 2px; }
.fb-package__check {
	position: absolute; top: 11px; right: 11px;
	display: none; align-items: center; justify-content: center;
	width: 28px; height: 28px; border-radius: 999px; background: var(--fb-red); color: var(--fb-white);
}
.fb-package input:checked + .fb-package__box .fb-package__check { display: inline-flex; }
.fb-package__emoji { display: flex; gap: 12px; margin-bottom: 8px; }
.fb-package__emoji img { width: 32px; height: 32px; object-fit: contain; }
.fb-package__name { font-size: 18px; font-weight: 700; line-height: 1.2; }
.fb-package__meta { font-size: 14px; font-weight: 400; line-height: 1.2; }

.fb-fields { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.fb-field { position: relative; display: block; }
.fb-field input {
	width: 100%; height: 49px;
	padding: 20px 12px 6px;
	border: 1px solid var(--fb-gray-300); border-radius: 4px;
	background: var(--fb-white); color: var(--fb-black);
	font: 400 14px/1.2 var(--fb-font); font-variation-settings: "opsz" 14;
	transition: border-color .2s ease, box-shadow .2s ease;
	-webkit-appearance: none; appearance: none;
}
.fb-field input::-webkit-calendar-picker-indicator { opacity: .5; cursor: pointer; }
.fb-field__label {
	position: absolute; left: 13px; top: 16px;
	font-size: 14px; font-weight: 400; line-height: 1.2; color: var(--fb-black);
	pointer-events: none; transition: top .15s ease, font-size .15s ease, color .15s ease;
}
.fb-field__label em { font-style: normal; color: var(--fb-gray-400); }
.fb-field input:focus + .fb-field__label, .fb-field input:not(:placeholder-shown) + .fb-field__label { top: 6px; font-size: 11px; color: #6c737f; }
.fb-field:has(input:focus) .fb-field__label, .fb-field:has(input:not(:placeholder-shown)) .fb-field__label, .fb-field--float .fb-field__label { top: 6px; font-size: 11px; color: #6c737f; }
.fb-field input:focus, .fb-field-area textarea:focus { outline: none; border-color: var(--fb-black); box-shadow: 0 0 0 3px rgba(46, 28, 53, .08); }
.fb-field.has-error input, .fb-field-area.has-error textarea { border-color: var(--fb-red); }
.fb-field-area { display: block; margin-top: 12px; }
.fb-field-area textarea {
	display: block; width: 100%; min-height: 98px; padding: 12px;
	border: 1px solid var(--fb-gray-300); border-radius: 4px;
	font: 400 14px/1.5 var(--fb-font); color: var(--fb-black); resize: vertical;
}
.fb-field-area textarea::placeholder { color: var(--fb-black); opacity: 1; }

.fb-consent { display: flex; align-items: flex-start; gap: 8px; cursor: pointer; font-size: 14px; font-weight: 500; line-height: 1.6; color: #6c737f; }
.fb-consent input { position: absolute; opacity: 0; pointer-events: none; }
.fb-consent__box {
	flex: none; display: inline-flex; align-items: center; justify-content: center;
	width: 24px; height: 24px; margin-top: 0; border: 1px solid var(--fb-gray-300); border-radius: 4px;
	color: transparent; background: var(--fb-white); transition: background-color .15s ease, border-color .15s ease;
}
.fb-consent input:checked + .fb-consent__box { background: var(--fb-red); border-color: var(--fb-red); color: var(--fb-white); }
.fb-consent input:focus-visible + .fb-consent__box { outline: 3px solid var(--fb-red); outline-offset: 2px; }
.fb-consent.has-error .fb-consent__box { border-color: var(--fb-red); }
.fb-consent a { text-decoration: underline; text-underline-offset: 2px; }

.fb-btn--outline { background: transparent; color: var(--fb-red); border: 1px solid var(--fb-red); padding-block: 16.5px; cursor: pointer; font-family: var(--fb-font); }
.fb-btn--outline:hover { background: var(--fb-red); color: var(--fb-white); }

.fb-form-errors { padding: 16px 20px; border: 1px solid var(--fb-red); border-radius: 12px; background: #fdf0f0; font-size: 14px; }
.fb-form-errors ul { margin: 6px 0 0; padding-left: 18px; }
.fb-form-card--done { align-items: center; text-align: center; padding-block: 64px; }
.fb-done-icon { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 50%; background: var(--fb-red); color: var(--fb-white); }
.fb-form-card--done .fb-body { max-width: 520px; }

@media (max-width: 900px) {
	.fb-packages { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.fb-fields { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.fb-deco--form { right: -8px; bottom: -64px; }
}
@media (max-width: 560px) {
	.fb-fields { grid-template-columns: 1fr; }
	.fb-package__box { min-height: 132px; }
	.fb-package__name { font-size: 16px; }
	.fb-form-card .fb-btn--outline { width: 100%; }
}

/* ==========================================================================
   Vaše akcie – zoznam s filtrom
   ========================================================================== */
.fb-events { margin-top: -33px; padding-bottom: var(--fb-section); }
.fb-chips-filter { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 24px; }
.fb-filter {
	padding: 8px 12px; border: 0; border-radius: 999px;
	background: var(--fb-pink-300); color: var(--fb-black);
	font: 700 16px/1 var(--fb-font); font-variation-settings: "opsz" 14;
	cursor: pointer; transition: background-color .2s ease, color .2s ease;
}
.fb-filter:hover { background: #dccde2; }
.fb-filter.is-active { background: var(--fb-black); color: var(--fb-white); }
.fb-events__grid { margin-top: 64px; }
.fb-events__grid li[hidden] { display: none; }
.fb-events__empty { text-align: center; margin-top: 32px; color: #6c737f; }
@media (max-width: 560px) {
	.fb-chips-filter { gap: 8px; }
	.fb-filter { font-size: 14px; }
	.fb-events__grid { margin-top: 40px; }
}

/* ==========================================================================
   Právne stránky – bočné menu
   ========================================================================== */
.fb-legal {
	display: grid; grid-template-columns: 252px minmax(0, 690px);
	justify-content: center; column-gap: 57px; align-items: start;
	padding: 64px 0 var(--fb-section);
}
.fb-legal__nav { position: sticky; top: 120px; padding: 8px; border-radius: 16px; background: #f3f4f6; }
.fb-legal__nav ul { list-style: none; margin: 0; padding: 0; }
.fb-legal__nav a { display: block; padding: 14px 16px; border-radius: 8px; font-size: 14px; font-weight: 600; line-height: 1.1; transition: background-color .2s ease; }
.fb-legal__nav a:hover { background: var(--fb-white); }
.fb-legal__nav a.is-active { background: var(--fb-red); color: var(--fb-white); }
.fb-legal__title { font-size: clamp(34px, 3.4vw, 48px); font-weight: 500; line-height: 1.15; letter-spacing: -0.01em; margin-top: 16px; }
.fb-legal__lead { margin-top: 16px; }
.fb-legal__content > .fb-legal__title + * { margin-top: 20px; }
@media (max-width: 900px) {
	.fb-legal { grid-template-columns: 1fr; row-gap: 32px; padding-top: 40px; }
	.fb-legal__nav { position: static; }
	.fb-legal__nav ul { display: flex; flex-wrap: wrap; gap: 4px; }
	.fb-legal__title { margin-top: 0; }
}

/* ==========================================================================
   Detail akcie – mriežka fotiek + zväčšenie
   ========================================================================== */
.fb-photo-grid { padding: 0 24px; }
.fb-photo-grid__list {
	display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px;
	margin: 0; padding: 0; list-style: none;
}
.fb-photo-grid__item {
	display: block; aspect-ratio: 4 / 3; overflow: hidden;
	border-radius: var(--fb-radius-lg);
	background: #d9d9d9; cursor: zoom-in;
}
.fb-photo-grid__img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, opacity .2s ease; }
.fb-photo-grid__item:hover .fb-photo-grid__img { transform: scale(1.03); }
.fb-photo-grid__item:focus-visible { outline-offset: 4px; }
@media (max-width: 700px) {
	.fb-photo-grid { padding: 0 16px; }
	.fb-photo-grid__list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
}

.fb-lightbox {
	position: fixed; inset: 0; width: 100%; height: 100%; max-width: none; max-height: none;
	margin: 0; padding: 0; border: 0; background: rgba(20, 12, 24, .94); color: #fff;
}
.fb-lightbox::backdrop { background: transparent; }
.fb-lightbox[open] { display: flex; align-items: center; justify-content: center; }
.fb-lightbox__img { max-width: calc(100vw - 160px); max-height: calc(100vh - 120px); width: auto; height: auto; object-fit: contain; border-radius: 8px; }
.fb-lightbox__btn {
	position: absolute; display: inline-flex; align-items: center; justify-content: center;
	width: 48px; height: 48px; border: 0; border-radius: 50%;
	background: rgba(255, 255, 255, .12); color: #fff; cursor: pointer;
	transition: background-color .2s ease;
}
.fb-lightbox__btn:hover { background: var(--fb-red); }
.fb-lightbox__close { top: 20px; right: 20px; }
.fb-lightbox__prev { left: 20px; top: 50%; transform: translateY(-50%); }
.fb-lightbox__next { right: 20px; top: 50%; transform: translateY(-50%); }
.fb-lightbox__count { position: absolute; bottom: 20px; left: 0; right: 0; text-align: center; font-size: 14px; font-weight: 600; opacity: .8; }
@media (max-width: 700px) {
	.fb-lightbox__img { max-width: calc(100vw - 24px); max-height: calc(100vh - 160px); }
	.fb-lightbox__prev, .fb-lightbox__next { top: auto; bottom: 12px; transform: none; }
	.fb-lightbox__count { bottom: 26px; }
}

/* iPhone priblíži stránku pri kliknutí do poľa s písmom menším ako 16px – na dotykových zariadeniach preto 16px. */
@media (pointer: coarse), (max-width: 1024px) {
	.fb-field input, .fb-field-area textarea, .fb-main select, .fb-main input[type="text"], .fb-main input[type="email"], .fb-main input[type="tel"] { font-size: 16px; }
	.fb-field input { padding-top: 21px; padding-bottom: 5px; }
}

/* ===== Cookie lišta ===== */
.fb-btn--sm { padding: 13px 20px; font-size: 14px; border: 0; cursor: pointer; font-family: var(--fb-font); }
.fb-btn--sm.fb-btn--outline { padding-block: 12px; border: 1px solid var(--fb-red); }
.fb-consent-bar {
	position: fixed; left: 16px; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); z-index: 300;
	width: min(440px, calc(100vw - 32px)); max-height: calc(100vh - 32px); overflow: auto;
	padding: 24px; border-radius: var(--fb-radius-lg);
	background: var(--fb-white); color: var(--fb-black);
	box-shadow: 0 24px 48px -12px rgba(46, 28, 53, .28), 0 0 0 1px rgba(46, 28, 53, .06);
	font-size: 14px; line-height: 1.5;
	animation: fb-consent-in .35s ease both;
}
.fb-consent-bar[hidden] { display: none; }
@keyframes fb-consent-in { from { opacity: 0; transform: translateY(16px); } }
.fb-consent-bar__title { font-size: 18px; font-weight: 700; line-height: 1.2; margin: 0 0 8px; }
.fb-consent-bar__text { margin: 0; color: var(--fb-purple-700); }
.fb-consent-bar__text a { color: var(--fb-red); text-decoration: underline; text-underline-offset: 3px; }
.fb-consent-bar__prefs { display: grid; gap: 12px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--fb-gray-200); }
.fb-consent-bar__prefs[hidden] { display: none; }
.fb-consent-opt { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; font-size: 13px; color: var(--fb-purple-700); }
.fb-consent-opt strong { display: block; color: var(--fb-black); font-size: 14px; }
.fb-consent-opt input { flex: none; width: 18px; height: 18px; margin-top: 2px; accent-color: var(--fb-red); }
.fb-consent-bar__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px; margin-top: 20px; }
.fb-consent-bar__actions [hidden] { display: none; }
.fb-consent-bar__link { border: 0; background: none; padding: 8px 4px; font: 600 14px/1 var(--fb-font); color: var(--fb-black); text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.fb-consent-bar__link:hover { color: var(--fb-red); }
@media (max-width: 560px) {
	.fb-consent-bar { left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom, 0px)); width: auto; padding: 20px; }
	.fb-consent-bar__actions .fb-btn { flex: 1 1 40%; }
}
.fb-footer__legal { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 21px; }
.fb-footer__cookie-btn { border: 0; background: none; padding: 0; font: inherit; color: inherit; cursor: pointer; }
.fb-footer__cookie-btn:hover { color: var(--fb-black); }

/* Tabuľka cookies */
.fb-cookie-table-wrap { overflow-x: auto; border: 1px solid var(--fb-gray-200); border-radius: var(--fb-radius-md); }
.fb-cookie-table { width: 100%; border-collapse: collapse; font-size: 14px; line-height: 1.4; }
.fb-cookie-table th, .fb-cookie-table td { padding: 12px 14px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--fb-gray-200); }
.fb-cookie-table th { background: var(--fb-gray-50); font-weight: 700; white-space: nowrap; }
.fb-cookie-table tr:last-child td { border-bottom: 0; }
.fb-cookie-table code { font-size: 13px; overflow-wrap: anywhere; }
.fb-cookie-table td:nth-child(3) { min-width: 200px; }
.fb-prose > h3 { margin-top: 36px; }
.fb-prose h3 + p { margin-top: 12px; }
