/* ==========================================================================
   Reset & Base
   ========================================================================== */

@font-face {
	font-family: 'Bahnschrift';
	src: url("../fonts/BAHNSCHRIFT.TTF") format('truetype');
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Bahnschrift', 'DIN Alternate', sans-serif;
	color: #000;
	background: #fff;
	-webkit-font-smoothing: antialiased;
}

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

a {
	text-decoration: none;
	color: inherit;
}

/* ==========================================================================
   Navbar
   ========================================================================== */

.navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px;
	background: #fff;
	z-index: 100;
}

.navbar__inner {
	display: flex;
	align-items: center;
	height: 100%;
	padding: 0 37px;
}

.navbar__logo img {
	height: 74px;
	width: auto;
}

.navbar__nav {
	display: flex;
	align-items: center;
	margin-left: auto;
	gap: 40px;
}

.navbar__link {
	font-size: 24px;
	font-weight: 600;
	color: #000;
	transition: opacity 0.2s;
}

.navbar__link:hover {
	opacity: 0.7;
}

.navbar__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 56px;
	padding: 0 36px;
	background: #5b735d;
	color: #fff;
	font-size: 24px;
	font-weight: 600;
	transition: background 0.2s;
}

.navbar__btn:hover {
	background: #4e6550;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	height: calc(100vh);
	min-height: 500px;
	overflow: hidden;
	position: relative;
}


.home .hero:not(.hero--services-strip) {
	height: calc(100vh - 32px);
}

.hero-logo {
	position: absolute;
	z-index: 5;
	max-width: 190px;
	top: 15px;
	left: 50%;
	transform: translateX(-50%);
}

.hero__col {
	overflow: hidden;
	position: relative;
	cursor: pointer;
}

.hero__col::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 2;
	background: #22222294;
	transition: all 0.4s ease-in;
}

.hero-col__content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: #fff;
}

.hero-col__content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: #fff;
	width: 100%;
	z-index: 3;
}

.hero-col__content h2 {
	font-size: 36px;
	margin-top: 20px;
	position: relative;
}

.hero-col__content h2::before {
	content: "";
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	z-index: 4;
	background: #5B735D;
}

.hero__col img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .4s ease-in;
}

.hero__col:hover img {
	transform: scale(1.06);
}

.hero__col:hover::before {
	background: #222222ab;
}

.hero-socials {
	position: absolute;
	z-index: 3;
	width: 90px;
	gap: 10px;
	display: flex;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
}

.hero-socials a {
	width: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-socials a img {
	transition: all 0.3 ease-in;
}

.hero-socials a:hover img {
	opacity: 0.9;
	transform: scale(1.05);
}

.hero--services-strip {
	height: 200px;
	min-height: 200px;
}

.hero--services-strip .hero__col::before {
	background: rgba(26, 26, 26, 0.42);
}

.hero--services-strip .hero-col__content h2 {
	font-size: 30px;
	margin-top: 16px;
}

.ig-ico {
	max-width: 34px;
}

/* ==========================================================================
   Voucher Banner
   ========================================================================== */

.voucher-banner {
	position: relative;
	background: #96d69c;
	padding: 60px 0;
	overflow: hidden;
}

.voucher-banner__decoration {
	position: absolute;
	left: 0;
	top: 270px;
	transform: translateY(-50%) rotate(-26deg);
	/* opacity: 0.15; */
	pointer-events: none;
}

.voucher-banner__decoration img {
	width: 750px;
	height: auto;
}

.voucher-banner__content {
	position: relative;
	max-width: fit-content;
	margin: 0 auto;
	padding: 0 40px 0 40px;
	display: flex;
	align-items: center;
	gap: 40px;
}

.voucher-banner__text {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.voucher-banner__title {
	font-size: 50px;
	font-weight: 700;
	color: #000;
	line-height: 1.1;
}

.voucher-banner__text {
	font-size: 18px;
	font-weight: 400;
	color: #000;
}

.voucher-banner__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 260px;
	height: 55px;
	background: #5e8962;
	border-radius: 18px 18px 18px 0;
	color: #fff;
	font-size: 28px;
	font-weight: 700;
	transition: background 0.2s;
}

.voucher-banner__btn:hover {
	background: #4e7852;
}

/* ==========================================================================
   Encyclopedia
   ========================================================================== */

.encyclopedia {
	background: #fff;
	padding: 80px 40px 120px;
}

.encyclopedia__header {
	text-align: center;
	margin-bottom: 80px;
}

.encyclopedia__subtitle {
	font-size: 24px;
	font-weight: 300;
	color: rgba(112, 112, 112, 0.85);
	margin-bottom: 20px;
}

.encyclopedia__line {
	display: block;
	width: 98px;
	height: 6px;
	background: #5b735d;
	margin: 0 auto 16px;
}

.encyclopedia__title {
	font-size: 72px;
	font-weight: 700;
	color: #000;
}

.encyclopedia__title--tag {
	font-size: 50px;
}

.encyclopedia__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 72px;
	max-width: 1300px;
	margin: 0 auto;
}

