/* Shared styles for impressum.html and datenschutz.html */

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

:root {
  --rose:    #c0896a;
  --rose-lt: #e8d0bf;
  --cream:   #faf6f2;
  --dark:    #1e1a18;
  --mid:     #6b5f58;
}

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--cream);
  color: var(--dark);
  font-size: 16px;
  line-height: 1.8;
}

header {
  background: var(--dark);
  padding: 1.4rem clamp(1.5rem, 6vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header a {
  font-family: 'Cormorant Garamond', serif;
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  font-style: italic;
}

header nav a {
  font-family: 'Jost', sans-serif;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  font-style: normal;
  transition: color .2s;
}

header nav a:hover { color: var(--rose); }

main {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 6vw, 3rem);
}

.page-tag {
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: .5rem;
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-style: italic;
  font-weight: 400;
  margin-bottom: .8rem;
}

.divider {
  width: 48px;
  height: 1.5px;
  background: var(--rose);
  margin-bottom: 2.5rem;
}

section { margin-bottom: 2.4rem; }

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: .5rem;
  color: var(--dark);
  border-bottom: 1px solid var(--rose-lt);
  padding-bottom: .4rem;
}

p { color: var(--mid); margin-bottom: .5rem; }
a { color: var(--rose); text-decoration: none; }
a:hover { text-decoration: underline; }

footer {
  background: #110f0e;
  color: rgba(255,255,255,.35);
  text-align: center;
  padding: 1.6rem;
  font-size: .78rem;
  letter-spacing: .08em;
  margin-top: 4rem;
}

footer span { color: var(--rose); }
footer a { color: rgba(255,255,255,.35); text-decoration: none; }
footer a:hover { color: var(--rose); }
