/* ============================================================
   Amara Brandschutz — Website Mockup
   Design-System: Rot #E6332A, Anthrazit #3C3C3B, Arial
   ============================================================ */

:root {
  --rot: #E6332A;
  --anthrazit: #3C3C3B;
  --anthrazit-light: #707070;
  --grau-label: #909090;
  --hellgrau: #F7F7F7;
  --rahmen: #E5E5E5;
  --weiss: #FFFFFF;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--anthrazit);
  background: var(--weiss);
}

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

a {
  color: var(--rot);
  text-decoration: none;
  transition: opacity 0.15s;
}

a:hover {
  opacity: 0.75;
}

/* ============================================================
   Layout-Container
   ============================================================ */

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

/* ============================================================
   Header / Navigation
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rahmen);
  z-index: 100;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.nav img {
  height: 72px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--anthrazit);
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links a:hover {
  color: var(--rot);
  opacity: 1;
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  padding: 100px 0 100px 0;
  background: linear-gradient(180deg, var(--weiss) 0%, var(--hellgrau) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: center;
}

.hero-label {
  font-size: 12px;
  color: var(--grau-label);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: bold;
  margin-bottom: 12px;
}

.hero-accent {
  width: 80px;
  height: 4px;
  background: var(--rot);
  margin-bottom: 28px;
}

.hero h1 {
  font-size: 56px;
  font-weight: bold;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--anthrazit);
  margin-bottom: 24px;
}

.hero h1 .accent {
  color: var(--rot);
}

.hero-sub {
  font-size: 18px;
  color: var(--anthrazit-light);
  max-width: 540px;
  margin-bottom: 36px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  background: var(--rot);
  color: var(--weiss);
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: transform 0.15s, box-shadow 0.15s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(230, 51, 42, 0.3);
  opacity: 1;
}

.btn-outline {
  background: transparent;
  color: var(--anthrazit);
  border: 2px solid var(--rahmen);
  margin-left: 12px;
}

.btn-outline:hover {
  border-color: var(--anthrazit);
  box-shadow: none;
}

.hero-logo img {
  max-width: 100%;
  filter: drop-shadow(0 12px 40px rgba(60, 60, 59, 0.12));
}

/* ============================================================
   Section-Header
   ============================================================ */

.section-header {
  margin-bottom: 56px;
  text-align: center;
}

.section-label {
  font-size: 12px;
  color: var(--grau-label);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: bold;
  margin-bottom: 12px;
}

.section-accent {
  width: 64px;
  height: 4px;
  background: var(--rot);
  margin: 0 auto 24px auto;
}

.section-header h2 {
  font-size: 40px;
  font-weight: bold;
  color: var(--anthrazit);
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: 18px;
  color: var(--anthrazit-light);
  max-width: 640px;
  margin: 16px auto 0;
}

/* ============================================================
   Service-Karten
   ============================================================ */

.services {
  background: var(--hellgrau);
}

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

.service-card {
  background: var(--weiss);
  border: 1px solid var(--rahmen);
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--rot);
  border-radius: 12px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
}

.service-card h3 {
  font-size: 18px;
  font-weight: bold;
  color: var(--anthrazit);
  margin-bottom: 10px;
}

.service-card .sub-label {
  font-size: 11px;
  color: var(--grau-label);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: bold;
  margin-bottom: 4px;
}

.service-card p {
  font-size: 14px;
  color: var(--anthrazit-light);
  line-height: 1.6;
}

.service-card ul {
  list-style: none;
  padding-left: 0;
  margin-top: 12px;
  font-size: 13px;
  color: var(--anthrazit-light);
}

.service-card li {
  padding-left: 16px;
  position: relative;
  margin-bottom: 4px;
}

.service-card li::before {
  content: "▸";
  color: var(--rot);
  position: absolute;
  left: 0;
}

/* ============================================================
   About
   ============================================================ */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text p {
  color: var(--anthrazit-light);
  font-size: 16px;
  margin-bottom: 20px;
}

.about-text strong {
  color: var(--anthrazit);
}

.about-timeline {
  background: var(--anthrazit);
  color: var(--weiss);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 12px 40px rgba(60, 60, 59, 0.15);
}

.about-timeline h3 {
  font-size: 14px;
  color: var(--rot);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
  margin-bottom: 24px;
}

.timeline-item {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.timeline-year {
  font-size: 32px;
  font-weight: bold;
  color: var(--rot);
  min-width: 80px;
  letter-spacing: -1px;
}

.timeline-event h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 4px;
}

.timeline-event p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   How We Work
   ============================================================ */

.process {
  background: var(--hellgrau);
}

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

.tool-card {
  background: var(--weiss);
  border: 1px solid var(--rahmen);
  border-radius: 10px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.tool-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rot);
  flex-shrink: 0;
}

.tool-card h4 {
  font-size: 14px;
  font-weight: bold;
  color: var(--anthrazit);
}

.tool-card p {
  font-size: 12px;
  color: var(--grau-label);
  margin-top: 2px;
}

/* ============================================================
   Contact
   ============================================================ */

.contact {
  background: var(--anthrazit);
  color: var(--weiss);
}

.contact .section-header h2 {
  color: var(--weiss);
}

.contact .section-label {
  color: var(--rot);
}

.contact .section-accent {
  background: var(--rot);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 32px;
}

.contact-card {
  text-align: center;
  padding: 32px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-card .icon {
  width: 56px;
  height: 56px;
  background: var(--rot);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
}

.contact-card h3 {
  font-size: 12px;
  color: var(--grau-label);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.contact-card p,
.contact-card a {
  font-size: 16px;
  color: var(--weiss);
  font-weight: bold;
}

.contact-card a:hover {
  color: var(--rot);
}

/* ============================================================
   Footer
   ============================================================ */

footer {
  background: #2a2a29;
  color: rgba(255, 255, 255, 0.6);
  padding: 40px 0;
  font-size: 14px;
}

footer .footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

footer .footer-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-weight: bold;
  font-size: 28px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.9);
}

footer .footer-brand .accent {
  color: var(--rot);
  font-size: 18px;
  letter-spacing: 2px;
}

footer a {
  color: rgba(255, 255, 255, 0.7);
}

footer a:hover {
  color: var(--rot);
  opacity: 1;
}

.footer-links {
  display: flex;
  gap: 24px;
}

/* ============================================================
   Legal-Seiten (Impressum/Datenschutz)
   ============================================================ */

.legal-page {
  padding: 80px 0;
  min-height: 60vh;
}

.legal-page h1 {
  font-size: 40px;
  margin-bottom: 12px;
  color: var(--anthrazit);
}

.legal-page .section-accent {
  margin: 0 0 32px 0;
}

.legal-page h2 {
  font-size: 22px;
  margin: 32px 0 12px;
  color: var(--anthrazit);
}

.legal-page p,
.legal-page li {
  color: var(--anthrazit-light);
  margin-bottom: 12px;
}

.legal-page ul {
  padding-left: 24px;
  margin-bottom: 12px;
}

.legal-page address {
  font-style: normal;
  line-height: 1.8;
  color: var(--anthrazit);
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 900px) {
  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-logo {
    max-width: 220px;
    margin: 0 auto;
  }
  .service-grid,
  .tools-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 40px;
  }
  .nav-links {
    display: none;
  }
}