.archive__description {
	max-width: 820px;
	margin: 72px auto 0;
	font-size: 13px;
	line-height: 1.6;
	color: rgba(112, 112, 112, 0.9);
	text-align: center;
}

.archive__description p {
	margin-bottom: 8px;
}

.archive-tags {
	max-width: 1100px;
	margin: 56px auto 0;
	padding-top: 32px;
	border-top: 1px solid #eee;
}

.archive-tags__header {
	text-align: center;
	margin-bottom: 24px;
}

.archive-tags__title {
	font-size: 34px;
	font-weight: 700;
	color: #000;
	margin-bottom: 8px;
}

.archive-tags__text {
	font-size: 17px;
	color: rgba(112, 112, 112, 0.9);
}

.archive-tags__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

.archive-tags__link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 18px;
	background: #f4f4f4;
	border-radius: 18px 18px 18px 0;
	font-size: 16px;
	font-weight: 600;
	color: #222;
	transition: background 0.2s ease, transform 0.2s ease;
}

.archive-tags__link:hover {
	background: #e8eee9;
	transform: translateY(-1px);
}

.archive-tags__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 28px;
	padding: 3px 8px;
	border-radius: 999px;
	background: #fff;
	color: #5b735d;
	font-size: 13px;
	line-height: 1;
}

/* ==========================================================================
   Card
   ========================================================================== */

.card__image {
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 28px 28px 28px 0;
	overflow: hidden;
	box-shadow: 0 4px 20px 4px rgba(0, 0, 0, 0.1);
	margin-bottom: 20px;
}

.card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.card__title {
	font-size: 24px;
	font-weight: 700;
	color: #000;
	margin-bottom: 16px;
	line-height: 1.3;
}

.card__subtitle {
	font-size: 15px;
	font-weight: 400;
	color: rgba(112, 112, 112, 0.85);
	font-style: italic;
	margin-top: -10px;
	margin-bottom: 16px;
}

.card__subtitle span,
.page-hero__subtitle span,
.single-flower__subtitle span {
	border-bottom: 1px dotted rgba(150, 150, 150, 0.6);
	cursor: help;
}

.card__body {
	font-size: 16px;
	color: #000;
	line-height: 1.5;
}

.card__body p {
	margin-bottom: 8px;
}

.card__body strong {
	font-weight: 700;
}

.card__link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.card__link:hover .card__image img {
	transform: scale(1.05);
}

.card__image img {
	transition: transform 0.3s ease;
}

/* ==========================================================================
   Encyclopedia More Link
   ========================================================================== */

.encyclopedia__more {
	text-align: center;
	margin-top: 60px;
}

.encyclopedia__more-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 55px;
	padding: 0 40px;
	background: #5e8962;
	border-radius: 18px 18px 18px 0;
	color: #fff;
	font-size: 22px;
	font-weight: 700;
	transition: background 0.2s;
}

