/* ════════════════════════════════════════════════════════════
   sale.css — Landingpage StreetKids (Verkauf)
   ════════════════════════════════════════════════════════════ */

/* ── FONTS ── */
@font-face { font-family: "Baloo 2"; font-style: normal; font-weight: 400; font-display: swap; src: url("https://www.vhc.eu/images-fonts/fonts/baloo-2-v23-latin/baloo-2-v23-latin-regular.woff2") format("woff2"); }
@font-face { font-family: "Baloo 2"; font-style: normal; font-weight: 600; font-display: swap; src: url("https://www.vhc.eu/images-fonts/fonts/baloo-2-v23-latin/baloo-2-v23-latin-600.woff2") format("woff2"); }
@font-face { font-family: "Baloo 2"; font-style: normal; font-weight: 700; font-display: swap; src: url("https://www.vhc.eu/images-fonts/fonts/baloo-2-v23-latin/baloo-2-v23-latin-700.woff2") format("woff2"); }
@font-face { font-family: "Baloo 2"; font-style: normal; font-weight: 800; font-display: swap; src: url("https://www.vhc.eu/images-fonts/fonts/baloo-2-v23-latin/baloo-2-v23-latin-800.woff2") format("woff2"); }
@font-face { font-family: "Lato"; font-style: normal; font-weight: 400; font-display: swap; src: url("https://www.vhc.eu/images-fonts/fonts/lato-v25-latin/lato-v25-latin-regular.woff2") format("woff2"); }
@font-face { font-family: "Lato"; font-style: normal; font-weight: 700; font-display: swap; src: url("https://www.vhc.eu/images-fonts/fonts/lato-v25-latin/lato-v25-latin-700.woff2") format("woff2"); }

/* ── VARIABLEN (SK-Design) ── */
:root {
  --cream:     #fdf6e3;
  --sand:      #e8d5b0;
  --orange:    #d4691e;
  --rust:      #a84219;
  --green:     #4a7c59;
  --brown:     #5c3d2e;
  --sky:       #87ceeb;
  --text:      #2c1810;
  --muted:     #8b6b5a;
}

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

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

/* ════════════════════════════════════════════════════════════
   HEADER — Himmel + Gras (SK-Signatur)
   ════════════════════════════════════════════════════════════ */
header {
  background: linear-gradient(180deg, var(--sky) 0%, #b8e4f5 60%, var(--cream) 100%);
  padding: 24px 32px 34px;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--sand);
}

/* Wolken */
header::before {
  content: '☁  ☁   ☁';
  position: absolute;
  top: 12px; left: 5%;
  font-size: 1.3rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 28px;
  pointer-events: none;
  animation: cloud-drift 80s linear infinite;
}

/* Grasboden */
header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 14px;
  background: var(--green);
  clip-path: polygon(
    0% 100%, 0% 60%, 2% 20%, 4% 60%, 6% 10%, 8% 55%,
    10% 100%, 12% 50%, 14% 15%, 16% 60%, 18% 5%, 20% 55%,
    22% 100%, 24% 45%, 26% 20%, 28% 65%, 30% 10%, 32% 50%,
    34% 100%, 36% 55%, 38% 15%, 40% 60%, 42% 5%, 44% 55%,
    46% 100%, 48% 45%, 50% 20%, 52% 65%, 54% 10%, 56% 50%,
    58% 100%, 60% 55%, 62% 15%, 64% 60%, 66% 5%, 68% 55%,
    70% 100%, 72% 45%, 74% 20%, 76% 65%, 78% 10%, 80% 50%,
    82% 100%, 84% 55%, 86% 15%, 88% 60%, 90% 5%, 92% 55%,
    94% 100%, 96% 50%, 98% 20%, 100% 60%, 100% 100%
  );
}

@keyframes cloud-drift {
  0%   { transform: translateX(0); opacity: 0.85; }
  50%  { opacity: 1; }
  100% { transform: translateX(60px); opacity: 0.85; }
}

