/* MarketingKiOldenburg – Vollständige Styles */
:root {
  --color-primary: #0f172a;
  --color-accent: #2563eb;
  --color-accent-hover: #1d4ed8;
  --color-text: #1e293b;
  --color-text-muted: #64748b;
  --color-bg: #f8fafc;
  --color-card: #ffffff;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & Logo (dekorativer Schriftzug) */
header {
  background: var(--color-primary);
  color: white;
  padding: 1rem 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  color: white;
  text-decoration: none;
}

.logo:hover {
  opacity: 0.95;
}

nav a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  margin-left: 1.5rem;
  font-weight: 500;
}

nav a:hover {
  color: white;
}

/* Hero mit Hintergrundbild */
.hero {
  position: relative;
  padding: 5rem 0;
  text-align: center;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.92) 0%, rgba(15,23,42,0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: white;
  line-height: 1.2;
}

.hero .tagline {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.95);
  max-width: 36em;
  margin-left: auto;
  margin-right: auto;
}

.cta {
  display: inline-block;
  background: var(--color-accent);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.cta:hover {
  background: var(--color-accent-hover);
}

.cta-secondary {
  display: inline-block;
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
  margin-top: 0.5rem;
}

.cta-secondary:hover {
  text-decoration: underline;
}

/* Intro & Focus */
.intro, .focus {
  padding: 3rem 0;
}

.intro h2, .focus h2 {
  margin-bottom: 1rem;
}

.intro p, .focus p {
  color: var(--color-text-muted);
  max-width: 42em;
}

/* Page Head (innere Seiten) */
.page-head {
  padding: 2.5rem 0 1rem;
}

.page-head h1 {
  margin-bottom: 0.5rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--color-text-muted);
}

.lead a {
  color: var(--color-accent);
}

/* Services */
.services {
  padding: 1rem 0 3rem;
}

.service-card {
  background: var(--color-card);
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.service-card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
  padding: 2rem 0 3rem;
  text-align: center;
}

.cta-section p {
  margin-bottom: 1rem;
  color: var(--color-text-muted);
}

/* About */
.about-content .container {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .about-content .container {
    grid-template-columns: 1fr 280px;
  }
}

.about-text h2 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.about-text h2:first-child {
  margin-top: 0;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.about-image .credit {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

/* Legal (Impressum, Datenschutz) */
.legal {
  padding: 0 0 3rem;
}

.legal p {
  margin-bottom: 1rem;
}

.legal a {
  color: var(--color-accent);
}

/* Contact Form */
.contact-form-section {
  padding: 0 0 3rem;
}

.contact-form {
  max-width: 28rem;
}

.contact-form label {
  display: block;
  margin-top: 1rem;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  margin-top: 1.25rem;
}

.form-hint {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.form-hint a {
  color: var(--color-accent);
}

.form-status {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.form-status.success {
  color: #059669;
}

.form-status.error {
  color: #dc2626;
}

/* Footer */
footer {
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid #e2e8f0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

footer .container {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

footer a {
  color: var(--color-accent);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