.encyclopedia__more-link:hover {
	background: #4e7852;
}

/* ==========================================================================
   Encyclopedia Pagination
   ========================================================================== */

.encyclopedia__pagination {
	text-align: center;
	margin-top: 60px;
	font-size: 18px;
}

.encyclopedia__pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin: 0 4px;
	background: #f0f0f0;




	color: #000;
	font-weight: 600;
	transition: background 0.2s;
}

.encyclopedia__pagination .page-numbers.current {
	background: #5e8962;
	color: #fff;
}

.encyclopedia__pagination .page-numbers:hover {
	background: #5b735d;
	color: #fff;
}

/* ==========================================================================
   Single Flower
   ========================================================================== */

.single-flower__header {
	padding: 80px 40px 40px;
	text-align: center;
}

.single-flower__title {
	font-size: 48px;
	font-weight: 700;
	color: #000;
}

.single-flower__content {
	max-width: 800px;
	margin: 0 auto;
	padding: 60px 40px 40px;
}

.single-flower__body {
	font-size: 18px;
	line-height: 1.8;
	color: #333;
}

.single-flower__body h2 {
	font-size: 28px;
	font-weight: 700;
	color: #000;
	margin: 40px 0 16px;
}

.single-flower__body h3 {
	font-size: 22px;
	font-weight: 700;
	color: #000;
	margin: 32px 0 12px;
}

.single-flower__body p {
	margin-bottom: 16px;
}

.single-flower__body ul {
	margin: 0 0 16px 24px;
	list-style: disc;
}

.single-flower__body li {
	margin-bottom: 6px;
}

.single-flower__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid #eee;
}

.single-flower__tag {
	display: inline-block;
	padding: 6px 16px;
	background: #f0f0f0;
	border-radius: 16px 16px 16px 0;
	font-size: 14px;
	font-weight: 600;
	color: #555;
}

.single-flower__related {
	max-width: 1300px;
	margin: 56px auto 0;
	border-top: 1px solid #eee;
	padding-top: 32px;
}

.single-flower__related-title {
	font-size: 40px;
	font-weight: 700;
	color: #000;
	text-align: center;
	margin-bottom: 24px;
}

.single-flower__related-cards {
	gap: 30px;
}

.single-flower__back {
	text-align: center;
	padding: 20px 40px 80px;
}

.single-flower__back-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 18px;
	font-weight: 600;
	color: #5b735d;
	transition: opacity 0.2s;
}

.single-flower__back-link:hover {
	opacity: 0.7;
}

.page-hero__subtitle {
	color: rgba(255, 255, 255, 0.8);
	font-size: 22px;
	font-weight: 300;
	font-style: italic;
	text-align: center;
	margin-top: 12px;
}

.single-flower__subtitle {
	font-size: 20px;
	font-weight: 300;
	font-style: italic;
	color: rgba(112, 112, 112, 0.85);
	text-align: center;
	margin-top: 8px;
}

/* ==========================================================================
   Topbar (subpages)
   ========================================================================== */

.topbar {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	height: 64px;
	background: #fff;
	z-index: 100;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.topbar__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 0 24px;
	position: relative;
}

.topbar__back {
	position: absolute;
	left: 24px;
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 16px;
	font-weight: 600;
	color: #5b735d;
	transition: opacity 0.2s;
}

.topbar__back:hover {
	opacity: 0.7;
}

.topbar__logo img {
	height: 44px;
	width: auto;
}

/* ==========================================================================
   Page Hero
   ========================================================================== */

.page-hero {
	position: relative;
	width: 100%;
	height: 80vh;
	min-height: 320px;
	max-height: 700px;
	overflow: hidden;
}

.page-hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.page-hero--interactive {
	cursor: zoom-in;
}


.page-hero--interactive.page-hero--ready .page-hero__img {
	position: absolute;
	top: 0;
	left: 0;
	max-width: none;
	object-fit: fill;
	transform: translate3d(0, 0, 0) scale(1);
	transform-origin: center center;
	will-change: transform;
	backface-visibility: hidden;
}

