/* =========================================================
   Work and Shop – Platzhalter / Coming Soon
   Design-Tokens übernommen aus app/assets/sass/_vars.scss
   ========================================================= */

:root {
  --white: #fbf7f6;
  --black: #333333;
  --light-black: #949494;
  --darker-black: #1f1f1f;
  --red: #ff5324;
  --blue: #2396fb;
  --orange: #f6a32d;

  --font-primary: "Noto Sans", sans-serif;
  --font-title: "Zalando Sans Expanded", "Noto Sans", sans-serif;

  --page-width: 124rem;
}

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

*:focus-visible {
  outline: 0.2rem solid var(--black);
  outline-offset: 0.3rem;
}

html {
  font-size: 10px; /* 1rem = 10px, wie im Nuxt-Projekt */
}

body {
  font-family: var(--font-primary);
  background-color: var(--white);
  color: var(--black);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

p {
  line-height: 1.7em;
  font-size: 1.6rem;
  text-wrap: pretty;
}

img {
  max-width: 100%;
  display: block;
}

.inner {
  width: 100%;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---------------------------------------------------------
   Hintergrund – statische Annäherung an den ColorBends-Hero
   --------------------------------------------------------- */
.glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
  background:
    radial-gradient(60rem 40rem at 20% 12%, rgba(255, 83, 36, 0.55), transparent 65%),
    radial-gradient(55rem 38rem at 78% 8%, rgba(35, 150, 251, 0.35), transparent 62%),
    radial-gradient(70rem 45rem at 50% 0%, rgba(246, 163, 45, 0.35), transparent 70%);
}

.glow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(251, 247, 246, 0) 0%,
    rgba(251, 247, 246, 0.85) 55%,
    rgba(251, 247, 246, 1) 100%
  );
}

/* ---------------------------------------------------------
   Buttons
   --------------------------------------------------------- */
.btn {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.75rem 1rem;
  border: none;
  cursor: pointer;
  transition: all 250ms ease-in-out;
}

.btn .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.4rem;
  height: 2.4rem;
  flex: 0 0 2.4rem;
  transition: all 250ms ease-in-out;
}

.btn .icon svg {
  width: 1.8rem;
  height: 1.8rem;
}

/* Primary – dunkler Block mit hellem Icon-Quadrat */
.btn--primary {
  background-color: var(--black);
  color: #fff;
}

.btn--primary .icon {
  background-color: #fff;
  color: var(--black);
}

.btn--primary:hover {
  background-color: #fff;
  color: var(--black);
}

.btn--primary:hover .icon {
  background-color: var(--black);
  color: #fff;
}

/* Primary auf dunklem Grund */
.btn--light {
  background-color: #fff;
  color: var(--black);
}

.btn--light .icon {
  background-color: var(--black);
  color: #fff;
}

.btn--light:hover {
  background-color: var(--black);
  color: #fff;
}

.btn--light:hover .icon {
  background-color: #fff;
  color: var(--black);
}

/* Ghost – nur Text + Pfeil */
.btn--ghost {
  background-color: transparent;
  color: var(--black);
  gap: 1rem;
  padding: 0.75rem 0;
}

.btn--ghost .icon {
  background-color: transparent;
}

.btn--ghost:hover .icon {
  transform: translate(0.3rem, -0.3rem);
}

/* ---------------------------------------------------------
   Header
   --------------------------------------------------------- */
.siteHeader {
  position: relative;
  z-index: 10;
  padding: 3rem 0;
}

.siteHeader .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.siteHeader .logo img {
  width: 18rem;
  height: auto;
}

/* ---------------------------------------------------------
   Hero
   --------------------------------------------------------- */
.hero {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6rem 0 10rem;
}

.hero .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pill {
  background: rgba(255, 255, 255, 0.75);
  border: 0.1rem solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 0.4rem 3rem rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5.4px);
  -webkit-backdrop-filter: blur(5.4px);
  border-radius: 2rem;
  padding: 0.5rem 2rem;
  margin-bottom: 2rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--black);
}

