/* ============================================
   AARON GESSAMI – MAIN STYLESHEET
   ============================================ */

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

:root {
	--sand: #d9d0b8;
	--yellow: #f5c800;
	--red: #e62020;
	--blue: #1ab3e8;
	--black: #111111;
	--white: #ffffff;
	--divider: #aaa090;
}

html {
	scroll-behavior: smooth;
}

body {
	background-color: var(--sand);
	font-family: 'Courier Prime', monospace;
	overflow-x: hidden;
	color: var(--black);
}

/* ── GRAIN OVERLAY ── */
body::after {
	content: '';
	position: fixed;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' 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)' opacity='0.045'/%3E%3C/svg%3E");
	pointer-events: none;
	z-index: 100;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
	background-color: var(--sand);
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: end;
	gap: 0;
	padding: 48px 52px 0;
	min-height: 420px;
	position: relative;
	overflow: hidden;
}

/* ── ANIMATIONS ── */
@keyframes heroFadeUp {
	from {
		opacity: 0;
		transform: translateY(36px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes heroPop {
	0% {
		opacity: 0;
		transform: scale(0.8) translateY(20px);
	}
	70% {
		transform: scale(1.04) translateY(-4px);
	}
	100% {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}
@keyframes heroSlideLeft {
	from {
		opacity: 0;
		transform: translateX(-40px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.hero-anim {
	opacity: 0;
	animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ── LEFT COLUMN ── */
.hero-left {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	padding-bottom: 48px;
	animation: heroSlideLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero-logo {
	width: clamp(160px, 22vw, 280px);
	height: auto;
	filter: drop-shadow(3px 3px 0 rgba(0, 0, 0, 0.15));
	/* logo has black bg – mix-blend-mode makes it transparent-ish on sand */
	mix-blend-mode: multiply;
}

.hero-pills {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.hero-pill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: Impact, 'Arial Narrow', sans-serif;
	font-size: clamp(15px, 2vw, 20px);
	letter-spacing: 0.03em;
	padding: 11px 24px;
	border-radius: 50px;
	border: 3px solid var(--black);
	white-space: nowrap;
	box-shadow: 4px 4px 0 var(--black);
	transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.hero-pill:hover {
	transform: translateY(-2px);
	box-shadow: 6px 6px 0 var(--black);
}

.pill-dark {
	background: var(--black);
	color: var(--white);
}

.hero-arrow {
	width: 80px;
	height: auto;
	margin-top: 8px;
	margin-left: 20px;
}

/* ── CENTER COLUMN ── */
.hero-center {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	animation: heroPop 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.hero-person-placeholder {
	width: clamp(180px, 24vw, 300px);
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hero-person-silhouette {
	width: 100%;
	background: #c8c0a8;
	border: 4px solid var(--black);
	border-bottom: none;
	border-radius: 12px 12px 0 0;
	box-shadow: 6px 0 0 var(--black), -6px 0 0 var(--black);
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px 20px 0;
	min-height: 340px;
	position: relative;
}

.hero-person-silhouette svg {
	width: 70%;
	opacity: 0.5;
	margin-top: 20px;
}

.hero-person-label {
	position: absolute;
	bottom: 20px;
	font-family: 'Courier Prime', monospace;
	font-size: 13px;
	color: rgba(0, 0, 0, 0.4);
	letter-spacing: 0.05em;
}

/* ── RIGHT COLUMN ── */
.hero-right {
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: flex-end;
	padding-bottom: 48px;
	padding-left: 24px;
}

.hero-photo-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 4px solid var(--black);
	box-shadow: 5px 5px 0 var(--black);
	background: #c2baa8;
	font-family: 'Courier Prime', monospace;
	font-size: 14px;
	color: rgba(0, 0, 0, 0.4);
	border-radius: 8px;
	transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.hero-photo-placeholder:hover {
	transform: translateY(-3px) rotate(-1deg);
	box-shadow: 8px 8px 0 var(--black);
}

.hero-photo-top {
	width: clamp(160px, 20vw, 240px);
	height: clamp(110px, 14vw, 165px);
	transform: rotate(2deg);
}

.hero-photo-bottom {
	width: clamp(140px, 18vw, 210px);
	height: clamp(130px, 16vw, 185px);
	transform: rotate(-1.5deg);
}

/* ============================================
   SHARED
   ============================================ */

.section {
	padding: 64px 52px;
	position: relative;
}

.section + .section {
	border-top: 3px solid var(--divider);
}

/* Heading styles */
.heading-block {
	display: inline-block;
	transform: rotate(-3deg);
	transform-origin: left center;
}

.ich-bin {
	font-family: Impact, 'Arial Narrow', sans-serif;
	font-size: clamp(52px, 8vw, 96px);
	line-height: 0.88;
	color: var(--white);
	-webkit-text-stroke: 3.5px var(--black);
	filter: drop-shadow(4px 4px 0 var(--black));
	display: block;
}

.role-title {
	font-family: Impact, 'Arial Narrow', sans-serif;
	font-size: clamp(52px, 8vw, 96px);
	line-height: 0.88;
	-webkit-text-stroke: 3.5px var(--black);
	filter: drop-shadow(4px 4px 0 var(--black));
	display: block;
}

.role-title.red {
	color: var(--red);
}
.role-title.yellow {
	color: var(--yellow);
}
.role-title.blue {
	color: var(--blue);
}

.dot {
	display: inline-block;
	animation: blink 1.5s infinite;
}
.dot:nth-child(2) {
	animation-delay: 0.2s;
}
.dot:nth-child(3) {
	animation-delay: 0.4s;
}

@keyframes blink {
	0%,
	75%,
	100% {
		opacity: 1;
	}
	40% {
		opacity: 0.15;
	}
}

/* Body text */
.body-text {
	font-family: 'Courier Prime', monospace;
	font-size: clamp(18px, 2.4vw, 26px);
	line-height: 1.65;
	color: var(--black);
	max-width: 540px;
}

/* Photo utility */
.photo {
	display: block;
	object-fit: cover;
	border: 4px solid var(--black);
	box-shadow: 6px 6px 0 var(--black);
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.photo:hover {
	box-shadow: 10px 10px 0 var(--black);
}

/* Tape strip */
.tape {
	position: absolute;
	width: 52px;
	height: 16px;
	background: rgba(255, 255, 255, 0.65);
	border: 1px solid rgba(0, 0, 0, 0.12);
	z-index: 2;
}

/* ── SCROLL REVEAL ── */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
	opacity: 1;
	transform: none;
}
.reveal-left {
	opacity: 0;
	transform: translateX(-32px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
	opacity: 1;
	transform: none;
}
.reveal-right {
	opacity: 0;
	transform: translateX(32px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
	opacity: 1;
	transform: none;
}

/* ============================================
   SECTION 1 – YOUTUBER
   ============================================ */

.youtuber-section {
	padding-bottom: 48px;
}

.youtuber-header {
	margin-left: 25%;
	margin-right: 25%;
	width: 100%;
	max-width: 1000px;
	display: flex;
	gap: 48px;
	align-items: flex-start;
	margin-bottom: 40px;
}

.youtuber-heading {
	flex: 0 0 auto;
}

.youtuber-text {
	padding-top: 12px;
}

/* Thumbnail grid */
.thumbnails {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.thumb-card {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	border: 3px solid var(--black);
	box-shadow: 5px 5px 0 var(--black);
	aspect-ratio: 16/9;
	background: #222;
	cursor: pointer;
	display: block;
	text-decoration: none;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.thumb-card:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: 10px 10px 0 var(--black);
}

.thumb-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease, filter 0.4s ease;
}

.thumb-card:hover img {
	transform: scale(1.06);
	filter: brightness(0.45);
}

/* fallback background when image missing */
.thumb-card.thumb-fallback {
	background: linear-gradient(135deg, #555 0%, #222 100%);
}

/* Overlay (hidden by default) */
.thumb-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.thumb-card:hover .thumb-overlay {
	opacity: 1;
}

/* "Anschauen" button */
.thumb-btn {
	font-family: Impact, 'Arial Narrow', sans-serif;
	font-size: clamp(15px, 1.8vw, 20px);
	letter-spacing: 0.05em;
	color: var(--white);
	background: var(--red);
	border: 3px solid var(--black);
	border-radius: 50px;
	padding: 14px 32px;
	box-shadow: 4px 4px 0 var(--black);
	transform: scale(0.8);
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.15s ease;
	white-space: nowrap;
	cursor: pointer;
	z-index: 2;
	position: relative;
}

.thumb-card:hover .thumb-btn {
	transform: scale(1);
}

.thumb-btn:hover {
	transform: scale(1.07) !important;
	box-shadow: 6px 6px 0 var(--black);
}

/* Placeholder thumbnails (when no real image) */
.thumb-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: Impact, sans-serif;
	font-size: clamp(20px, 3vw, 34px);
	color: var(--white);
	-webkit-text-stroke: 1px var(--black);
	text-align: center;
	padding: 12px;
	line-height: 1.1;
}

.thumb-1 .thumb-placeholder {
	background: linear-gradient(135deg, #4caf50 0%, #2196f3 100%);
}
.thumb-2 .thumb-placeholder {
	background: linear-gradient(135deg, #ff5722 0%, #ff9800 100%);
}
.thumb-3 .thumb-placeholder {
	background: linear-gradient(135deg, #1db954 0%, #111 100%);
}

.thumb-label {
	position: absolute;
	bottom: 8px;
	left: 8px;
	right: 8px;
	font-family: Impact, sans-serif;
	font-size: clamp(11px, 1.5vw, 16px);
	color: var(--white);
	-webkit-text-stroke: 0.5px var(--black);
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* ============================================
   SECTION 2 – PRODUZENT
   ============================================ */

.produzent-section {
}

.produzent-layout {
	display: grid;
	grid-template-columns: auto 1fr;
	grid-template-rows: auto auto;
	gap: 0 48px;
	align-items: start;
}

.produzent-photo-wrap {
	grid-column: 1;
	grid-row: 1;
	position: relative;
	width: 380px;
}

.produzent-photo-wrap .photo {
	width: 100%;
	aspect-ratio: 4/3;
	transform: rotate(-2.5deg);
}

.produzent-photo-wrap:hover .photo {
	transform: rotate(-0.5deg) scale(1.02);
}

.produzent-photo-wrap .tape {
	top: -7px;
	left: 20px;
	transform: rotate(-4deg);
}

.produzent-heading {
	grid-column: 2;
	grid-row: 1;
	padding-top: 4px;
}

.produzent-body {
	grid-column: 1 / 3;
	grid-row: 2;
	padding-top: 36px;
}

/* ============================================
   SECTION 3 – MODERATOR
   ============================================ */

.moderator-section {
}

.moderator-top {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 32px;
	align-items: start;
	margin-bottom: 36px;
}

.moderator-top-photo {
	width: 320px;
	aspect-ratio: 4/3;
	transform: rotate(2deg);
}

.moderator-top-photo:hover {
	transform: rotate(0.5deg) scale(1.02);
}

.moderator-bottom {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 32px;
	align-items: end;
}

.moderator-bottom-photo-wrap {
	position: relative;
	width: 380px;
	justify-self: end;
}

.moderator-bottom-photo {
	width: 100%;
	aspect-ratio: 3/4;
	transform: rotate(-2deg);
}

.moderator-bottom-photo:hover {
	transform: rotate(-0.5deg) scale(1.02);
}

.moderator-bottom-photo-wrap .tape {
	top: -7px;
	right: 20px;
	transform: rotate(4deg);
}

/* ============================================
   SECTION 4 – KONTAKT (yellow)
   ============================================ */

.kontakt-section {
	background-color: var(--yellow);
	border-top: 3px solid var(--black);
	padding: 56px 52px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 28px;
}

.kontakt-headline {
	font-family: Impact, 'Arial Narrow', sans-serif;
	font-size: clamp(22px, 3.5vw, 40px);
	color: var(--white);
	-webkit-text-stroke: 2px var(--black);
	filter: drop-shadow(3px 3px 0 var(--black));
	line-height: 1.15;
	max-width: 560px;
}

.kontakt-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--white);
	color: var(--black);
	font-family: Impact, 'Arial Narrow', sans-serif;
	font-size: clamp(16px, 2.2vw, 22px);
	letter-spacing: 0.05em;
	padding: 14px 36px;
	border: 3px solid var(--black);
	border-radius: 50px;
	box-shadow: 5px 5px 0 var(--black);
	text-decoration: none;
	cursor: pointer;
	transition: box-shadow 0.15s ease, transform 0.15s ease, background 0.15s ease;
}

.kontakt-btn:hover {
	background: var(--yellow);
	transform: translateY(-3px);
	box-shadow: 8px 8px 0 var(--black);
}

.kontakt-btn .globe {
	font-size: 1.2em;
}

/* footer */
.site-footer {
	background-color: var(--yellow);
	border-top: 1px solid rgba(0, 0, 0, 0.15);
	text-align: center;
	padding: 16px;
	font-size: 11px;
	color: rgba(0, 0, 0, 0.5);
	font-family: 'Courier Prime', monospace;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 720px) {
	.hero-section {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto auto;
		padding: 32px 24px 0;
		min-height: unset;
	}

	.hero-left {
		padding-bottom: 24px;
	}
	.hero-center {
		order: -1;
	}
	.hero-right {
		flex-direction: row;
		justify-content: center;
		padding-left: 0;
		padding-bottom: 24px;
	}

	.section {
		padding: 44px 24px;
	}

	.youtuber-header {
		flex-direction: column;
		gap: 24px;
	}

	.thumbnails {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.produzent-layout {
		grid-template-columns: 1fr;
	}

	.produzent-photo-wrap {
		width: 100%;
		max-width: 300px;
		margin: 0 auto;
	}

	.produzent-heading {
		grid-column: 1;
		grid-row: 2;
		padding-top: 32px;
	}

	.produzent-body {
		grid-column: 1;
		grid-row: 3;
	}

	.moderator-top {
		grid-template-columns: 1fr;
	}

	.moderator-top-photo {
		width: 100%;
		max-width: 300px;
	}

	.moderator-bottom {
		grid-template-columns: 1fr;
	}

	.moderator-bottom-photo-wrap {
		justify-self: auto;
		width: 100%;
		max-width: 300px;
	}

	.kontakt-section {
		padding: 44px 24px;
	}
}


.social-buttons {
  position: fixed;
  top: 18px;
  right: 18px;
  display: flex;
  gap: 10px;
  z-index: 100;
}

.social-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 3px 4px 14px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.social-btn:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 4px 6px 18px rgba(0,0,0,0.25);
}

.social-btn svg {
  width: 22px;
  height: 22px;
}
