/* ============================================================================
   Boots On! Pressekit — card-based Press Kit.

   Information page that doubles as a clean download collection. Stilistisch
   konsistent mit der Startseite und der Shop-Page: Ziegelwand-Hintergrund,
   Neonderthaw-Neon-Headline (6-Layer-Glow), Roboto / Roboto Slab Typo.
   Dunkle, leicht transparente Karten auf der Ziegelwand; rote Neon-Pills.
   ============================================================================ */

/* Neonderthaw lokal laden (gleiche Datei wie Startseite & Shop) — ohne diese
 * Regel fiele die Press-Headline auf einen Fallback-Font zurück. */
@font-face {
	font-family: 'Neonderthaw';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('/wp-content/themes/bootson-block/assets/fonts/neonderthaw-v8-latin.woff2') format('woff2');
}

/* ============================================================================
 * Ziegelwand-Hintergrund wie auf der Startseite (.bootson-elem-kit-7) und im
 * Shop. Identische Bilder + Tiling — nur der Selektor ist press-spezifisch.
 * ========================================================================== */
body.bootson-press-body {
	background-color: #000000;
	background-image: url("/wp-content/uploads/2023/11/AdobeStock_134115811-small-black-1536x1024.jpg");
	background-repeat: repeat-y;
	background-size: contain;
}
@media (max-width: 767px) {
	body.bootson-press-body {
		background-image: url("/wp-content/uploads/2023/11/AdobeStock_134115811-small-black-768x512.jpg");
		background-repeat: repeat;
	}
}

/* ============================================================================
   LAYOUT-GERÜST
   ============================================================================ */
.bootson-press {
	--press-card:        rgba(15, 12, 11, 0.55);
	--press-card-border: rgba(255, 255, 255, 0.08);
	--press-panel:       #0a0908;
	--press-accent:      #c8102e;
	--press-accent-hot:  #ff3838;
	--press-ink:         #f0e6cf;
	--press-ink-muted:   rgba(219, 219, 219, 0.78);
	--press-paper:       #f1e7ce;

	color: var(--press-ink);
	font-family: "Roboto", "DM Sans", sans-serif;
	font-size: 16px;
	line-height: 1.65;
	background: transparent;
	min-height: 100vh;
	overflow-x: hidden;
	position: relative;
}
.bootson-press__inner {
	max-width: 1180px;
	margin: 0 auto;
	padding: 56px 24px 96px;
}

/* ============================================================================
   HERO
   ============================================================================ */
.press-hero {
	text-align: center;
	margin-bottom: clamp(40px, 6vw, 72px);
}
/* Headline EXAKT wie die Section-Überschriften der Startseite (News/Band/Merch)
 * und der Shop-Page: Neonderthaw 300, 67px, identischer 6-Layer-Neon-Glow. */
.bootson-press__neon {
	margin: 0;
	font-family: "Neonderthaw", sans-serif;
	font-weight: 300;
	font-size: 67px;
	line-height: 67px;
	color: rgb(246, 122, 122);
	text-shadow:
		rgb(255, 56, 56) 0 0 4px,
		rgb(255, 13, 35) 0 0 10px,
		rgba(255, 13, 35, 0.9) 0 0 22px,
		rgba(255, 13, 35, 0.75) 0 0 42px,
		rgba(255, 13, 35, 0.55) 0 0 70px,
		rgba(255, 13, 35, 0.35) 0 0 110px;
}
@media (max-width: 767px) {
	.bootson-press__neon {
		font-size: 35.2px;
		line-height: 40.48px;
	}
}
.press-hero__intro {
	margin: 18px auto 0;
	max-width: 60ch;
	font-family: "Roboto Slab", Georgia, serif;
	font-size: 1.08rem;
	line-height: 1.6;
	color: var(--press-ink-muted);
}

/* ============================================================================
   SECTIONS + SECTION-TITLES
   ============================================================================ */
