:root {
  --bg: #fff4f8;
  --bg-soft: #fde7ef;
  --pink: #d41468;
  --pink-soft: #f7b3cf;
  --berry: #4b092d;
  --berry-dark: #210015;
  --text: #2b1b24;
  --muted: #7c6470;
  --white: #ffffff;
  --border: rgba(212, 20, 104, 0.18);

  --font-head: Georgia, "Times New Roman", serif;
  --font-body: Arial, Helvetica, sans-serif;

  --shadow: 0 18px 40px rgba(75, 9, 45, 0.16);
  --radius: 22px;
}

/* Reset */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: #180612;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.logo img {
  width: 150px;
  height: auto;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 999px;
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--berry);
  border-radius: 2px;
}

.main-nav {
  position: absolute;
  top: 72px;
  left: 20px;
  right: 20px;
  display: none;
  flex-direction: column;
  padding: 18px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.main-nav.is-open {
  display: flex;
}

.main-nav a {
  padding: 12px 4px;
  color: var(--berry);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}

.main-nav a:last-child {
  border-bottom: 0;
}

/* Basics */

section {
  padding: 64px 22px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.center {
  text-align: center;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--berry);
}

h1,
h2 {
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.6rem, 12vw, 4.8rem);
}

h1 span,
h2 span {
  display: block;
  color: var(--pink);
  font-style: italic;
}

h2 {
  font-size: clamp(2.1rem, 8vw, 3.4rem);
  text-align: center;
}

h3 {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

p {
  margin: 0;
}

.btn-primary,
.btn-secondary,
.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.btn-primary {
  color: var(--white);
  background: var(--pink);
  box-shadow: 0 12px 24px rgba(212, 20, 104, 0.26);
}

.btn-secondary {
  color: var(--pink);
  border: 1px solid var(--pink);
  background: transparent;
}

.btn-light {
  color: var(--berry);
  background: var(--white);
}

/* Hero */

.hero {
  /* min-height: calc(100vh - 72px);*/
  display: flex;
  align-items: center;
  padding: 72px 22px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(33, 0, 21, 0.92), rgba(33, 0, 21, 0.55), rgba(33, 0, 21, 0.25)),
    url("../img/mobile-kopf.jpg") center / cover no-repeat;
}

.hero-content {
  max-width: 520px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 22px;
}

.hero h1 span {
  color: var(--pink);
}

.hero-text {
  max-width: 420px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
}

/* Intro */

.intro {
  background: var(--white);
}

.intro-card {
  max-width: 720px;
  margin: 0 auto 38px;
  text-align: center;
}

.intro-card h2 {
  margin-bottom: 18px;
}

.intro-card p {
  color: var(--muted);
}

.feature-grid {
  display: grid;
  gap: 18px;
}

.feature {
  padding: 26px 22px;
  text-align: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.feature span {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--pink);
  background: var(--bg-soft);
  font-size: 1.5rem;
}

.feature h3 {
  margin-bottom: 8px;
}

.feature p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Products */

.product-slider {
  position: relative;
  margin-bottom: 34px;
}

.product-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 22px;
  scrollbar-width: none;
}

.product-track::-webkit-scrollbar {
  display: none;
}

.product-card {
  flex: 0 0 100%;
  scroll-snap-align: start;
  overflow: hidden;
  text-align: left;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(75, 9, 45, 0.12);
}

.slider-btn {
  position: absolute;
  top: 40%;
  z-index: 5;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--pink);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(75, 9, 45, 0.25);
}

.slider-prev {
  left: -8px;
}

.slider-next {
  right: -8px;
}

@media (min-width: 768px) {
  .product-card {
    flex-basis: calc((100% - 22px) / 2);
  }
}

@media (min-width: 1100px) {
  .product-card {
    flex-basis: calc((100% - 44px) / 3);
  }
}

.slider-btn:disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* About */

.about-section {
  padding: 0;
  background: var(--berry-dark);
  color: var(--white);
}

.about-content {
  padding: 64px 22px;
}

.about-content h2 {
  color: var(--white);
  text-align: left;
  margin-bottom: 22px;
}

.about-content h2 span {
  color: var(--pink-soft);
}

.about-content p:not(.eyebrow) {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
}

.about-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

/* Contact */

.contact-section {
  text-align: center;
  background: var(--white);
}

.contact-section h2 {
  margin-bottom: 18px;
}

.contact-section p {
  max-width: 520px;
  margin: 0 auto 28px;
  color: var(--muted);
}

.contact-buttons {
  display: grid;
  gap: 12px;
}

/* Footer */

.site-footer {
  padding: 42px 22px;
  color: rgba(255, 255, 255, 0.76);
  background: #180612;
  text-align: center;
}

.site-footer img {
  width: 150px;
  margin: 0 auto 18px;
}

.site-footer p {
  margin-bottom: 24px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 20px;
}

.site-footer a {
  font-size: 0.82rem;
}

/* Tablet */

