/* ============================================
   BuschiCrafting – Hauptstylesheet
   Schriften: Playfair Display (Serif) + Nunito (Sans-serif)
   Farben: Orange & Lila, verspielt & warm
============================================ */

:root {
  --purple:        #6B3FA0;
  --purple-dark:   #4a2870;
  --purple-light:  #C8A8E9;
  --purple-pale:   #F2EBF9;
  --orange:        #D4622A;
  --orange-light:  #F5A87A;
  --orange-pale:   #FFF3E8;
  --bg:            #FEFAF7;
  --text:          #2D2026;
  --text-muted:    #7A6A76;
  --white:         #FFFFFF;
  --shadow:        0 4px 24px rgba(107, 63, 160, 0.12);
  --shadow-card:   0 2px 16px rgba(107, 63, 160, 0.08);
  --radius:        18px;
  --radius-sm:     10px;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Nunito', system-ui, sans-serif;
}

/* ── Reset & Basis ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.75;
  font-size: 1rem;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Typografie ─────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
p  { margin-bottom: 1rem; color: var(--text-muted); }
p:last-child { margin-bottom: 0; }

/* ── Hilfsklassen ───────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
}

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(212, 98, 42, 0.35);
}
.btn--primary:hover {
  background: #bf5522;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(212, 98, 42, 0.42);
}
.btn--white {
  background: var(--white);
  color: var(--purple);
}
.btn--white:hover {
  background: var(--purple-pale);
  transform: translateY(-2px);
}
.btn--nav {
  background: var(--purple);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
}
.btn--nav:hover { background: var(--purple-dark); }

/* ── Header / Navigation ────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(254, 250, 247, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(107, 63, 160, 0.09);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
  gap: 2rem;
}
.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--purple);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav__links a:not(.btn) {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  transition: color 0.2s;
}
.nav__links a:not(.btn):hover { color: var(--purple); }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Hero ────────────────────────────────────── */
.hero {
  position: relative;
  padding: 7rem 0 5rem;
  background: linear-gradient(140deg, var(--orange-pale) 0%, var(--purple-pale) 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 450px; height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,168,233,0.45) 0%, transparent 70%);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,168,122,0.38) 0%, transparent 70%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.hero__eyebrow {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 1rem;
}
.hero__title { margin-bottom: 1.25rem; }
.hero__title em {
  font-style: italic;
  color: var(--orange);
}
.hero__subtitle {
  font-size: 1.15rem;
  margin-bottom: 2.25rem;
  max-width: 520px;
  color: var(--text-muted);
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(107,63,160,0.15);
  border-radius: 50px;
  padding: 0.35rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  backdrop-filter: blur(6px);
}

/* ── Über mich ───────────────────────────────── */
.about {
  padding: 6rem 0;
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about__text h2 { margin-bottom: 1.25rem; }
.about__text p { font-size: 1.05rem; }
.about__img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
}

/* ── Produkte ────────────────────────────────── */
.products {
  padding: 5rem 0 6rem;
  background-color: var(--purple-pale);
}
.products__header { margin-bottom: 2.5rem; }
.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--orange-light);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:nth-child(2) { border-top-color: var(--purple-light); }
.product-card:nth-child(3) { border-top-color: var(--orange); }
.product-card:nth-child(4) { border-top-color: var(--purple); }
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 36px rgba(107, 63, 160, 0.14);
}
.product-card__icon { font-size: 2.5rem; margin-bottom: 1rem; }
.product-card h3 { color: var(--text); }
.product-card p  { font-size: 0.95rem; }

/* ── CTA-Banner ──────────────────────────────── */
.cta-banner {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  text-align: center;
}
.cta-banner__inner { max-width: 600px; }
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p  { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 2rem; }

/* ── Footer ──────────────────────────────────── */
.footer {
  padding: 2.75rem 0;
  background-color: var(--text);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.footer__brand {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}
.footer__nav { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.footer__nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--orange-light); }
.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

/* ── Galerie ─────────────────────────────────── */
.gallery {
  padding: 5rem 0 6rem;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.gallery__item {
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--purple-pale);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery__item:hover img {
  transform: scale(1.05);
}
.gallery__cta {
  text-align: center;
}

/* ── Rechtliche Seiten ───────────────────────── */
.legal-hero {
  padding: 4rem 0 2.5rem;
  background: linear-gradient(140deg, var(--orange-pale) 0%, var(--purple-pale) 100%);
}
.legal-hero h1 { font-size: clamp(2rem, 5vw, 3rem); }
.legal-content { padding: 3.5rem 0 6rem; }
.legal-content__inner { max-width: 760px; }
.legal-content h2 {
  font-size: 1.45rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--purple);
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--purple-pale);
}
.legal-content h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}
.legal-content p,
.legal-content li { color: var(--text); font-size: 0.97rem; }
.legal-content ul,
.legal-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content li  { margin-bottom: 0.4rem; }
.legal-content a   { color: var(--purple); text-decoration: underline; }
.legal-content blockquote {
  border-left: 3px solid var(--purple-light);
  margin: 1.25rem 0;
  padding: 1.25rem 1.5rem;
  background: var(--purple-pale);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.93rem;
}
.legal-content blockquote p { margin-bottom: 0.75rem; color: var(--text); }

/* Platzhalter-Markierung */
.placeholder {
  display: inline-block;
  background: var(--orange-pale);
  border: 1px dashed var(--orange);
  border-radius: 5px;
  padding: 0 0.4em;
  color: var(--orange);
  font-weight: 700;
  font-style: italic;
  font-size: 0.95em;
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .nav__links {
    display: none;
    position: absolute;
    top: 4.5rem; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: var(--shadow);
    border-bottom: 1px solid var(--purple-pale);
  }
  .nav__links.open { display: flex; }

  .hero { padding: 4.5rem 0 3.5rem; }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about__img-placeholder { aspect-ratio: 16 / 9; }

  .products__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .products__grid { grid-template-columns: 1fr; }
  .hero__badges { gap: 0.4rem; }
}