.hero h1 {
  font-family: var(--font-title);
  font-size: 7.2rem;
  font-weight: 700;
  line-height: 1.12;
  color: var(--black);
}

.lead {
  font-size: 1.8rem;
  max-width: 80rem;
  margin-top: 4rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 5rem;
}

/* ---------------------------------------------------------
   Kontaktblock
   --------------------------------------------------------- */
.contact {
  font-style: normal;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6rem;
  margin-top: 9rem;
  padding-top: 5rem;
  border-top: 0.1rem solid rgba(148, 148, 148, 0.3);
  width: 100%;
}

.contact .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.5rem;
  line-height: 1.6;
}

.contact .label {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--light-black);
  margin-bottom: 0.4rem;
}

.contact .muted {
  color: var(--light-black);
  font-size: 1.4rem;
}

.contact a {
  color: var(--black);
  text-decoration: none;
  border-bottom: 0.1rem solid transparent;
  transition: border-color 250ms ease-in-out;
}

.contact a:hover {
  border-bottom-color: var(--black);
}

/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */
.siteFooter {
  position: relative;
  z-index: 10;
  background-color: var(--darker-black);
  padding: 3rem 0;
}

.siteFooter .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.siteFooter span {
  font-size: 1.4rem;
  color: var(--light-black);
}

.siteFooter ul {
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.siteFooter a {
  font-size: 1.4rem;
  color: var(--light-black);
  text-decoration: none;
  transition: color 250ms ease-in-out;
}

.siteFooter a:hover {
  color: #fff;
}

/* ---------------------------------------------------------
   Rechtstexte (Impressum / Datenschutz)
   --------------------------------------------------------- */
.legal {
  position: relative;
  z-index: 10;
  flex: 1;
  padding: 4rem 0 12rem;
}

.legal .inner {
  max-width: 80rem;
}

.legal h1 {
  font-family: var(--font-title);
  font-size: 4.6rem;
  font-weight: 700;
  margin-bottom: 4rem;
}

.legal h2 {
  font-family: var(--font-title);
  font-size: 2.1rem;
  font-weight: 600;
  margin: 4rem 0 1.5rem;
}

.legal h3 {
  font-family: var(--font-title);
  font-size: 1.7rem;
  font-weight: 600;
  margin: 2.5rem 0 1rem;
}

.legal p,
.legal li {
  font-size: 1.6rem;
  line-height: 1.7;
}

.legal p {
  margin-bottom: 1.5rem;
}

.legal h2 + p,
.legal h3 + p {
  margin-top: 0;
}

.legal p + ul,
.legal p + ol {
  margin-top: -0.5rem;
}

.legal ul,
.legal ol {
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.legal .toc {
  gap: 0.8rem;
}

.legal .toc a {
  text-decoration: none;
  border-bottom: 0.1rem solid var(--light-black);
}

.legal .toc a:hover {
  border-bottom-color: var(--black);
}

.legal a {
  color: var(--black);
}

.legal .back {
  display: inline-block;
  margin-bottom: 3rem;
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
}

.legal .back:hover {
  text-decoration: underline;
}

/* ---------------------------------------------------------
   Responsive
   --------------------------------------------------------- */
@media (max-width: 900px) {
  .hero h1 {
    font-size: 4.8rem;
  }

  .hero {
    padding: 4rem 0 8rem;
  }

  .contact {
    gap: 4rem;
    margin-top: 7rem;
  }

  .legal h1 {
    font-size: 3.4rem;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 3.6rem;
  }

  .lead {
    font-size: 1.6rem;
    margin-top: 3rem;
  }

  .actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }

  .actions .btn {
    justify-content: space-between;
  }

  .actions .btn--ghost {
    justify-content: center;
  }

  .contact {
    flex-direction: column;
    gap: 3rem;
  }

  .siteHeader .inner {
    flex-direction: column;
    gap: 1.5rem;
  }

  .siteFooter .inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .siteFooter ul {
    gap: 2rem;
  }
}
