@import url("../fonts/fonts.css");

:root {
  --pink: #f6596d;
  --mint: #b5d8bf;
  --rose: #e0ada8;
  --violet: #8a8bfa;
  --dark: #2e2e38;
  --text: #33333b;
  --maxw: 1100px;
  --col: 640px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

h1,
h2,
h3 {
  font-family: "Poiret One", "Montserrat", sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0 0 0.4em;
  line-height: 1.25;
}

h1 {
  font-size: clamp(2rem, 4.6vw, 3.1rem);
}

h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
}

p {
  margin: 0 0 1em;
}

a {
  color: inherit;
}

/* ---------- Header ---------- */

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 22px 24px;
}

.header--solid {
  position: static;
}

.header__logo img {
  height: 62px;
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.28));
}

.header__logo {
  display: inline-block;
}

/* ---------- Sektionen ---------- */

.section {
  padding: 64px 24px;
}

.section--tight {
  padding: 40px 24px;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
}

.col {
  max-width: var(--col);
  margin: 0 auto;
}

.center {
  text-align: center;
}

.pink {
  background: var(--pink);
  color: #fff;
}

.mint {
  background: var(--mint);
  color: var(--text);
}

.rose {
  background: var(--rose);
  color: #fff;
}

.violet {
  background: var(--violet);
  color: #fff;
}

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

.hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 140px 24px 70px;
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.hero__inner p {
  font-size: 1.05rem;
  margin: 0;
}

.pagehero {
  width: 100%;
  height: clamp(240px, 42vw, 460px);
  object-fit: cover;
}

/* ---------- Produkt-Kacheln (Startseite) ---------- */

.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.tile {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.25s ease;
}

.tile:hover {
  transform: translateY(-5px);
}

.tile img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
}

.tile__label {
  font-family: "Poiret One", sans-serif;
  font-size: 1.3rem;
  text-align: center;
  margin-top: 14px;
  line-height: 1.35;
}

/* ---------- Bildreihen / Galerie ---------- */

.row3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.row3 img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: top;
  border-radius: 4px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.gallery img {
  width: 100%;
  height: clamp(170px, 23vw, 320px);
  object-fit: cover;
}

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

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
}

.split img {
  width: auto;
  max-width: 100%;
  max-height: 440px;
  margin: 0 auto;
  border-radius: 4px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  background: #fff;
  color: #1c1c22;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

/* ---------- Kaufbereich ---------- */

.buybox {
  background: #fff;
  color: var(--text);
  border-radius: 10px;
  padding: 34px 34px 30px;
  max-width: 760px;
  margin: 46px auto 0;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.16);
  text-align: center;
}

.buybox img {
  width: 210px;
  margin: 0 auto 18px;
  border-radius: 4px;
}

.buybox h3 {
  margin-bottom: 0.15em;
}

.buybox__sub {
  font-family: "Poiret One", sans-serif;
  font-size: 1.15rem;
  margin: 0 0 14px;
}

.buybox p {
  font-size: 0.95rem;
}

.buybox .price {
  font-family: "Poiret One", sans-serif;
  font-size: 2.1rem;
  margin: 18px 0 20px;
  color: #1c1c22;
}

.buybox .note {
  font-style: italic;
  margin-bottom: 6px;
}

/* Karten-Raster für die ThemenSets */

.setgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: var(--maxw);
  margin: 40px auto 0;
}

.setcard {
  background: #fff;
  color: var(--text);
  border-radius: 10px;
  padding: 22px 22px 26px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  text-align: center;
}

.setcard img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 14px;
}

.setcard p {
  font-size: 0.9rem;
}

.setcard .lead {
  font-style: italic;
}

.setcard .price {
  font-family: "Poiret One", sans-serif;
  font-size: 1.8rem;
  margin: auto 0 16px;
  padding-top: 12px;
  color: #1c1c22;
}

/* ---------- Hinweisblock ---------- */

.hinweis {
  background: #fff;
  color: var(--text);
  padding: 60px 24px;
}

.hinweis .col {
  font-size: 0.9rem;
  line-height: 1.7;
}

.hinweis h3 {
  margin-bottom: 0.6em;
}

.hinweis .fein {
  color: #6b6b76;
  font-size: 0.82rem;
  margin-top: 26px;
}

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

.footer {
  background: var(--dark);
  color: #fff;
  padding: 52px 24px 40px;
  text-align: center;
}

.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 22px;
}

.footer__logo img.tropfen {
  height: 66px;
}

.footer__logo img.schrift {
  height: 40px;
}

.footer__links {
  font-size: 0.88rem;
}

.footer__links a {
  color: #fff;
  text-decoration: none;
  margin: 0 12px;
  opacity: 0.85;
}

.footer__links a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* ---------- Zurück-Link ---------- */

.back {
  display: inline-block;
  font-size: 0.88rem;
  text-decoration: none;
  opacity: 0.9;
  margin-bottom: 8px;
}

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

/* ---------- Listen ---------- */

ul.clean {
  margin: 0 0 1em;
  padding-left: 20px;
}

ul.clean li {
  margin-bottom: 0.5em;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .tiles,
  .row3,
  .setgrid {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .section {
    padding: 48px 20px;
  }

  .buybox {
    padding: 26px 20px 24px;
  }

  .header__logo img {
    height: 48px;
  }
}

/* ---------- Rechtstexte ---------- */

.legal {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 24px 70px;
}

.legal h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 0.6em;
}

.legal h2 {
  font-size: 1.35rem;
  margin-top: 1.8em;
}

.legal h3 {
  font-size: 1.1rem;
  margin-top: 1.4em;
}

.legal p,
.legal li {
  font-size: 0.95rem;
}

.legal ul {
  padding-left: 20px;
}

.legal li {
  margin-bottom: 0.5em;
}

.legal .stand {
  margin-top: 34px;
  font-size: 0.82rem;
  color: #6b6b76;
}

.header--legal {
  background: var(--dark);
}

/* Hochformat-Grafiken als Banner: vollständig zeigen statt beschneiden */

.pagehero--contain {
  object-fit: cover;
  object-position: center 38%;
  background: #fe8163;
  height: clamp(220px, 28vw, 340px);
}