@media (min-width: 768px) {
  section {
    padding: 86px 44px;
  }

  .site-header {
    padding: 18px 44px;
  }

  .logo img {
    width: 180px;
  }

  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .contact-buttons {
    max-width: 480px;
    margin: 0 auto;
    grid-template-columns: repeat(2, 1fr);
  }

  .about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .about-content {
    padding: 86px 44px;
  }

  .about-image img {
    height: 100%;
    min-height: 500px;
  }
}

/* Desktop */

@media (min-width: 1100px) {
  .menu-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 36px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }

  .main-nav a {
    padding: 0;
    border: 0;
  }

  .hero {
    padding: 110px 8vw;
  }

  .intro,
  .products-section,
  .contact-section {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-content {
    padding: 110px 8vw;
  }
}



/* ==========================================
   DIE GESCHICHTE HINTER UNIKATGLÜCK
========================================== */

.story-page {
  background: var(--bg);
}

/* Hero */

.story-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 22px;
  background:
    linear-gradient(
      rgba(33, 0, 21, 0.75),
      rgba(33, 0, 21, 0.75)
    ),
    url("../img/story-hero.jpg") center center / cover;
}

.story-hero-content {
  max-width: 800px;
}

.story-hero h1 {
  color: #fff;
  margin-bottom: 20px;
}

.story-hero h1 span {
  color: var(--pink-soft);
}

.story-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
}

/* Intro */

.story-intro {
  max-width: 1100px;
  margin: auto;
}

.story-quote {
  margin-bottom: 50px;
  text-align: center;
}

.story-quote p {
  max-width: 800px;
  margin: auto;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.3;
  color: var(--berry);
  font-family: var(--font-head);
  font-style: italic;
}

.story-text {
  max-width: 760px;
  margin: auto;
}

.story-text p {
  margin-bottom: 24px;
  font-size: 1.1rem;
  color: var(--text);
}

/* Dunkler Bereich */

.story-dark {
  background: var(--berry-dark);
  color: white;
}

.story-dark-content {
  margin-bottom: 40px;
}

.story-dark h2 {
  text-align: left;
  color: white;
  margin-bottom: 25px;
}

.story-dark h2 span {
  color: var(--pink-soft);
}

.story-dark p {
  color: rgba(255,255,255,0.85);
}

.story-dark-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Fakten */

.facts-section {
  text-align: center;
}

.facts-section h2 {
  margin-bottom: 50px;
}

.facts-grid {
  display: grid;
  gap: 24px;
}

.fact-card {
  background: white;
  padding: 35px 25px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 10px 25px rgba(75,9,45,0.08);
}

.fact-card span {
  display: block;
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.fact-card h3 {
  margin-bottom: 12px;
}

.fact-card p {
  color: var(--muted);
}

/* Emotionaler Bereich */

.story-emotion {
  background: linear-gradient(
    135deg,
    var(--berry-dark),
    var(--berry)
  );

  color: white;
  text-align: center;
}

.story-emotion h2 {
  color: white;
  margin-bottom: 30px;
}

.story-emotion h2 span {
  color: var(--pink-soft);
}

.story-emotion p {
  max-width: 750px;
  margin: auto;
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
}

/* Kontakt */

.story-contact {
  text-align: center;
  background: white;
}

.story-contact h2 {
  margin-bottom: 20px;
}

.story-contact p {
  max-width: 700px;
  margin: 0 auto 30px;
  color: var(--muted);
}

/* Tablet */

@media (min-width: 768px) {

  .facts-grid {
    grid-template-columns: repeat(3, 1fr);
  }

}

/* Desktop */

@media (min-width: 1100px) {

  .story-dark {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;

    padding-left: 8vw;
    padding-right: 8vw;
  }

  .story-dark-content {
    margin-bottom: 0;
  }

  .story-hero {
    min-height: 80vh;
  }

}

/* Persönliche Notizzettel */

.notes-section {
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(212, 20, 104, 0.14), transparent 32%),
    var(--bg);
}

.notes-section h2 {
  margin-bottom: 48px;
}

.notes-grid {
  display: grid;
  gap: 28px;
}

.note-card {
  position: relative;
  padding: 34px 26px 30px;
  background: #fff;
  border: 1px solid rgba(212, 20, 104, 0.18);
  border-radius: 10px;
  box-shadow: 0 18px 35px rgba(75, 9, 45, 0.12);
  text-align: left;
}

.note-card::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  width: 82px;
  height: 24px;
  transform: translateX(-50%) rotate(-2deg);
  background: rgba(255, 220, 235, 0.78);
  border-radius: 3px;
  box-shadow: 0 5px 12px rgba(75, 9, 45, 0.08);
}

.note-card span {
  display: block;
  margin-bottom: 14px;
  font-size: 2rem;
}

.note-card h3 {
  margin-bottom: 16px;
  color: var(--berry);
  font-family: var(--font-head);
  font-size: 1.45rem;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: none;
}

.note-card p {
  margin-bottom: 14px;
  color: var(--muted);
}

.note-card p:last-child {
  margin-bottom: 0;
}

.note-one {
  transform: rotate(-1.5deg);
}

.note-two {
  transform: rotate(1deg);
}

.note-three {
  transform: rotate(-0.8deg);
}

@media (min-width: 768px) {
  .notes-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }

  .note-two {
    margin-top: 26px;
  }
}