/* =========================================
   Moonfern Atelier – Reset & Grunddesign
   ========================================= */

/* Schriften einbinden */
@font-face {
  font-family: "LuthonSouthardScript";
  src:
    url("/assets/fonts/LuthonSouthardScript.woff2") format("woff2"),
    url("/assets/fonts/LuthonSouthardScript.woff") format("woff"),
    url("/assets/fonts/LuthonSouthardScript.otf") format("opentype");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "LuthonSouthardSerif";
  src:
    url("/assets/fonts/LuthonSouthardSerif.woff2") format("woff2"),
    url("/assets/fonts/LuthonSouthardSerif.woff") format("woff"),
    url("/assets/fonts/LuthonSouthardSerif.otf") format("opentype");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

/* Farben & Basis */
:root {
  --bg: #031612;
  --ink: #f5ecda;
  --accent: #d1a664;
  --muted: #cbb796;
  --line: #5d5b4a;
  --card-bg: rgba(3, 22, 18, 0.8);
}

/* Reset light */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: "LuthonSouthardSerif", Georgia, "Times New Roman", serif;
  line-height: 1.6;
}

/* Generelle Links */
a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Layout-Helfer */
.wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =========================================
   Header mit Logo & Brand
   ========================================= */

.site-header {
  border-bottom: 1px solid var(--line);
  padding: 32px 0 20px;
  text-align: center;
}

.brand-logo img {
  height: 110px;   /* Logo-Größe Desktop */
  width: auto;
  display: block;
  margin: 0 auto 12px;
}

.brand-title {
  font-family: "LuthonSouthardScript", cursive;
  font-size: 52px;
  color: var(--ink);
  margin: 0 0 6px;
}

.brand-tagline {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 10px;
}

/* Navigation & Sprachumschaltung */
.main-nav {
  font-size: 14px;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.main-nav a {
  margin: 0 6px;
}

.lang-toggle {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  font-size: 13px;
}

.lang-toggle span {
  color: var(--muted);
  margin-right: 4px;
}

.lang-btn {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  padding: 2px 8px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 12px;
}

.lang-btn.active {
  background: var(--accent);
  color: #031612;
}

/* =========================================
   Hauptinhalt / Karte
   ========================================= */

.main-card {
  margin: 32px auto 48px;
  padding: 28px 26px 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--card-bg);
}

.main-card h1 {
  font-family: "LuthonSouthardSerif", Georgia, "Times New Roman", serif;
  font-size: 28px;
  margin-top: 0;
  margin-bottom: 20px;
}

/* Abschnitts-Überschriften in Script */
.section-title {
  font-family: "LuthonSouthardScript", cursive;
  font-size: 22px;
  color: var(--accent);
  margin-top: 24px;
  margin-bottom: 10px;
}

/* Listen für Modelle */
.model-list {
  padding-left: 1.2rem;
  margin-top: 4px;
}

.model-list li {
  margin-bottom: 6px;
}

/* Button E-Mail */
.button {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 22px;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: var(--accent);
  color: #031612;
  font-size: 14px;
}

.button:hover {
  text-decoration: none;
  filter: brightness(1.05);
}

/* =========================================
   Footer
   ========================================= */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 18px 0 24px;
  font-size: 11px;
  text-align: center;
  color: var(--muted);
}

.site-footer a {
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--accent);
}

/* =========================================
   Responsive
   ========================================= */

@media (max-width: 768px) {
  .brand-logo img {
    height: 90px;
    margin-bottom: 8px;
  }

  .brand-title {
    font-size: 40px;
  }

  .main-card {
    margin-top: 24px;
    padding: 22px 18px 24px;
  }

  .main-card h1 {
    font-size: 24px;
  }

  .section-title {
    font-size: 20px;
  }
}