.page-hero--interactive .page-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
	.page-hero--interactive {
		cursor: default;
	}

	.page-hero--interactive.page-hero--ready .page-hero__img {
		transform: none;
	}
}

@media (hover: none),
(pointer: coarse) {
	.page-hero--interactive {
		cursor: default;
	}

	.page-hero--interactive.page-hero--ready .page-hero__img {
		transform: none;
	}
}

.page-hero__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.page-hero__title {
	color: #fff;
	font-size: 56px;
	font-weight: 700;
	text-align: center;
	position: relative;
	padding-top: 20px;
}

.page-hero__title::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: #5b735d;
}

/* ==========================================================================
   Page Intro
   ========================================================================== */

.page-intro {
	padding: 80px 40px;
	max-width: 900px;
	margin: 0 auto;
}

.page-intro__header {
	text-align: center;
	margin-bottom: 40px;
}

.page-intro__subtitle {
	font-size: 20px;
	font-weight: 300;
	color: rgba(112, 112, 112, 0.85);
	margin-bottom: 16px;
}

.page-intro__line {
	display: block;
	width: 80px;
	height: 5px;
	background: #5b735d;
	margin: 0 auto 12px;
}

.page-intro__title {
	font-size: 48px;
	font-weight: 700;
	color: #000;
}

.page-intro__body {
	font-size: 18px;
	line-height: 1.7;
	color: #333;
}

.page-intro__body p {
	margin-bottom: 16px;
}

/* ==========================================================================
   Page Services (Firemni zakazky)
   ========================================================================== */

.page-services {
	background: #f7f7f7;
	padding: 80px 40px;
}

.page-services__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	max-width: 1100px;
	margin: 0 auto;
}

.page-services__card {
	background: #fff;
	padding: 40px 32px;
	text-align: center;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.page-services__icon {
	margin-bottom: 20px;
}

.page-services__card-title {
	font-size: 24px;
	font-weight: 700;
	color: #000;
	margin-bottom: 12px;
}

.page-services__card p {
	font-size: 16px;
	line-height: 1.6;
	color: #555;
}

/* ==========================================================================
   Page Info (Prodejna)
   ========================================================================== */

.page-info {
	background: #f7f7f7;
	padding: 80px 40px;
}

.page-info__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	max-width: 1100px;
	margin: 0 auto;
}

.page-info__card {
	background: #fff;
	padding: 40px 32px;
	text-align: center;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.page-info__icon {
	margin-bottom: 16px;
}

.page-info__card-title {
	font-size: 22px;
	font-weight: 700;
	color: #000;
	margin-bottom: 12px;
}

.page-info__card p {
	font-size: 16px;
	line-height: 1.6;
	color: #555;
}

.page-info__card a {
	color: #5b735d;
	font-weight: 600;
}

.page-info__card a:hover {
	text-decoration: underline;
}

/* ==========================================================================
   Page Gallery
   ========================================================================== */

.page-gallery {
	padding: 80px 40px;
}

.page-gallery__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	max-width: 1100px;
	margin: 0 auto;
}

.page-gallery__item {
	overflow: hidden;
	aspect-ratio: 4 / 3;
}

.page-gallery__item--wide {
	grid-column: span 2;
}

.page-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.page-gallery__item:hover img {
	transform: scale(1.03);
}

/* ==========================================================================
   Page CTA
   ========================================================================== */

.page-cta {
	background: #96d69c;
	padding: 60px 40px;
}

.page-cta__inner {
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}

.page-cta__title {
	font-size: 40px;
	font-weight: 700;
	color: #000;
	margin-bottom: 12px;
}

.page-cta__text {
	font-size: 18px;
	color: #1a1a1a;
	margin-bottom: 32px;
}

.page-cta__buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

