/**
 * Module: PDF Downloads
 *
 * Auto-discovered by layout name — no manual enqueue needed.
 * Place at: assets/css/modules/pdf_downloads.css
 *
 * @package Hanalei_Day_Spa
 */

/* ── Grid ───────────────────────────────────────────────── */

.hds-pdf-downloads__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 220px));
	gap: var(--sp-lg, 2rem);
	list-style: none;
	margin: 0 auto;
	padding: 0;
	justify-content: center;
}

/* ── Item ───────────────────────────────────────────────── */

.hds-pdf-downloads__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--sp-sm, 0.75rem);
	text-align: center;
}

/* ── Thumbnail ──────────────────────────────────────────── */

.hds-pdf-downloads__thumb-link {
	display: block;
	width: 100%;
	text-decoration: none;
}

.hds-pdf-downloads__thumb-wrap {
	position: relative;
	border-radius: var(--radius, 6px);
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.hds-pdf-downloads__thumb-link:hover .hds-pdf-downloads__thumb-wrap,
.hds-pdf-downloads__thumb-link:focus-visible .hds-pdf-downloads__thumb-wrap {
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
	transform: translateY(-2px);
}

.hds-pdf-downloads__thumb {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 4; /* portrait — matches a typical menu page */
	object-fit: cover;
}

/* Download icon overlay — appears on hover */
.hds-pdf-downloads__thumb-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.35);
	color: #fff;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.hds-pdf-downloads__thumb-link:hover .hds-pdf-downloads__thumb-overlay,
.hds-pdf-downloads__thumb-link:focus-visible .hds-pdf-downloads__thumb-overlay {
	opacity: 1;
}

/* ── Title ──────────────────────────────────────────────── */

.hds-pdf-downloads__title {
	font-family: var(--font-serif);
	font-size: 1rem;
	color: var(--color-charcoal);
	margin: 0;
	line-height: 1.3;
}

/* ── Button ─────────────────────────────────────────────── */

.hds-pdf-downloads__btn {
	margin-top: auto; /* pushes button to bottom when items have different title lengths */
	font-size: 0.85rem;
}

/* ── Reduced motion ─────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
	.hds-pdf-downloads__thumb-wrap {
		transition: none;
	}
	.hds-pdf-downloads__thumb-overlay {
		transition: none;
	}
}
