/* ==========================================================================
   PlusCon – statische Version
   Nachbau des Layers-WP-Themes (Look & Feel des Originals, ohne WordPress,
   ohne JavaScript, ohne Cookies).
   ========================================================================== */

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

html {
	font-size: 62.5%; /* 1rem = 10px, wie im Original-Theme */
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 1.5rem;
	line-height: 1.5;
	color: rgba(0, 0, 0, 0.55);
	background-color: #ffffff;
}

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

a { text-decoration: none; color: inherit; }

.container {
	max-width: 1040px;
	margin: 0 auto;
	padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
	color: rgba(0, 0, 0, 0.85);
	font-weight: 700;
	line-height: 1.25;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.header-site {
	position: sticky;
	top: 0;
	z-index: 10;
	background-color: #ffffff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.header-site .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 10px;
	padding-bottom: 10px;
}

.logo {
	display: flex;
	align-items: center;
}

.logo img {
	max-height: 40px;
	width: auto;
	display: block;
}

.logo .sitename {
	margin-left: 10px;
	font-size: 1.6rem;
	font-weight: 700;
	color: rgba(0, 0, 0, 0.85);
}

/* --------------------------------------------------------------------------
   Hero (Startseite)
   -------------------------------------------------------------------------- */

.hero {
	display: block;
	position: relative;
	height: 600px;
	background-color: #ffffff;
	background-image: url("hamburg-hero.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.hero .darken {
	position: absolute;
	inset: 0;
	background: rgba(243, 156, 18, 0.15); /* gelbes Overlay wie im Original */
}

/* --------------------------------------------------------------------------
   Inhalt
   -------------------------------------------------------------------------- */

.wrapper-content {
	padding-top: 75px;
	padding-bottom: 75px;
}

.grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.media .heading {
	font-size: 2rem;
	margin-bottom: 15px;
}

.media .excerpt p { margin-bottom: 15px; }
.media .excerpt p:last-child { margin-bottom: 0; }

/* Unterseiten (Impressum / Datenschutzerklärung) */

.section-title { margin-bottom: 40px; }
.section-title .heading { font-size: 3rem; }
.section-title.large .heading { font-size: 4rem; }

.legal-block { margin-bottom: 30px; }
.legal-block .heading {
	font-size: 2rem;
	margin-bottom: 10px;
}

.story h2 {
	font-size: 2.4rem;
	margin: 30px 0 15px;
}

.story p, .story ul { margin-bottom: 20px; }
.story ul { padding-left: 25px; }

.story a:not(.button), .copy a:not(.button) {
	color: #f1c40f;
	border-bottom: 1px solid #f1c40f;
}

.story a:not(.button):hover, .copy a:not(.button):hover {
	color: #f5d657;
	border-bottom-color: #f5d657;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer-site {
	background-color: #f8f8fb;
	padding: 40px 0 20px;
}

.footer-site ul {
	list-style: none;
	margin-bottom: 40px;
}

.footer-site ul li { margin-bottom: 5px; }

.footer-site ul a { color: rgba(0, 0, 0, 0.55); }
.footer-site ul a:hover { color: rgba(0, 0, 0, 0.85); }

.copyright {
	color: rgba(0, 0, 0, 0.45);
	font-size: 1.2rem;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 768px) {
	.grid-3 { grid-template-columns: 1fr; }
	.hero { height: 420px; }
	.section-title.large .heading { font-size: 3rem; }
}
