@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Oswald:wght@300;400;500;600;700&display=swap');

:root {
  --paper: #f4efdf;
  --paper-light: #fbf8ea;
  --ink: #070707;
  --forest: #304925;
  --forest-dark: #203519;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background: #ddd8cf;
  color: var(--ink);
  font-family: Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site {
  position: relative;
  max-width: 1440px;
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.55), transparent 24rem),
    radial-gradient(circle at 78% 16%, rgba(0,0,0,.035), transparent 17rem),
    radial-gradient(circle at 32% 82%, rgba(0,0,0,.025), transparent 20rem),
    linear-gradient(90deg, rgba(0,0,0,.03) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0,0,0,.022) 1px, transparent 1px),
    var(--paper);
  background-size: auto, auto, auto, 34px 34px, 34px 34px, auto;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}

.site::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(0,0,0,.22) 0 1px, transparent 1.7px),
    radial-gradient(circle, rgba(255,255,255,.85) 0 1px, transparent 1.8px),
    linear-gradient(90deg, transparent, rgba(0,0,0,.075), transparent);
  background-size: 27px 25px, 39px 34px, 100% 100%;
  background-position: 0 0, 14px 10px, 0 0;
  mix-blend-mode: multiply;
  opacity: .34;
}

.rough-top {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 60;
  height: 40px;
  background-image: url('assets/strich.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.header {
  position: relative;
  z-index: 70; /* höher als rough-top (60), damit Header-Inhalte im Vordergrund stehen */
  padding: 48px 68px 12px; /* Seitliches Padding an Inhaltsboxen (68px) angepasst */
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, transparent 40px, var(--paper) 40px);
}

.logo {
  display: block;
  text-decoration: none;
  position: relative;
  z-index: 75;
}

