/* ── SELF-HOSTED FONTS ── */
/* Cormorant Garamond — variable, normal */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/cormorant-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/cormorant-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Cormorant Garamond — variable, italic */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/cormorant-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/cormorant-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* DM Sans — variable, normal */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/dm-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/dm-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ═══════════════════════════════════════
   AZUR PRIME — LEGAL PAGES
   Shared CSS for impressum.html & datenschutz.html
   Design tokens match index.html / style.css
═══════════════════════════════════════ */

:root {
  --navy:      #0B2035;
  --navy-mid:  #143352;
  --blue:      #2E8BC0;
  --gold:      #C9A84C;
  --off:       #F6F8FB;
  --white:     #FFFFFF;
  --muted:     #6B7A8D;
  --border:    #DDE4EE;
  --text:      #1A2636;
  --r:         14px;
  --shadow:    0 4px 28px rgba(11,32,53,0.10);
  --transition: 0.25s ease;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--off);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── 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 {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: #0B2035;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}
.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}

/* ── Lang switcher — identical to index.html ── */
.lang-bar {
  display: flex;
  align-items: center;
  gap: 6px;
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.55);
  padding: 4px 14px;
  border-radius: 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.lang-btn.active {
  background: #C9A84C;
  border-color: #C9A84C;
  color: #0B2035;
}
.lang-btn:hover:not(.active) {
  color: white;
  border-color: rgba(255,255,255,0.5);
}

/* ── Back button — matches secondary nav button style ── */
.back-btn-mobile {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 16px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}
.back-btn-mobile:hover {
  background: rgba(255,255,255,0.15);
  color: white;
}
.back-arrow {
  font-size: 15px;
  line-height: 1;
}

/* ── Content ── */
.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 104px 24px 80px;
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 8px;
}
.subtitle {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

/* ── h2: datenschutz.html — Cormorant section heading ── */
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--navy);
  margin: 40px 0 12px;
  line-height: 1.2;
}

/* ── h2: impressum.html — small uppercase DM Sans label ── */
body.impressum h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  margin: 32px 0 8px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin: 20px 0 8px;
}

p, address {
  font-size: 0.9rem;
  color: var(--text);
  font-style: normal;
  line-height: 1.75;
  margin-bottom: 12px;
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--navy); }

/* ── Info block cards — same as .info-card in style.css ── */
.info-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 32px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

ul {
  margin: 8px 0 12px 20px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.75;
}

/* ── Disclaimer / highlight box — same tokens as .highlight-box ── */
.disclaimer {
  background: linear-gradient(135deg, #fdf6e3 0%, #fef9ee 100%);
  border: 1px solid rgba(201,168,76,0.3);
  border-left: 3px solid var(--gold);
  border-radius: var(--r);
  padding: 16px 20px;
  margin-top: 32px;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Footer — dark navy, same as index.html footer ── */
footer {
  background: #0B2035;
  padding: 40px 24px 28px;
  text-align: center;
  margin-top: 48px;
}

.footer-logo {
  display: block;
  margin: 0 auto 24px;
  height: 48px;
  width: auto;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
}

.footer-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #C9A84C;
}

.footer-links span {
  color: rgba(255,255,255,0.25);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  nav { padding: 0 16px; }
  .container { padding: 96px 16px 48px; }
}

@media (max-width: 480px) {
  .nav-logo img { height: 36px; }
  .nav-right { gap: 12px; }
  h1 { font-size: 2rem; }
  .info-block { padding: 20px; }
  .back-btn-mobile { font-size: 12px; padding: 6px 12px; }
}