.page-cta__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 52px;
	padding: 0 32px;
	background: #5e8962;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	transition: background 0.2s;
}

.page-cta__btn:hover {
	background: #4e7852;
}

.page-cta__btn--outline {
	background: transparent;
	border: 2px solid #000;
	color: #000;
}

.page-cta__btn--outline:hover {
	background: rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   Site Footer
   ========================================================================== */

.site-footer {
	background: #1a1a1a;
	color: #ccc;
	padding: 60px 40px 0;
}

.site-footer__inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	max-width: 1100px;
	margin: 0 auto;
	padding-bottom: 40px;
	border-bottom: 1px solid #333;
}

.site-footer__logo {
	height: 50px;
	width: auto;
}

.site-footer__tagline {
	margin-top: 10px;
	font-size: 14px;
	color: #888;
}

.site-footer__contact {
	font-size: 15px;
	line-height: 1.8;
}

.site-footer__contact a {
	/* color: #96d69c; */
	transition: opacity 0.2s;
}

.site-footer__contact a:hover {
	opacity: 0.8;
}

.site-footer__social {
	display: flex;
	gap: 12px;
}

.site-footer__social a img {
	width: 32px;
	height: 32px;
	object-fit: contain;
	opacity: 0.7;
	transition: opacity 0.2s;
}

.site-footer__social a:hover img {
	opacity: 1;
}

.footer-ig-ico {
	max-width: 28px;
}

.site-footer__copy {
	max-width: 1100px;
	margin: 0 auto;
	padding: 20px 0;
	font-size: 13px;
	color: #666;
	text-align: center;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
	.encyclopedia__cards {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
	}

	.encyclopedia__title {
		font-size: 48px;
	}

	.voucher-banner__content {
		padding-left: 40px;
	}

	.voucher-banner__decoration {
		display: none;
	}

	.page-services__grid,
	.page-info__grid {
		grid-template-columns: 1fr 1fr;
	}

	.page-services__grid> :last-child,
	.page-info__grid> :last-child {
		grid-column: 1 / -1;
		max-width: 50%;
		justify-self: center;
	}
}

@media (max-width: 768px) {
	.hero-col__content h2 {
		font-size: 30px;
	}

	.voucher-banner__content {
		flex-direction: column;
		gap: 30px;
	}

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

	.navbar {
		height: 70px;
	}

	.navbar__inner {
		padding: 0 16px;
	}

	.navbar__logo img {
		height: 50px;
	}

	.navbar__link {
		font-size: 16px;
	}

	.navbar__btn {
		font-size: 16px;
		height: 44px;
		padding: 0 20px;
	}

	.hero {
		grid-template-columns: 1fr;
		height: auto;
		min-height: 0;
	}

	.hero__col {
		height: 300px;
	}

	.hero--services-strip {
		height: auto;
		min-height: 0;
	}

	.hero--services-strip .hero__col {
		height: 200px;
	}

	.voucher-banner__title {
		font-size: 32px;
	}

	.voucher-banner__btn {
		font-size: 20px;
		width: 220px;
		height: 48px;
	}

	.encyclopedia {
		padding: 60px 20px 80px;
	}

	.encyclopedia__title {
		font-size: 36px;
	}

	.encyclopedia__title--tag {
		font-size: 25px;
	}

	.encyclopedia__subtitle {
		font-size: 18px;
	}

	.encyclopedia__cards {
		grid-template-columns: 1fr;
		gap: 40px;
		max-width: 400px;
	}

	.archive__description {
		margin-top: 48px;
		font-size: 12px;
	}

	.archive-tags {
		margin-top: 40px;
		padding-top: 24px;
	}

	.archive-tags__title {
		font-size: 26px;
	}

	.archive-tags__text {
		font-size: 15px;
	}

	.archive-tags__link {
		font-size: 15px;
		padding: 10px 16px;
	}

	.page-hero {
		height: 40vh;
		min-height: 240px;
	}

	.page-hero__title {
		font-size: 36px;
	}

	.single-flower__header {
		padding: 60px 20px 20px;
	}

	.single-flower__title {
		font-size: 32px;
	}

	.single-flower__content {
		padding: 40px 20px 20px;
	}

	.single-flower__body h2 {
		font-size: 24px;
	}

	.single-flower__related {
		margin-top: 40px;
	}

	.single-flower__related-title {
		font-size: 28px;
		margin-bottom: 20px;
	}

	.single-flower__related-cards {
		gap: 24px;
	}

	.single-flower__back {
		padding: 20px 20px 60px;
	}

	.encyclopedia__more-link {
		font-size: 18px;
		height: 48px;
		padding: 0 28px;
	}

	.page-intro {
		padding: 50px 20px;
	}

	.page-intro__title {
		font-size: 32px;
	}

	.page-services,
	.page-info {
		padding: 50px 20px;
	}

	.page-services__grid,
	.page-info__grid {
		grid-template-columns: 1fr;
	}

	.page-services__grid> :last-child,
	.page-info__grid> :last-child {
		max-width: 100%;
		justify-self: unset;
	}

	.page-gallery {
		padding: 50px 20px;
	}

	.page-gallery__grid {
		grid-template-columns: 1fr 1fr;
	}

	.page-gallery__item--wide {
		grid-column: span 2;
	}

	.page-cta {
		padding: 50px 20px;
	}

	.page-cta__btn {
		max-width: 200px;
		width: 100%;
	}

	.page-cta__title {
		font-size: 28px;
	}

	.page-cta__buttons {
		flex-direction: column;
		align-items: center;
	}

	.site-footer__inner {
		flex-direction: column;
		gap: 30px;
		text-align: center;
		align-items: center;
	}

	.site-footer__social {
		justify-content: center;
	}

	.site-footer__logo {
		margin-inline: auto;
	}
}

