/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   novelique.de — style.css
   Stand: 24.03.2026 | v1.0
   Autor: Ique Novel | KAPSEL™
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Jost:wght@300;400;500&display=swap');

/* ── VARIABLEN ── */
:root {
  --bg:          #0A0A0A;
  --surface:     #141414;
  --border:      #252525;
  --text:        #EDEAE4;
  --text-muted:  #777;
  --text-dim:    #444;

  --k: #CC0000;
  --a: #DDAA00;
  --p: #336699;
  --s: #6633AA;
  --e: #336633;
  --l: #CC6699;

  --nav-h:    60px;
  --max-w:    720px;
  --radius:   4px;
}

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

html {
  font-size: 17px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.75;
  min-height: 100vh;
}

/* ── TYPOGRAFIE ── */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

h1 { font-size: 2.6rem; }
h2 { font-size: 1.6rem; margin-bottom: 1rem; color: var(--text); }
h3 { font-size: 1.2rem; }

p { margin-bottom: 0.75rem; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--a); }

em { font-style: italic; }
strong { font-weight: 500; }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  height: var(--nav-h);
}

.nav-inner {
  max-width: calc(var(--max-w) + 4rem);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text);
  text-transform: uppercase;
}
.nav-logo .tm {
  font-size: 0.65em;
  vertical-align: super;
  color: var(--text-muted);
}
.nav-logo:hover { color: var(--text); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.8rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.25s, opacity 0.25s;
}
.nav-hamburger.offen span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.offen span:nth-child(2) { opacity: 0; }
.nav-hamburger.offen span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(51,102,153,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 20% 80%, rgba(204,0,0,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-tagline {
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

.hero-titel {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 14vw, 9rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.hero-tm {
  font-size: 0.28em;
  vertical-align: super;
  color: var(--text-muted);
}

.hero-icons {
  display: flex;
  gap: 1.2rem;
  font-size: 1.6rem;
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
}

.hero-untertitel {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 3rem;
}

.hero-cta {
  display: inline-block;
  padding: 0.75rem 2.2rem;
  border: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  background: transparent;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  border-radius: var(--radius);
}
.hero-cta:hover {
  border-color: var(--a);
  background: rgba(221,170,0,0.08);
  color: var(--a);
}

/* ── MAIN ── */
main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem 5rem;
}

section {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}
section:first-child { border-top: none; }

/* ── PAGE HEADER ── */
.page-header {
  padding: 4rem 0 2.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}
.page-header h1 {
  font-size: clamp(2rem, 6vw, 3.2rem);
  letter-spacing: 0.06em;
}

/* ── DEVAGAR BLOCK ── */
.devagar-block {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  margin: 2rem 0;
}
.devagar-snail {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  opacity: 0.7;
}
.devagar-block p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 0.5rem;
}
.devagar-block em {
  display: block;
  margin-top: 1rem;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  text-transform: lowercase;
}

/* ── ANKER GRID ── */
.anker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 2rem 0;
}

.anker-card {
  background: var(--surface);
  padding: 1.6rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: background 0.2s;
}
.anker-card:hover {
  background: #1A1A1A;
}

.anker-sym {
  font-size: 1.5rem;
  line-height: 1;
  display: block;
}
.anker-name {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
}
.anker-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  display: block;
}

/* ── LEGAL (Impressum / Datenschutz) ── */
.legal h2 {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
}
.legal p { font-size: 0.9rem; color: var(--text-muted); }
.legal a { color: var(--p); }
.legal a:hover { color: var(--text); }

/* ── TM MARK ── */
.tm {
  font-size: 0.55em;
  vertical-align: super;
  color: var(--text-muted);
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
  margin-top: 4rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
.footer-inner p {
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}
.footer-inner a {
  color: var(--text-muted);
  margin: 0 0.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-inner a:hover { color: var(--text); }

/* ── RESPONSIVE ── */
@media (max-width: 680px) {
  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: #0A0A0A;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    z-index: 99;
  }
  .nav-links.offen { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.9rem 1.5rem;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
  }

  .hero { min-height: 75vh; }

  .anker-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
}

@media (max-width: 400px) {
  .anker-grid {
    grid-template-columns: 1fr;
  }
}

/* ── ACCESSIBILITY ── */
:focus-visible {
  outline: 2px solid var(--a);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}
