/* Galerija — samo galerija.html */

/* Hero — isti fullscreen stil kao cenovnik-hero */
.galerija-hero {
	position: relative;
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	isolation: isolate;
	margin-top: 0;
}

.galerija-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.galerija-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transform: scale(1.12);
	transform-origin: center center;
	animation: galerijaKenBurns 22s cubic-bezier(0.22, 1, 0.36, 1) infinite alternate;
	filter: brightness(0.88) saturate(1.06);
	will-change: transform;
}

@keyframes galerijaKenBurns {
	0% {
		transform: scale(1.14);
	}
	100% {
		transform: scale(1.04);
	}
}

.galerija-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background:
		linear-gradient(180deg, rgba(8, 8, 8, 0.72) 0%, rgba(8, 8, 8, 0.35) 42%, rgba(8, 8, 8, 0.82) 100%),
		linear-gradient(115deg, rgba(12, 12, 12, 0.88) 0%, rgba(12, 12, 12, 0.45) 48%, rgba(12, 12, 12, 0.78) 100%);
}

.galerija-hero__glow {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	background:
		radial-gradient(ellipse 65% 50% at 50% 38%, rgba(201, 168, 76, 0.18) 0%, transparent 62%),
		radial-gradient(circle at 100% 0%, rgba(201, 168, 76, 0.1) 0%, transparent 38%);
	animation: galerijaGlowPulse 9s ease-in-out infinite;
}

@keyframes galerijaGlowPulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.65;
	}
}

.galerija-hero__grain {
	position: absolute;
	inset: 0;
	z-index: 3;
	pointer-events: none;
	opacity: 0.035;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.galerija-hero > .container {
	position: relative;
	z-index: 5;
	flex: 1;
	width: 100%;
	max-width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	min-height: 100dvh;
	padding: clamp(88px, 10vh, 110px) 15px clamp(72px, 8vh, 96px);
	box-sizing: border-box;
}

.galerija-hero__inner {
	width: 100%;
	max-width: 880px;
	margin: 0 auto;
	text-align: center;
	padding: 0;
	background: none;
	border: none;
	box-shadow: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.galerija-hero .section-title {
	width: 100%;
	text-align: center;
}

.galerija-hero .section-title h3 {
	color: #C9A84C;
	font-size: 13px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.galerija-hero .section-title h1,
.galerija-hero .section-title h2 {
	color: #ffffff;
	font-size: clamp(30px, 4.2vw, 52px);
	line-height: 1.15;
	letter-spacing: -0.4px;
	margin-bottom: 18px;
}

.galerija-hero .section-title p {
	color: rgba(255, 255, 255, 0.88);
	font-size: clamp(16px, 1.2vw, 19px);
	line-height: 1.65;
	max-width: 640px;
	margin: 0 auto 28px;
}

.galerija-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
	align-items: center;
}

.galerija-hero__actions .btn-default {
	min-width: 200px;
}

.galerija-hero__actions .btn-default.btn-border {
	color: #ffffff;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.45);
	box-shadow: none;
}

.galerija-hero__actions .btn-default.btn-border::before {
	filter: brightness(0) invert(1);
}

.galerija-hero__actions .btn-default.btn-border:hover {
	color: #C9A84C;
	background: #ffffff;
	border-color: #C9A84C;
}

.galerija-hero__actions .btn-default.btn-border:hover::before {
	filter: none;
	background-color: #C9A84C;
	background-image: none;
	-webkit-mask-image: url('../images/icon-plus.svg');
	mask-image: url('../images/icon-plus.svg');
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center center;
	mask-position: center center;
	-webkit-mask-size: 16px auto;
	mask-size: 16px auto;
}

.galerija-hero__scroll {
	position: absolute;
	left: 50%;
	bottom: clamp(24px, 4vw, 40px);
	transform: translateX(-50%);
	z-index: 6;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.75);
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	transition: color 0.25s ease, transform 0.25s ease;
}

.galerija-hero__scroll:hover {
	color: #C9A84C;
	transform: translateX(-50%) translateY(3px);
}

.galerija-hero__scroll-line {
	width: 1px;
	height: 42px;
	background: linear-gradient(180deg, rgba(201, 168, 76, 0.9), transparent);
	animation: galerijaScrollLine 2s ease-in-out infinite;
}

@keyframes galerijaScrollLine {
	0%,
	100% {
		transform: scaleY(0.55);
		opacity: 0.5;
	}
	50% {
		transform: scaleY(1);
		opacity: 1;
	}
}

.galerija-page {
	padding: 80px 0 100px;
	background: #f8f7f4;
}

.galerija-page .section-title h2 {
	font-size: clamp(28px, 3.5vw, 42px);
}

.galerija-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	margin-top: 8px;
}

.galerija-grid__item {
	min-width: 0;
	content-visibility: auto;
	contain-intrinsic-size: 220px 293px;
}

.galerija-grid .photo-gallery {
	margin-bottom: 0;
}

.galerija-page .galerija-grid .photo-gallery a {
	display: block;
	overflow: hidden;
	border-radius: 16px;
	cursor: pointer;
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.galerija-page .galerija-grid .photo-gallery a:hover {
	box-shadow: 0 10px 28px rgba(12, 12, 12, 0.14);
	transform: translateY(-3px);
}

.galerija-page .galerija-grid .photo-gallery a::after {
	display: none;
}

.galerija-grid .photo-gallery img {
	width: 100%;
	height: 220px;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 16px;
	transition: transform 0.4s ease, opacity 0.35s ease;
	background: #e8e6e1;
}

.galerija-grid .photo-gallery img.galerija-img--pending {
	opacity: 0;
}

.galerija-grid .photo-gallery img.galerija-img--loaded,
.galerija-grid .photo-gallery img:not(.galerija-img--pending) {
	opacity: 1;
}

.galerija-page .galerija-grid .photo-gallery a:hover img {
	transform: scale(1.05);
}

.galerija-cta {
	background: linear-gradient(135deg, #0C0C0C 0%, #1F1F1F 48%, #C9A84C 100%);
	padding: 70px 0;
	text-align: center;
}

.galerija-cta .section-title h2,
.galerija-cta .section-title p {
	color: #ffffff;
}

.galerija-cta__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
	margin-top: 24px;
}

@media (max-width: 991px) {
	.galerija-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.galerija-grid .photo-gallery img {
		height: 190px;
	}
}

@media (max-width: 767px) {
	.galerija-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.galerija-grid .photo-gallery img {
		height: 165px;
		border-radius: 12px;
	}

	.galerija-grid .photo-gallery a {
		border-radius: 12px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.galerija-hero__media img,
	.galerija-hero__glow,
	.galerija-hero__scroll-line {
		animation: none;
	}

	.galerija-hero__media img {
		transform: scale(1.05);
	}

	.galerija-page .galerija-grid .photo-gallery a,
	.galerija-page .galerija-grid .photo-gallery a:hover,
	.galerija-grid .photo-gallery img,
	.galerija-page .galerija-grid .photo-gallery a:hover img {
		transition: none;
		transform: none;
		box-shadow: none;
	}
}