/* ==========================================================================
   Lightbox
   ========================================================================== */

.lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	z-index: 9999;
}

.lightbox.active {
	opacity: 1;
	visibility: visible;
}

.lightbox__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.95);
	cursor: pointer;
}

.lightbox__container {
	position: relative;
	max-width: 90vw;
	max-height: 90vh;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lightbox__img {
	max-width: 100%;
	max-height: 85vh;
	object-fit: contain;
	border-radius: 4px;
	animation: lightbox-fade-in 0.3s ease;
}

@keyframes lightbox-fade-in {
	from {
		opacity: 0;
		transform: scale(0.9);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

.lightbox__close {
	position: absolute;
	top: 20px;
	right: 20px;
	background: rgba(255, 255, 255, 0.2);
	border: none;
	color: #fff;
	font-size: 40px;
	cursor: pointer;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	transition: background 0.3s ease;
	z-index: 10001;
}

.lightbox__close:hover {
	background: rgba(255, 255, 255, 0.3);
}

.lightbox__prev,
.lightbox__next {
	background: rgba(255, 255, 255, 0.2);
	border: none;
	color: #fff;
	cursor: pointer;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	transition: background 0.3s ease;
	flex-shrink: 0;
	z-index: 10001;
}

.lightbox__prev:hover,
.lightbox__next:hover {
	background: rgba(255, 255, 255, 0.3);
}

.lightbox__prev svg,
.lightbox__next svg {
	width: 24px;
	height: 24px;
}

/* Gallery items should have cursor pointer */
.page-gallery__item a {
	cursor: pointer;
	transition: transform 0.3s ease;
}

.page-gallery__item a:hover {
	transform: scale(1.02);
}

@media (max-width: 768px) {
	.lightbox {
		gap: 10px;
	}

	.lightbox__close {
		top: 10px;
		right: 10px;
		width: 40px;
		height: 40px;
		font-size: 30px;
	}

	.lightbox__prev,
	.lightbox__next {
		width: 40px;
		height: 40px;
	}

	.lightbox__prev svg,
	.lightbox__next svg {
		width: 20px;
		height: 20px;
	}
}