.logo-img {
  height: 84px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.logo:hover .logo-img {
  transform: scale(1.04) rotate(-1.5deg);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a {
  color: var(--ink);
  text-decoration: none;
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.btn {
  border: 0;
  border-radius: 2px;
  background: var(--forest);
  color: var(--paper-light);
  padding: 12px 25px;
  font-family: "Oswald", sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 2px 0 rgba(0,0,0,.35);
  cursor: pointer;
}

.btn:hover { background: var(--forest-dark); transform: translateY(-1px); }
.btn.small { padding: 9px 18px; font-size: 14px; }

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.mobile-nav { display: none; }

.mobile-nav.is-open {
  display: grid;
  gap: 0;
  position: relative;
  z-index: 40;
  margin: 0 38px 18px;
  border: 3px solid var(--ink);
  background: var(--paper-light);
}

.mobile-nav a {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(0,0,0,.25);
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
}

.mobile-nav .btn { margin: 14px; }

.hero {
  position: relative;
  min-height: 440px; /* Präzise ausbalanciert, um Abstand nach unten zu optimieren und Textüberlappungen zu verhindern */
  padding: 20px 48px 16px; /* Harmonischer unterer Abstand */
  background: linear-gradient(to bottom, var(--paper) calc(100% - 45px), transparent calc(100% - 45px));
}

.hero-divider {
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 12px; /* höher positioniert, damit Bäume überlappen */
  height: 40px;
  z-index: 15;
  pointer-events: none;
  filter: drop-shadow(0 4px 3px rgba(0,0,0,0.035)); /* dezenterer Schatten */
}

.hero-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-divider svg path:last-child {
  stroke: rgba(0, 0, 0, 0.14); /* dezentere, graue Trennlinie */
  stroke-width: 1.6px;
}

.hero-inner {
  position: relative;
  z-index: 25; /* höher als hero-trees (20) und hero-divider (15), damit das runde Haus-Bild und die Inhalte im Vordergrund stehen */
  width: min(960px, 85vw);
  margin: 0 auto;
  text-align: center;
}

.stamp-title {
  margin: 16px auto 43px; /* Unten um 20px vergrößert, um Text und Button gemeinsam nach unten zu verschieben */
  padding: 18px 24px 13px;
  width: fit-content;
  max-width: 960px;
  border: 6px solid var(--ink);
  background: var(--paper-light);
  transform: rotate(-2.4deg);
  box-shadow: 6px 6px 0 rgba(0,0,0,.06);
}

.stamp-title h1 {
  margin: 0;
  max-width: 900px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(34px, 4.6vw, 66px);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.title-line {
  display: block;
}

.title-bolt {
  display: inline-block;
  vertical-align: middle;
  height: 0.88em;
  width: auto;
  color: var(--ink);
  filter: drop-shadow(1px 1px 0 rgba(0,0,0,.08));
}

.title-bolt.left {
  margin-right: 8px;
  transform: translateY(-3px) rotate(-14deg) scale(0.9);
}

.title-bolt.right {
  margin-left: 8px;
  transform: translateY(-3px) rotate(14deg) scale(0.9);
}

@media (min-width: 641px) {
  .title-line {
    white-space: nowrap;
  }
}

.hero p {
  margin: 0 auto 23px;
  font-size: 17px;
  font-weight: 600;
}

.campfire-container {
  position: absolute;
  right: -310px; /* angepasst von -360px für kleinere Kreisgröße (410px) */
  top: -30px; /* nach oben verschoben, um Platz nach unten zu schaffen */
  width: 410px; /* verkleinert von 460px */
  height: 410px; /* verkleinert von 460px */
}

.campfire-photo {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 50%;
  border: 8px solid var(--paper);
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
  z-index: 2;
}

.campfire-photo img,
.offer-image img,
.premium-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.campfire-tree {
  position: absolute;
  pointer-events: none;
  z-index: 3;
}

.campfire-tree.left {
  left: -85px;
  bottom: -15px;
  width: 205px; /* proportional verkleinert */
  height: auto;
}

.campfire-tree.right {
  right: -55px;
  bottom: -15px;
  width: 140px; /* proportional verkleinert */
  height: auto;
}

.hero-trees {
  position: absolute;
  z-index: 20; /* höher als hero-divider (15), um das verbindende Element zu sein */
  bottom: 0;
  width: 380px;
  height: auto;
  pointer-events: none;
}

.hero-trees.left {
  left: -6px;
  width: 460px; /* noch breiter und damit höher */
  bottom: -60px; /* Nochmals um 50px nach unten verschoben */
}
.hero-trees.right {
  right: -6px;
}

.offers {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  grid-template-rows: 220px 310px;
  gap: 24px;
  padding: 0 68px 42px;
  margin-top: 25px;
}

.offer-card {
  position: relative;
  min-height: 185px;
  overflow: hidden;
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 rgba(0,0,0,.08);
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.25s ease;
}

.offer-card:hover {
  transform: translateY(-2px) scale(1.005);
  box-shadow: 8px 8px 0 rgba(0,0,0,.12);
}

.offer-card:nth-of-type(1) {
  border-radius: 16px 24px 18px 22px/22px 16px 24px 18px;
}
.offer-card:nth-of-type(2) {
  border-radius: 24px 18px 22px 16px/18px 24px 16px 22px;
}
.offer-card:nth-of-type(3) {
  border-radius: 18px 22px 16px 24px/24px 16px 22px 18px;
}
.offer-card:nth-of-type(4) {
  border-radius: 22px 16px 24px 18px/16px 22px 18px 24px;
}
.offer-card:nth-of-type(5) {
  border-radius: 16px 24px 18px 22px/24px 18px 22px 16px;
}

.offer-card.large {
  grid-column: span 2;
}

.offer-card.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
}

.offer-card.dark { background-color: var(--ink); color: var(--paper-light); }
.offer-card.light { background-color: var(--paper-light); color: var(--ink); }

.offer-image.split {
  height: 100%;
  overflow: hidden;
  border-right: 3px solid var(--ink);
}
.offer-image.top { height: 140px; border-bottom: 3px solid var(--ink); }

.offer-content {
  position: relative;
  z-index: 2;
  padding: 25px 28px;
}

@media (min-width: 1025px) {
  /* Compact content styling for Row 1 to fit the 220px height exactly as in the mockup */
  .offer-card:nth-of-type(1) .offer-content,
  .offer-card:nth-of-type(2) .offer-content {
    padding: 20px 24px;
  }
  .offer-card:nth-of-type(1) .offer-content ul,
  .offer-card:nth-of-type(2) .offer-content ul {
    font-size: 14.5px;
    margin: 10px 0 14px;
  }
}

.offer-content h2,
.booking h2,
.booking h3,
.package h3,
.availability h3 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.offer-content h2 { font-size: 40px; line-height: 1.0; }
.offer-card:not(.large) .offer-content h2 { font-size: 28px; }

.offer-content ul,
.package ul {
  margin: 18px 0 18px;
  padding: 0;
  list-style: none;
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
  text-transform: uppercase;
}

.offer-content li::before,
.package li::before { content: "• "; }

/* absolute positioned organic pine trees growing between cards */
.offers-tree {
  position: absolute;
  pointer-events: none;
  z-index: 10;
  height: auto;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.15));
}
.offers-tree.left-bottom {
  left: -20px;
  bottom: -65px;
  width: 160px;
}
.offers-tree.middle-gap {
  left: 68%;
  bottom: -55px;
  width: 120px;
}
.offers-tree.right-bottom {
  right: -35px;
  bottom: -55px;
  width: 185px;
}

/* Hand-drawn SVG doodles styling */
.card-doodle,
.offer-doodle {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

/* Bus doodle in Card 1 */
.bus-doodle {
  right: 25px;
  bottom: 25px;
  width: 105px;
  height: auto;
  opacity: 0.9;
  color: var(--paper-light);
}

/* Kids walking doodle in Card 2 */
.kids-doodle {
  right: 20px;
  bottom: 0;
  width: 135px;
  height: auto;
  opacity: 0.95;
  color: var(--ink);
}

/* Owl doodle in Card 2 */
.owl-doodle {
  top: 15px;
  right: 15px;
  width: 90px;
  height: auto;
  opacity: 0.95;
  transform: rotate(5deg);
  color: var(--ink);
}

/* Gear doodle in Card 4 */
.gear-doodle {
  top: 25px;
  right: 25px;
  width: 58px;
  height: auto;
  opacity: 0.9;
  color: var(--paper-light);
}

/* Compass doodle in Card 4 */
.compass-doodle {
  bottom: 18px;
  right: 25px;
  width: 68px;
  height: auto;
  opacity: 0.9;
  color: var(--paper-light);
}

/* Yoga leaf doodle in Card 5 */
.yoga-doodle {
  right: 25px;
  bottom: 18px;
  width: 78px;
  height: auto;
  opacity: 0.9;
  color: var(--ink);
}

.booking {
  position: relative;
  z-index: 6;
  padding: 0 68px 42px;
  margin-top: 25px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 22px;
  position: relative;
  z-index: 15;
}

.section-heading span {
  width: 65px;
  height: 3px;
  background: var(--ink);
  transform: rotate(-6deg);
}

.section-heading h2 {
  font-size: 43px;
  line-height: 1;
  text-align: center;
  /* Premium paper knockout outline (halo effect) in the background color to guarantee 100% legibility */
  text-shadow: 
    -3px -3px 0 var(--paper),  
     3px -3px 0 var(--paper),
    -3px  3px 0 var(--paper),
     3px  3px 0 var(--paper),
    -4px  0px 0 var(--paper),
     4px  0px 0 var(--paper),
     0px -4px 0 var(--paper),
     0px  4px 0 var(--paper),
     0 0 10px var(--paper);
}

.booking-grid {
  display: grid;
  grid-template-columns: .9fr 1fr .9fr;
  gap: 24px;
}

.package,
.availability {
  position: relative;
  min-height: 245px;
  border: 3px solid var(--ink);
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 5px 5px 0 rgba(0,0,0,.07);
}

.black-panel { padding: 27px; background: var(--ink); color: var(--paper-light); }
.premium-panel { color: var(--paper-light); background: var(--ink); }

.premium-panel > div {
  position: relative;
  z-index: 2;
  padding: 27px;
  min-height: 245px;
  background: rgba(0,0,0,.42);
}

.premium-panel img {
  position: absolute;
  inset: 0;
  opacity: .72;
}

.package-icon { width: 70px; height: 70px; margin-bottom: 15px; }
.package h3 { font-size: 37px; line-height: .92; }

.availability {
  background: var(--paper-light);
  padding: 22px;
  text-align: center;
}

.availability h3 { font-size: 24px; }

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin: 15px 0 18px;
  border-left: 1px solid rgba(0,0,0,.32);
  border-top: 1px solid rgba(0,0,0,.32);
  background: rgba(255,255,255,.16);
}

.calendar-grid b,
.calendar-grid i {
  min-height: 29px;
  border-right: 1px solid rgba(0,0,0,.25);
  border-bottom: 1px solid rgba(0,0,0,.25);
}

.calendar-grid b {
  display: grid;
  place-items: center;
  min-height: 26px;
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 0 95px 32px;
}

.benefits article {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}

.benefit-icon { width: 42px; height: 42px; }

.benefits h3 {
  margin: 0 0 3px;
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.benefits p { margin: 0; font-size: 12px; font-weight: 500; }

.footer {
  position: relative;
  z-index: 6;
  padding: 14px 68px 31px;
  text-align: center;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper-light);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--ink);
  text-decoration: none;
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.bottom-forest {
  pointer-events: none;
  position: absolute;
  z-index: 2;
  left: -18px;
  right: -18px;
  bottom: -10px;
  display: flex;
  justify-content: space-between;
  opacity: .98;
}

.bottom-forest .cluster {
  display: flex;
  align-items: end;
}

.bottom-forest .cluster.mirrored { transform: scaleX(-1); }

.bottom-forest .cluster svg {
  margin-left: -21px;
  color: var(--ink);
}

.icon {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: middle;
}

@media (max-width: 1024px) {
  .header { padding: 43px 38px 10px; }
  .logo-img {
    height: 70px;
  }
  .desktop-nav, .header > .btn { display: none; }
  .menu-button { display: block; }
  .hero { min-height: 440px; padding: 16px 34px 16px; }
  .hero-inner { width: min(840px, 86vw); }
  .stamp-title h1 { font-size: clamp(34px, 5.8vw, 54px); }
  .campfire-container { position: relative; top: auto; right: auto; width: 320px; height: 320px; margin: 28px auto 0; }
  .campfire-photo { width: 100%; height: 100%; }
  .campfire-tree.left { left: -65px; bottom: -12px; width: 160px; }
  .campfire-tree.right { right: -45px; bottom: -15px; width: 110px; }
  .hero-trees { width: 320px; bottom: 8px; }
  .hero-trees.left { left: -54px; width: 390px; bottom: -60px; }
  .hero-trees.right { right: -54px; }
  .offers { grid-template-columns: 1fr 1fr; grid-template-rows: auto; grid-auto-rows: minmax(185px, auto); padding: 0 38px 36px; gap: 18px; }
  .offers-tree { display: none; }
  .offer-card.large { grid-column: span 1; }
  .offer-card.split { grid-template-columns: 0.9fr 1.1fr; }
  .offer-content h2 { font-size: 34px; line-height: 1.0; }
  .offer-card:not(.large) .offer-content h2 { font-size: 28px; }
  .owl-doodle { width: 80px; }
  .kids-doodle { width: 110px; }
  .bus-doodle { width: 85px; }
  .gear-doodle { width: 50px; }
  .compass-doodle { width: 58px; }
  .yoga-doodle { width: 68px; }
  .booking { padding: 0 38px 36px; }
  .booking-grid { grid-template-columns: .85fr 1fr .85fr; gap: 18px; }
  .benefits { padding: 0 52px 30px; gap: 16px; }
}

@media (max-width: 640px) {
  .rough-top { height: 32px; }
  .header { padding: 38px 20px 7px; background: linear-gradient(to bottom, transparent 32px, var(--paper) 32px); }
  .logo-img {
    height: 58px;
  }
  .hero { min-height: 320px; padding: 10px 18px 12px; background: linear-gradient(to bottom, var(--paper) calc(100% - 35px), transparent calc(100% - 35px)); }
  .hero-divider { height: 24px; bottom: 16px; }
  .hero-inner { width: 100%; }
  .stamp-title { border-width: 4px; padding: 13px 13px 9px; margin-top: 12px; margin-bottom: 35px; transform: rotate(-1.5deg); }
  .stamp-title h1 { max-width: 320px; font-size: 26px; line-height: .95; }
  .hero p { max-width: 260px; margin-bottom: 15px; font-size: 13px; }
  .hero .btn { padding: 9px 17px; font-size: 13px; }
  .campfire-container { width: 220px; height: 220px; margin-top: 20px; }
  .campfire-photo { border-width: 5px; }
  .campfire-tree.left { left: -45px; bottom: -10px; width: 110px; }
  .campfire-tree.right { right: -30px; bottom: -10px; width: 75px; }
  .hero-trees { bottom: 46px; width: 210px; }
  .hero-trees.left { left: -58px; width: 260px; bottom: -50px; }
  .hero-trees.right { right: -58px; }
  .hero-bolt { width: 38px; height: 72px; }
  .bolt-a { left: 6%; top: 108px; }
  .bolt-b { right: 9%; top: 95px; }
  .bolt-c { right: 17%; top: 78px; }
  .offers { display: flex; flex-direction: column; gap: 11px; padding: 0 20px 24px; margin-top: 9px; }
  .offers-tree { display: none; }
  .card-doodle { display: none; }
  .offer-card, .offer-card.large, .offer-card.split { min-height: 92px; display: grid; grid-template-columns: 116px 1fr; border-width: 2px; }
  .offer-card:nth-of-type(1),
  .offer-card:nth-of-type(2),
  .offer-card:nth-of-type(3),
  .offer-card:nth-of-type(4),
  .offer-card:nth-of-type(5) {
    border-radius: 8px 12px 9px 11px/11px 9px 12px 8px;
  }
  .offer-card.no-image { grid-template-columns: 1fr; }
  .offer-image.split, .offer-image.top { height: 100%; min-height: 92px; border-right: 2px solid var(--ink); border-bottom: 0; }
  .offer-content { padding: 13px 14px; }
  .offer-content h2, .offer-card:not(.large) .offer-content h2 { font-size: 24px; line-height: .9; }
  .offer-content ul { display: none; }
  .offer-content .btn { margin-top: 8px; padding: 7px 11px; font-size: 11px; }
  .owl-doodle { width: 84px; height: auto; top: auto; bottom: -8px; right: 4px; opacity: .72; }
  .booking { padding: 0 20px 23px; }
  .section-heading h2 { font-size: 27px; white-space: nowrap; }
  .booking-grid { display: flex; flex-direction: column; gap: 11px; }
  .package, .availability, .premium-panel > div { min-height: auto; }
  .black-panel, .premium-panel > div, .availability { padding: 14px 16px; }
  .package, .premium-panel > div { display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 12px; }
  .package-icon { width: 38px; height: 38px; margin: 0; }
  .package h3 { font-size: 22px; }
  .package ul, .availability .calendar-grid { display: none; }
  .package .btn, .availability .btn { padding: 8px 12px; font-size: 12px; }
  .availability { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 12px; text-align: left; }
  .benefits { grid-template-columns: 1fr; gap: 0; padding: 0 20px 22px; }
  .benefits article { justify-content: flex-start; padding: 13px 0; border-top: 1px solid rgba(0,0,0,.23); }
  .footer { padding: 8px 20px 25px; }
  .footer-links { gap: 18px; }
}
