/**
 * Fotogallery Archive Styles
 *
 * Grid 3x3, cards 5:4 aspect ratio with cover background,
 * dark gradient overlay, title + date at bottom.
 */

/* ─── Force full-width (no sidebar) on fotogallery pages ─── */
.post-type-archive-fotogallery .sidebar,
.post-type-archive-fotogallery .widget_area,
.single-fotogallery .sidebar,
.single-fotogallery .widget_area,
.tax-fotogallery_tag .sidebar,
.tax-fotogallery_tag .widget_area {
	display: none !important;
}

body.post-type-archive-fotogallery .content,
body.single-fotogallery .content,
body.tax-fotogallery_tag .content {
	width: 100% !important;
	float: none !important;
	max-width: 100% !important;
	margin-right: 0 !important;
	margin-left: 0 !important;
	padding-right: 0 !important;
	padding-left: 0 !important;
}

body.post-type-archive-fotogallery .content_wrap,
body.single-fotogallery .content_wrap,
body.tax-fotogallery_tag .content_wrap {
	max-width: 1500px !important;
	width: 100% !important;
	margin: 0 auto !important;
	padding-left: 24px !important;
	padding-right: 24px !important;
	box-sizing: border-box !important;
}

/* Reset any flex/grid from parent theme that constrains width */
body.post-type-archive-fotogallery .page_content_wrap,
body.single-fotogallery .page_content_wrap,
body.tax-fotogallery_tag .page_content_wrap {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

/* Mega title must be full-viewport width */
body.post-type-archive-fotogallery .olimpia-mega-title,
body.single-fotogallery .olimpia-mega-title,
body.tax-fotogallery_tag .olimpia-mega-title {
	width: 100vw !important;
	max-width: 100vw !important;
	margin-left: calc(-50vw + 50%) !important;
	margin-right: calc(-50vw + 50%) !important;
	box-sizing: border-box !important;
}

.olimpia-fotogallery-archive {
	padding: 2rem 0 4rem;
}

/* ─── Search ─── */
.olimpia-fotogallery-archive__search-wrap {
	display: flex;
	justify-content: center;
	margin-bottom: 2rem;
}

.olimpia-fotogallery-archive__search-form {
	position: relative;
	width: 100%;
	max-width: 420px;
}

.olimpia-fotogallery-archive__search-icon {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: #999;
	pointer-events: none;
	z-index: 2;
}

.olimpia-fotogallery-archive__search-input {
	width: 100% !important;
	padding: 12px 16px 12px 44px !important;
	border: 1px solid #ddd !important;
	border-radius: 8px !important;
	font-size: 15px !important;
	background: #fff !important;
	transition: border-color 0.2s;
	outline: none !important;
	box-shadow: none !important;
	-webkit-appearance: none;
	box-sizing: border-box !important;
	height: auto !important;
	line-height: normal !important;
}

.olimpia-fotogallery-archive__search-input:focus {
	border-color: #333 !important;
}

.olimpia-fotogallery-archive__search-results {
	text-align: center;
	font-size: 0.9rem;
	color: #666;
	margin-bottom: 1.5rem;
}

.olimpia-fotogallery-archive__search-clear {
	margin-left: 8px;
	color: #d63638;
	text-decoration: none;
	font-weight: 600;
}

/* ─── Grid ─── */
.olimpia-fotogallery-archive__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

/* ─── Card ─── */
.olimpia-fotogallery-archive__card {
	position: relative;
	display: block;
	aspect-ratio: 5 / 4;
	border-radius: 10px;
	overflow: hidden;
	text-decoration: none;
	color: #fff;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.olimpia-fotogallery-archive__card:hover {
	transform: scale(1.02);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Background image layer */
.olimpia-fotogallery-archive__card-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-color: #1a1a1a;
	transition: transform 0.3s ease;
}

.olimpia-fotogallery-archive__card:hover .olimpia-fotogallery-archive__card-bg {
	transform: scale(1.05);
}

/* Content overlay at bottom */
.olimpia-fotogallery-archive__card-content {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 16px 18px;
	background: linear-gradient(
		to bottom,
		transparent 30%,
		rgba(0, 0, 0, 0.75) 100%
	);
	z-index: 1;
}

.olimpia-fotogallery-archive__card-title {
	margin: 0 0 4px;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.25;
	text-transform: uppercase;
	color: #fff;
	display: -webkit-box;
	line-clamp: 3;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.olimpia-fotogallery-archive__card-date {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.7);
	font-weight: 400;
}

/* ─── Pagination ─── */
.olimpia-fotogallery-archive__pagination {
	margin-top: 2.5rem;
	display: flex;
	justify-content: center;
}

.olimpia-fotogallery-archive__pagination .page-numbers {
	display: flex;
	list-style: none;
	gap: 6px;
	padding: 0;
	margin: 0;
	align-items: center;
}

.olimpia-fotogallery-archive__pagination .page-numbers li a,
.olimpia-fotogallery-archive__pagination .page-numbers li span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 32px;
	height: 36px;
	padding: 0 2px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 14px;
	text-decoration: none;
	color: #333;
	background: #fff;
	transition: all 0.15s;
}

.olimpia-fotogallery-archive__pagination .page-numbers li a:hover {
	background: #333;
	color: #fff;
	border-color: #333;
}

.olimpia-fotogallery-archive__pagination .page-numbers li .current {
	background: #1a1a1a;
	color: #fff;
	border-color: #1a1a1a;
	font-weight: 600;
}

.olimpia-fotogallery-archive__pagination .page-numbers li .dots {
	border: none;
	background: none;
	color: #999;
}

.olimpia-fotogallery-archive__empty {
	text-align: center;
	color: #666;
	padding: 3rem;
	font-size: 1.1rem;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
	.olimpia-fotogallery-archive__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
}

@media (max-width: 600px) {
	.olimpia-fotogallery-archive__grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.olimpia-fotogallery-archive__card-title {
		font-size: 0.85rem;
	}

	.olimpia-fotogallery-archive__search-wrap {
		margin-bottom: 1.5rem;
	}
}


/* ─── Pagination Mobile: show only prev/current/next ─── */
@media (max-width: 575px) {
	.olimpia-fotogallery-archive__pagination .page-numbers li {
		display: none;
	}

	/* Show prev arrow */
	.olimpia-fotogallery-archive__pagination .page-numbers li:first-child:has(.prev),
	.olimpia-fotogallery-archive__pagination .page-numbers li .prev {
		display: inline-flex;
	}
	.olimpia-fotogallery-archive__pagination .page-numbers li:has(.prev) {
		display: inline-block;
	}

	/* Show next arrow */
	.olimpia-fotogallery-archive__pagination .page-numbers li:last-child:has(.next),
	.olimpia-fotogallery-archive__pagination .page-numbers li .next {
		display: inline-flex;
	}
	.olimpia-fotogallery-archive__pagination .page-numbers li:has(.next) {
		display: inline-block;
	}

	/* Show current page */
	.olimpia-fotogallery-archive__pagination .page-numbers li:has(.current) {
		display: inline-block;
	}
	.olimpia-fotogallery-archive__pagination .page-numbers li .current {
		display: inline-flex;
	}
}
