/* LOKALE SCHRIFTARTEN */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/outfit.woff2') format('woff2'),
       url('outfit.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/outfit-600.woff2') format('woff2'),
       url('outfit-600.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/cormorant-garamond.woff2') format('woff2'),
       url('cormorant-garamond.woff2') format('woff2');
  font-display: swap;
}

:root {
  --navy: #1a2a3a;
  --navy-light: #2a3f55;
  --peach: #d4a574;
  --peach-light: #e8c9a8;
  --cream: #f7f1e9;
  --white: #ffffff;
  --text: #2c3e50;
  --text-light: #5a6a7a;
}

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

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header */
header {
  background: var(--navy);
  padding: 1.2rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
header .wrap {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
header .brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
}
header nav {
  display: flex;
  gap: 1.5rem;
}
header nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}
header nav a:hover {
  color: var(--peach);
}

/* Main Content Container */
main {
  flex: 1;
  padding: 3rem 1.5rem;
}
article {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(26, 42, 58, 0.05);
}

/* Typography */
h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--navy);
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid rgba(212, 165, 116, 0.3);
  padding-bottom: 0.3rem;
}
h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  color: var(--navy-light);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text);
}

ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
li {
  margin-bottom: 0.5rem;
}

a {
  color: var(--navy);
  text-decoration: underline;
}
a:hover {
  color: var(--peach);
}

.note {
  background: rgba(212, 165, 116, 0.15);
  border-left: 4px solid var(--peach);
  padding: 1rem 1.2rem;
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

/* Footer */
footer {
  background: #111b26;
  color: rgba(255, 255, 255, 0.7);
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
}
footer a {
  color: var(--peach);
  text-decoration: none;
  margin: 0 0.5rem;
}
footer a:hover {
  text-decoration: underline;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
  header .wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  article {
    padding: 1.5rem;
  }
}