/* ═══════════════════════════════════════
   AZUR PRIME — LEGAL PAGES
   Shared CSS for impressum.html & datenschutz.html
═══════════════════════════════════════ */

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'DM Sans', sans-serif;
  color: #1A2636;
  background: #F7F9FC;
  line-height: 1.7;
}

/* ── Language Visibility ── */
[data-de], [data-en] { display: none; }
body.de [data-de] { display: block; }
body.en [data-en] { display: block; }
[data-de-inline], [data-en-inline] { display: none; }
body.de [data-de-inline] { display: inline; }
body.en [data-en-inline] { display: inline; }

/* ── Navigation ── */
nav {
  background: #0B2035;
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.lang-bar {
  display: flex;
  gap: 6px;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.55);
  padding: 3px 12px;
  border-radius: 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all .2s;
}
.lang-btn.active {
  background: #C9A84C;
  border-color: #C9A84C;
  color: #0B2035;
}
.lang-btn:hover:not(.active) { color: white; border-color: rgba(255,255,255,.5); }

/* ── Back Button ── */
.back-btn-mobile {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 18px;
  border-radius: 8px;
  transition: background 0.2s;
  white-space: nowrap;
}
.back-btn-mobile:hover {
  background: rgba(255,255,255,0.18);
  color: white;
}
.back-arrow {
  font-size: 18px;
  line-height: 1;
}
.back-text {
  font-size: 14px;
}

/* ── Content ── */
.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px;
}
h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 700;
  color: #0B2035;
  margin-bottom: 8px;
}
.subtitle {
  color: #6B7A8D;
  font-size: 15px;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid #DDE4EE;
}

/* ── h2: datenschutz.html — large section heading ── */
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  color: #0B2035;
  margin: 36px 0 12px;
}

/* ── h2: impressum.html — small uppercase label ── */
body.impressum h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #0B2035;
  margin: 32px 0 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h3 {
  font-size: 15px;
  font-weight: 700;
  color: #0B2035;
  margin: 20px 0 8px;
}

p, address {
  font-size: 15px;
  color: #1A2636;
  font-style: normal;
  line-height: 1.75;
  margin-bottom: 12px;
}
a { color: #2E8BC0; text-decoration: none; }
a:hover { text-decoration: underline; }

.info-block {
  background: white;
  border: 1px solid #DDE4EE;
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 20px;
}

ul {
  margin: 8px 0 12px 20px;
  font-size: 15px;
  color: #1A2636;
  line-height: 1.75;
}

.disclaimer {
  background: #FFF8E7;
  border: 1px solid #F5D79E;
  border-radius: 12px;
  padding: 20px 24px;
  margin-top: 32px;
  font-size: 14px;
  color: #856404;
  line-height: 1.65;
}

/* ── Footer ── */
footer {
  text-align: center;
  padding: 32px;
  font-size: 13px;
  color: #6B7A8D;
  border-top: 1px solid #DDE4EE;
  margin-top: 48px;
}
footer a { color: #2E8BC0; }

/* ── Responsive ── */
@media (max-width: 600px) {
  nav { padding: 0 16px; height: 60px; }
  .nav-logo img { height: 36px; }
  .back-btn-mobile {
    padding: 12px 20px;
    font-size: 15px;
    min-height: 44px;
  }
  .back-arrow { font-size: 20px; }
}
