/*
Theme Name: The Club Magazine
Theme URI: https://example.com/
Author: The Club
Description: One-Pager-Theme im Magazin-Stil. Alle Texte, Bilder und Links sind über den Customizer (Design > Customizer) anpassbar.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: theclub
Tags: one-column, custom-logo, editor-style
*/

/* ---------- Reset & Basics ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--c-black: #000000;
	--c-white: #ffffff;
	--c-grey: #b9b9b9;
	--font-display: "Archivo Black", "Arial Black", sans-serif;
	--font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
}

html {
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

body {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--c-white);
	background: var(--c-black);
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
}

a:focus-visible,
button:focus-visible {
	outline: 2px solid var(--c-white);
	outline-offset: 3px;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

/* ---------- Header ---------- */
.site-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	padding: 18px 24px 14px;
	background: var(--c-black);
}

.site-logo {
	font-family: var(--font-display);
	font-size: clamp(44px, 8vw, 92px);
	line-height: 0.9;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	text-decoration: none;
	transform: scaleX(1.08);
	transform-origin: left center;
}

.site-tagline {
	font-weight: 700;
	font-size: clamp(13px, 1.4vw, 18px);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	align-self: center;
	text-align: right;
	white-space: nowrap;
}

/* ---------- Hero ---------- */
.hero {
	position: relative;
	min-height: clamp(320px, 48vw, 640px);
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-button {
	display: inline-block;
	background: var(--c-black);
	color: var(--c-white);
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 14px 42px;
	border: none;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.hero-button:hover {
	background: var(--c-white);
	color: var(--c-black);
}

/* ---------- Welcome ---------- */
.welcome {
	background: var(--c-white);
	color: var(--c-black);
	text-align: center;
	padding: clamp(60px, 9vw, 130px) 24px;
}

.welcome-inner {
	max-width: 760px;
	margin: 0 auto;
}

.welcome-title {
	font-family: var(--font-display);
	font-size: clamp(26px, 4vw, 44px);
	text-transform: uppercase;
	letter-spacing: 0.01em;
	display: inline-block;
	border-bottom: 3px solid var(--c-black);
	padding-bottom: 4px;
	margin-bottom: 18px;
}

.welcome-subtitle {
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 18px;
}

.welcome-text {
	font-size: 15px;
	line-height: 1.65;
}

.welcome-signoff {
	margin-top: 28px;
	font-size: 15px;
}

/* ---------- Feature-Sektionen ---------- */
.feature {
	display: grid;
	grid-template-columns: 1fr 1fr;
	background: var(--c-black);
	min-height: clamp(380px, 46vw, 640px);
}

.feature-media {
	background-size: cover;
	background-position: center;
	min-height: 320px;
}

.feature-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(40px, 7vw, 110px);
}

.feature--media-left .feature-media { order: 1; }
.feature--media-left .feature-content { order: 2; }

.feature-title {
	font-family: var(--font-display);
	font-size: clamp(26px, 3.4vw, 44px);
	text-transform: uppercase;
	letter-spacing: 0.01em;
	line-height: 1.05;
	margin-bottom: 18px;
}

.feature-text {
	font-size: 15px;
	line-height: 1.6;
	max-width: 420px;
}

.feature--center .feature-content {
	align-items: center;
	text-align: center;
}

.feature--center .feature-text {
	font-size: clamp(17px, 1.8vw, 22px);
}

/* ---------- Contributors ---------- */
.contributors {
	background: var(--c-black);
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding: clamp(50px, 7vw, 100px) 24px;
}

.contributors-inner {
	grid-column: 2;
	border-top: 1px solid var(--c-white);
	padding-top: 28px;
	padding-right: clamp(0px, 4vw, 60px);
}

.contributors-title {
	font-family: var(--font-body);
	font-weight: 700;
	font-size: clamp(18px, 2vw, 24px);
	margin-bottom: 10px;
}

.contributors-text {
	font-size: clamp(16px, 1.9vw, 22px);
	line-height: 1.45;
}

/* ---------- Footer ---------- */
.site-footer {
	background: var(--c-black);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 26px 24px 34px;
}

.footer-nav {
	display: flex;
	gap: clamp(32px, 8vw, 110px);
}

.footer-nav a,
.footer-menu a {
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
}

.footer-nav a:hover,
.footer-menu a:hover {
	text-decoration: underline;
}

.footer-menu {
	display: flex;
	gap: clamp(32px, 8vw, 110px);
	list-style: none;
}

.footer-social {
	display: inline-flex;
	line-height: 0;
}

.footer-social svg {
	width: 30px;
	height: 30px;
	fill: none;
	stroke: var(--c-white);
	stroke-width: 1.6;
}

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
	.site-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
	}

	.site-tagline {
		align-self: flex-start;
		text-align: left;
	}

	.feature,
	.feature--media-left {
		grid-template-columns: 1fr;
	}

	.feature--media-left .feature-media,
	.feature .feature-media {
		order: 1;
		min-height: 60vw;
	}

	.feature--media-left .feature-content,
	.feature .feature-content {
		order: 2;
	}

	.contributors {
		grid-template-columns: 1fr;
	}

	.contributors-inner {
		grid-column: 1;
	}

	.site-footer {
		flex-wrap: wrap;
	}
}
