/* DSchenk GmbH - Legal Pages Stylesheet (AGB & Datenschutz) */

:root {
  --blue: #0056d6;
  --blue-dark: #0040a8;
  --blue-pale: #e8f0fd;
  --white: #ffffff;
  --off-white: #f4f7ff;
  --dark: #0a0f1e;
  --gray: #5a6480;
}

*, *::before, *::after { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

html { 
  scroll-behavior: smooth; 
}

body { 
  font-family: 'DM Sans', sans-serif; 
  background: var(--white); 
  color: var(--dark); 
  overflow-x: hidden; 
}

/* NAVIGATION */
nav {
  position: fixed; 
  top: 0; 
  left: 0; 
  right: 0; 
  z-index: 100;
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  padding: 1.2rem 5vw;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,86,214,0.1);
  box-shadow: 0 4px 32px rgba(0,86,214,0.08);
}

.logo { 
  font-family: 'Syne', sans-serif; 
  font-weight: 800; 
  font-size: 1.45rem; 
  color: var(--blue); 
  letter-spacing: -0.03em; 
  text-decoration: none; 
}

.logo span { 
  color: var(--dark); 
}

.nav-back { 
  text-decoration: none; 
  color: var(--gray); 
  font-size: 0.9rem; 
  font-weight: 500; 
  display: flex; 
  align-items: center; 
  gap: 0.4rem; 
  transition: color 0.2s; 
}

.nav-back:hover { 
  color: var(--blue); 
}

/* PAGE HERO */
.page-hero {
  background: var(--dark);
  padding: 8rem 5vw 4rem;
  position: relative; 
  overflow: hidden;
}

.page-hero::after {
  content: ''; 
  position: absolute; 
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0,86,214,0.3) 0%, transparent 70%);
}

.page-hero-content { 
  position: relative; 
  z-index: 1; 
}

.page-badge {
  display: inline-block;
  background: rgba(0,86,214,0.2); 
  border: 1px solid rgba(0,86,214,0.4);
  color: #80aaff; 
  font-size: 0.75rem; 
  font-weight: 500; 
  letter-spacing: 0.1em;
  text-transform: uppercase; 
  padding: 0.35rem 0.9rem; 
  border-radius: 100px; 
  margin-bottom: 1.2rem;
}

.page-hero h1 {
  font-family: 'Syne', sans-serif; 
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800; 
  line-height: 1.1; 
  letter-spacing: -0.03em; 
  color: white;
  margin-bottom: 0.8rem;
}

.page-hero p { 
  color: rgba(255,255,255,0.5); 
  font-size: 0.9rem; 
  font-weight: 300; 
}

/* CONTENT WRAP */
.content-wrap {
  max-width: 820px; 
  margin: 0 auto; 
  padding: 5rem 5vw 6rem;
}

.content-wrap h2 {
  font-family: 'Syne', sans-serif; 
  font-size: 1.35rem; 
  font-weight: 700;
  color: var(--dark); 
  margin: 2.5rem 0 0.8rem;
  padding-bottom: 0.5rem; 
  border-bottom: 2px solid var(--blue-pale);
}

.content-wrap h2:first-child { 
  margin-top: 0; 
}

.content-wrap p { 
  font-size: 0.95rem; 
  line-height: 1.8; 
  color: var(--gray); 
  font-weight: 300; 
  margin-bottom: 1rem; 
}

.content-wrap ul { 
  list-style: none; 
  margin: 0.5rem 0 1rem 0; 
}

.content-wrap ul li {
  font-size: 0.95rem; 
  line-height: 1.8; 
  color: var(--gray);
  font-weight: 300; 
  padding: 0.2rem 0 0.2rem 1.4rem; 
  position: relative;
}

.content-wrap ul li::before {
  content: ''; 
  position: absolute; 
  left: 0; 
  top: 0.7rem;
  width: 7px; 
  height: 7px; 
  background: var(--blue); 
  border-radius: 50%;
}

.content-wrap a { 
  color: var(--blue); 
  text-decoration: none; 
}

.content-wrap a:hover { 
  text-decoration: underline; 
}

/* INFO BOX */
.info-box {
  background: var(--blue-pale); 
  border-left: 4px solid var(--blue);
  border-radius: 0 12px 12px 0; 
  padding: 1.2rem 1.5rem; 
  margin: 1.5rem 0;
}

.info-box p { 
  margin: 0; 
  color: var(--dark); 
  font-weight: 400; 
}

/* FOOTER */
footer {
  background: var(--dark); 
  color: rgba(255,255,255,0.4);
  padding: 2rem 5vw;
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  flex-wrap: wrap; 
  gap: 1rem; 
  font-size: 0.83rem;
}

footer a { 
  color: rgba(255,255,255,0.4); 
  text-decoration: none; 
  transition: color 0.2s; 
}

footer a:hover { 
  color: white; 
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: rgba(0,86,214,0.8);
  text-decoration: none;
}

.footer-logo span {
  color: rgba(255,255,255,0.4);
}