.press-section {
	margin-top: clamp(56px, 7vw, 88px);
}
.press-section__title {
	margin: 0 0 clamp(24px, 3vw, 40px);
	text-align: center;
	font-family: "Neonderthaw", sans-serif;
	font-weight: 300;
	font-size: 46px;
	line-height: 1.1;
	color: rgb(246, 122, 122);
	text-shadow:
		rgb(255, 56, 56) 0 0 4px,
		rgb(255, 13, 35) 0 0 10px,
		rgba(255, 13, 35, 0.9) 0 0 22px,
		rgba(255, 13, 35, 0.75) 0 0 42px,
		rgba(255, 13, 35, 0.55) 0 0 70px,
		rgba(255, 13, 35, 0.35) 0 0 110px;
}
@media (max-width: 767px) {
	.press-section__title { font-size: 30px; }
}
.press-section__lead {
	margin: -18px auto clamp(24px, 3vw, 36px);
	max-width: 58ch;
	text-align: center;
	font-family: "Roboto Slab", Georgia, serif;
	font-size: 0.98rem;
	color: var(--press-ink-muted);
}

/* ============================================================================
   KARTEN-BASIS (dunkle, leicht transparente Tiles auf der Ziegelwand)
   ============================================================================ */
.press-card {
	background: var(--press-card);
	border: 1px solid var(--press-card-border);
	border-radius: 14px;
	box-shadow:
		0 14px 34px rgba(0, 0, 0, 0.45),
		inset 0 1px 0 rgba(255, 255, 255, 0.05);
	transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.3, 1),
		box-shadow 0.28s ease,
		border-color 0.28s ease;
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
}
.press-card:hover {
	transform: translateY(-4px);
	border-color: rgba(255, 56, 56, 0.4);
	box-shadow:
		0 22px 46px rgba(0, 0, 0, 0.55),
		0 0 30px rgba(255, 56, 56, 0.28),
		inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

/* ============================================================================
   GRIDS (responsive, auto-fit; einspaltig auf Phones)
   ============================================================================ */
.press-grid {
	display: grid;
	gap: clamp(20px, 2.6vw, 32px);
}
.press-grid--dl    { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.press-grid--photo { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.press-grid--logo  { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); max-width: 760px; margin: 0 auto; }
.press-grid--live  { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
.press-grid--article { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

/* ============================================================================
   DOWNLOAD-KARTE (.press-dl)
   ============================================================================ */
.press-dl {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
}
.press-dl__preview {
	aspect-ratio: 3 / 4;
	background: var(--press-panel);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 14px;
	border-bottom: 1px solid var(--press-card-border);
}
.press-dl__preview img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: 4px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}
.press-dl__body {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 18px 18px 20px;
	flex: 1;
}
.press-dl__label {
	margin: 0;
	font-family: "Roboto", sans-serif;
	font-weight: 700;
	font-size: 1.05rem;
	color: #fff;
	line-height: 1.25;
}
.press-dl__meta {
	margin: 0 0 4px;
	font-family: "Roboto Slab", Georgia, serif;
	font-size: 0.85rem;
	color: var(--press-ink-muted);
	flex: 1;
}
.press-dl .press-btn {
	margin-top: auto;
	width: 100%;
}

/* ============================================================================
   FOTO-KARTE (.press-photo) — ganze Karte ist ein Link
   ============================================================================ */
.press-photo {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
}
.press-photo__frame {
	aspect-ratio: 3 / 4;
	background: var(--press-panel);
	overflow: hidden;
}
.press-photo__frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.press-photo:hover .press-photo__frame img { transform: scale(1.05); }
.press-photo__caption {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 12px 14px;
	font-family: "Roboto Slab", Georgia, serif;
	font-size: 0.88rem;
	color: var(--press-ink-muted);
}
.press-photo__caption .press-photo__dl {
	flex-shrink: 0;
	font-family: "Roboto", sans-serif;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--press-accent-hot);
}

/* dichte Live-Galerie: kompakter, quadratischer */
.press-photo--sm .press-photo__frame { aspect-ratio: 1 / 1; }
.press-photo--sm { border-radius: 10px; }
.press-photo--sm .press-photo__caption {
	padding: 8px 10px;
	font-size: 0.74rem;
}
.press-photo--sm .press-photo__caption .press-photo__dl { font-size: 0.62rem; }

/* Logo-Karte: Logo soll vollständig sichtbar bleiben (contain auf dunkel) */
.press-photo--logo .press-photo__frame {
	aspect-ratio: 16 / 9;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 22px;
}
.press-photo--logo .press-photo__frame img {
	object-fit: contain;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}
.press-photo--logo:hover .press-photo__frame img { transform: none; }

/* ============================================================================
   ARTIKEL-KARTE (.press-article)
   ============================================================================ */
.press-article {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 22px 22px 20px;
	text-decoration: none;
	color: inherit;
}
.press-article__title {
	margin: 0;
	font-family: "Roboto", sans-serif;
	font-weight: 700;
	font-size: 1.05rem;
	line-height: 1.35;
	color: #fff;
}
.press-article__cta {
	margin-top: auto;
	font-family: "Roboto", sans-serif;
	font-weight: 700;
	font-size: 0.82rem;
	letter-spacing: 0.04em;
	color: var(--press-accent-hot);
	transition: transform 0.2s ease;
}
.press-article:hover .press-article__cta { transform: translateX(4px); }

/* ============================================================================
   SHOWREEL (16:9, responsiv)
   ============================================================================ */
.press-showreel {
	max-width: 960px;
	margin: 0 auto;
	padding: clamp(12px, 1.6vw, 18px);
	overflow: hidden;
}
.press-showreel__wrap {
	position: relative;
	aspect-ratio: 16 / 9;
	border-radius: 8px;
	overflow: hidden;
	background: #000;
}
.press-showreel__wrap video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

/* ============================================================================
   BANDTEXT — Creme-Papier-Karte (.press-paper)
   ============================================================================ */
.press-paper {
	max-width: 72ch;
	margin: 0 auto;
	background: var(--press-paper);
	color: #1a1a1a;
	border-radius: 14px;
	padding: clamp(28px, 4vw, 56px);
	box-shadow:
		0 18px 44px rgba(0, 0, 0, 0.55),
		inset 0 0 0 1px rgba(255, 255, 255, 0.5);
	font-family: "Roboto Slab", Georgia, serif;
	font-size: 1.02rem;
	line-height: 1.7;
}
.press-paper > :first-child { margin-top: 0; }
.press-paper > :last-child { margin-bottom: 0; }
.press-paper h3 {
	margin: 0 0 6px;
	font-family: "Roboto", sans-serif;
	font-weight: 700;
	font-size: 1.5rem;
	color: #1a1a1a;
}
.press-paper h4 {
	margin: 30px 0 8px;
	font-family: "Roboto", sans-serif;
	font-weight: 700;
	font-size: 1.18rem;
	letter-spacing: 0.01em;
	color: var(--press-accent);
}
.press-paper p { margin: 0 0 14px; }
.press-paper strong { color: #111; }
.press-paper em { color: #3a342a; }
.press-paper a {
	color: var(--press-accent);
	text-decoration: underline;
}
.press-paper ul {
	margin: 0 0 14px;
	padding-left: 1.3em;
	list-style: none;
}
.press-paper ul li {
	position: relative;
	margin: 0 0 8px;
	padding-left: 4px;
}
.press-paper ul li::before {
	content: "";
	position: absolute;
	left: -0.95em;
	top: 0.62em;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--press-accent);
}
.press-paper .press-paper__note {
	font-size: 0.92rem;
	font-style: italic;
	color: #4a4032;
}

/* ============================================================================
   KONTAKT-KARTE
   ============================================================================ */
.press-contact {
	max-width: 640px;
	margin: 0 auto;
	text-align: center;
	padding: clamp(28px, 4vw, 44px);
}
.press-contact p {
	margin: 0 0 10px;
	font-family: "Roboto Slab", Georgia, serif;
	color: var(--press-ink-muted);
}
.press-contact__email {
	display: inline-block;
	margin: 4px 0 22px;
	font-family: "Roboto", sans-serif;
	font-weight: 700;
	font-size: 1.25rem;
	color: #fff;
	text-decoration: none;
}
.press-contact__email:hover { color: var(--press-accent-hot); }

/* ============================================================================
   NEON-PILL-BUTTON (.press-btn) — rot, abgerundet, Lift + Glow on hover
   ============================================================================ */
.press-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	font-family: "Roboto", sans-serif;
	font-weight: 700;
	font-size: 0.9rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
	color: #fff8ec;
	background: linear-gradient(135deg, #ff3838 0%, var(--press-accent) 60%, #8a0a1d 100%);
	border: 1px solid #8a0a1d;
	border-radius: 999px;
	cursor: pointer;
	box-shadow:
		0 2px 0 rgba(255, 255, 255, 0.18) inset,
		0 8px 22px rgba(200, 16, 46, 0.45);
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.press-btn:hover {
	transform: translateY(-2px);
	filter: brightness(1.07);
	box-shadow:
		0 2px 0 rgba(255, 255, 255, 0.22) inset,
		0 10px 28px rgba(255, 56, 56, 0.55),
		0 0 24px rgba(255, 56, 56, 0.4);
}
.press-btn:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 2px;
}