.header-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-bottom: 18px;
}

.logo {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  color: var(--brown);
  line-height: 1;
  font-size: 3.4rem;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.1);
  letter-spacing: 1px;
  display: inline-block;
}
.logo em { color: var(--orange); font-style: normal; }

/* ════════════════════════════════════════════════════════════
   MAIN
   ════════════════════════════════════════════════════════════ */
main {
  flex: 1;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 56px 32px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ════════════════════════════════════════════════════════════
   HERO — schwingendes Holzschild
   ════════════════════════════════════════════════════════════ */
.hero {
  width: 100%;
  max-width: 440px;
  margin-bottom: 54px;
  perspective: 800px;
}

.sign {
  width: 100%;
  height: auto;
  display: block;
  transform-origin: 50% 0%;
  animation: sign-swing 4.2s ease-in-out infinite;
  filter: drop-shadow(4px 8px 10px rgba(92,61,46,0.25));
}

@keyframes sign-swing {
  0%, 100% { transform: rotate(-2.2deg); }
  50%      { transform: rotate(2.2deg); }
}

/* ════════════════════════════════════════════════════════════
   INFO-TEXT (zweisprachig)
   ════════════════════════════════════════════════════════════ */
.info {
  text-align: center;
  margin-bottom: 40px;
  max-width: 640px;
}
.info .lead {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 16px;
}
.info .lead strong {
  color: var(--rust);
  font-weight: 700;
}
.info .lead-en {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
  font-style: italic;
}
.info .lead-en strong {
  color: var(--brown);
  font-weight: 700;
  font-style: normal;
}

/* ════════════════════════════════════════════════════════════
   DOMAIN CARDS
   ════════════════════════════════════════════════════════════ */
.domains {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  width: 100%;
  max-width: 640px;
}

.domain-card {
  background: #fff;
  border: 3px solid var(--sand);
  border-radius: 16px;
  padding: 30px 24px 26px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s, background 0.22s;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.domain-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: 0 12px 26px rgba(92,61,46,0.18);
}

.domain-card.current {
  border-color: var(--green);
  background: #fffbf0;
}
.domain-card.current::before {
  content: 'Du bist hier';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-family: 'Baloo 2', cursive;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 12px;
  white-space: nowrap;
  box-shadow: 0 3px 8px rgba(74,124,89,0.3);
}

.domain-name {
  font-family: 'Baloo 2', cursive;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--brown);
  line-height: 1.1;
  transition: color 0.2s;
}
.domain-name em {
  color: var(--orange);
  font-style: normal;
}

.domain-cta {
  font-size: 0.82rem;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-top: 4px;
}

.domain-sub {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
}

.domain-card:hover .domain-name {
  color: var(--orange);
}
.domain-card:hover .domain-name em {
  color: var(--rust);
}

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
footer {
  padding: 22px 32px;
  text-align: center;
  color: var(--muted);
  font-size: 0.72rem;
  border-top: 1px solid var(--sand);
  background: rgba(232,213,176,0.2);
}

.footer-info {
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  header { padding: 20px 20px 30px; }
  .logo { font-size: 2.5rem; }

  main { padding: 40px 20px 32px; }

  .hero { max-width: 320px; margin-bottom: 40px; }

  .info { margin-bottom: 32px; }
  .info .lead { font-size: 1rem; }
  .info .lead-en { font-size: 0.84rem; }

  .domains {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .domain-card { padding: 24px 20px 22px; }
  .domain-name { font-size: 1.5rem; }
  .domain-cta { font-size: 0.78rem; }

  footer { padding: 16px 20px; font-size: 0.62rem; }
  .footer-info { font-size: 0.58rem; }
}

/* Reduce motion — Schwingen/Wolken aus */
@media (prefers-reduced-motion: reduce) {
  .sign { animation: none; }
  header::before { animation: none; }
}
