/* =================================================
   Landesvater Stickerei
   Traditionell & etwas eleganter
   Eigenständiges CSS – ohne Framework
   ================================================= */

/* ---------- Reset & Basis ---------- */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background-color: #f2efe8;         /* warmes Papier */
  color: #1c1c1c;                    /* klares Schwarz */
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Container ---------- */

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---------- Typografie ---------- */

h1, h2, h3 {
  font-weight: 600;
  color: #243223;                    /* Waldgrün */
  margin-top: 0;
}

h1 {
  font-size: 1.9rem;
  line-height: 1.3;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

p {
  margin: 0 0 1rem 0;
}

ul, ol {
  margin: 0 0 1rem 1.2rem;
}

a {
  color: #243223;
  text-decoration: underline;
}

a:hover {
  opacity: 0.8;
}

/* ---------- Sections ---------- */

section {
  padding: 1rem 0;
  border-bottom: 1px solid #e0d8c5;
  scroll-margin-top: 60px;
}

/* ---------- Navigation ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #243223;
  border-bottom: 3px solid #c2b280;   /* Goldlinie */
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
}

.brand {
  color: #f6f4ee;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-sub {
  font-size: 0.8rem;
  opacity: 0.8;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #f6f4ee;
  text-decoration: none;
  font-size: 0.95rem;
}

.nav-links a:hover {
  text-decoration: underline;
}

.cta-nav {
  background-color: #c2b280;
  color: #243223 !important;
  padding: 0.35rem 0.8rem;
  border-radius: 6px;
  font-weight: 600;
}

/* Hamburger */

.hamburger {
  width: 60px;
  height: 42px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 8px;
  color: #ffffff;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Mobile Menu */

.mobile-menu {
  background-color: #1f2b1f;
}

.mobile-menu-inner a {
  display: block;
  padding: 0.9rem 1.25rem;
  color: #f6f4ee;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu-inner a:hover {
  background-color: rgba(255,255,255,0.05);
}

/* ---------- Hero ---------- */

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 1 / 1;      /* quadratisch */
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #d2c8b3;
}

.hero-content {
  background-color: #fbf9f3;
  border: 1px solid #ded5c3;
  border-radius: 12px;
  padding: 1.5rem;
}

.subtitle {
  font-style: italic;
  margin-bottom: 0.75rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.badge {
  background-color: #f6f3ea;
  border: 1px solid #d8cfbc;
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  font-size: 0.85rem;
}

/* Buttons */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 0.65rem 1.1rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.btn-primary {
  background-color: #243223;
  color: #ffffff;
}

.btn-secondary {
  background-color: #c2b280;
  color: #243223;
}

/* ---------- Varianten ---------- */

.variant-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.variant-card {
  background-color: #fbf9f3;
  border: 1px solid #ded5c3;
  border-radius: 12px;
  padding: 1rem;
}

.variant-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #d2c8b3;
  margin-bottom: 0.75rem;
}

/* ---------- Ablauf ---------- */

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.25rem;
}

.step {
  background-color: #fbf9f3;
  border: 1px solid #ded5c3;
  border-radius: 12px;
  padding: 1rem;
}

/* ---------- CTA ---------- */

.cta-section {
  background-color: #f7f4ed;
  border: 2px solid #d4c9b5;
  border-radius: 12px;
  padding: 2rem 1.5rem;
}

.cta-buttons {
  margin-top: 1rem;
}

/* ---------- Kontakt ---------- */

.contact-card {
  background-color: #fbf9f3;
  border: 1px solid #ded5c3;
  border-radius: 12px;
  padding: 1rem;
}

/* ---------- Footer ---------- */

.footer {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid #e0d8c5;
  margin-top: 2rem;
  font-size: 0.9rem;
}

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

@media (min-width: 900px) {

  .nav-links {
    display: flex;
  }

  .hamburger {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 2.5rem;
  }

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

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

@media (min-width: 1200px) {

  .variant-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
details {
  margin-bottom: 10px;
}
.cta-list {
  list-style: disc;
  margin: 1rem 0 1rem 1.4rem;
}

.cta-note {
  margin-top: 1.2rem;
  font-style: italic;
}
.variant-options,
.garn-options {
  margin: 0.75rem 0 1rem 1.2rem;
}

.garn-section {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background-color: #fbf9f3;
  border: 1px solid #ded5c3;
  border-radius: 12px;
}

.garn-note {
  margin-top: 0.75rem;
  font-style: italic;
}

.variant-structure {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

.variant-block {
  background-color: #fbf9f3;
  border: 1px solid #ded5c3;
  border-radius: 12px;
  padding: 1rem 1.2rem;
}

.variant-block h3 {
  margin-bottom: 0.6rem;
}

.variant-info {
  margin-top: 1rem;
  font-style: italic;
}

.garn-choices {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
}

.garn-badge {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid #d8cfbc;
}

.garn-badge.gold {
  background-color: #e6d39a;
  color: #243223;
}

.garn-badge.silver {
  background-color: #dcdcdc;
  color: #243223;
}

/* Desktop */
@media (min-width: 900px) {
  .variant-structure {
    grid-template-columns: repeat(2, 1fr);
  }
}
html {
  scroll-behavior: smooth;
}

.variant-card img {
  margin-bottom: 0.5rem;
}

.variant-card h4 {
  margin: 0.3rem 0 0.4rem 0;
  font-size: 1rem;
}




.couleur-tags {
  margin: 2.5rem 0;
}

.couleur-tags h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  opacity: 0.85;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
}

.tag-cloud a {
  font-size: 0.9rem;
  text-decoration: none;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.2);
  color: inherit;
  opacity: 0.85;
  transition: all 0.15s ease;
}

.tag-cloud a:hover {
  opacity: 1;
  border-color: currentColor;
}




/* ===============================
   Sticky Trust Badge
   =============================== */

.trust-badge {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #fbf9f3;
  border: 1px solid #d8cfbc;
  border-radius: 14px;
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #243223;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  z-index: 999;
  transition: all 0.25s ease;
}

.trust-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.trust-stars {
  color: #c2b280;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.trust-text {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  line-height: 1.1;
}

.trust-text strong {
  font-size: 1rem;
}

/* Mobile Anpassung */

@media (max-width: 600px) {

  .trust-badge {
    bottom: 15px;
    right: 15px;
    padding: 0.6rem 0.8rem;
  }

  .trust-text span {
    display: none; /* reduziert visuelle Breite */
  }
}
