/* ===========================================================
   langstrecken.de – Startseiten-Redesign
   Lokal gehostete Google Fonts (Big Shoulders Display, Work Sans)
   Ablage: /fonts/big-shoulders-display/*.woff2, /fonts/work-sans/*.woff2
   =========================================================== */

@font-face{
  font-family: "Big Shoulders Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/big-shoulders-display/big-shoulders-display-latin-600-normal.woff2") format("woff2");
}
@font-face{
  font-family: "Big Shoulders Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/big-shoulders-display/big-shoulders-display-latin-700-normal.woff2") format("woff2");
}
@font-face{
  font-family: "Big Shoulders Display";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/fonts/big-shoulders-display/big-shoulders-display-latin-800-normal.woff2") format("woff2");
}
@font-face{
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/work-sans/work-sans-latin-400-normal.woff2") format("woff2");
}
@font-face{
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/work-sans/work-sans-latin-500-normal.woff2") format("woff2");
}
@font-face{
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/work-sans/work-sans-latin-600-normal.woff2") format("woff2");
}

:root{
  --paper: #f1ecdf;
  --paper-deep: #e9e2cf;
  --ink: #1c2b22;
  --trail: #3e5c46;
  --trail-deep: #2c4433;
  --route: #b8442e;
  --route-deep: #963722;
  --contour: #c9bea0;
  --card-bg: #faf7ee;
  --font-display: "Big Shoulders Display", sans-serif;
  --font-body: "Work Sans", system-ui, sans-serif;
}

/* Body-Typo nur für die neuen Bereiche, um Bootstrap-Defaults woanders auf der Seite nicht zu brechen */
.ls-page{
  font-family: var(--font-body);
  color: var(--ink);
}

/* ---------- Hero ---------- */
.ls-hero{
  position: relative;
  overflow: hidden;
  background: var(--paper);
  border-bottom: 1px solid var(--contour);
  background-image:
    repeating-radial-gradient(circle at 82% 15%, transparent 0, transparent 26px, rgba(62,92,70,0.08) 27px, rgba(62,92,70,0.08) 28px, transparent 29px, transparent 54px),
    repeating-radial-gradient(circle at 82% 15%, transparent 0, transparent 54px, rgba(62,92,70,0.06) 55px, rgba(62,92,70,0.06) 56px, transparent 57px, transparent 80px);
}
.ls-hero-inner{
  padding: 56px 0 48px;
  max-width: 620px;
}
.ls-hero-eyebrow{
  font-size: 14px;
  color: var(--trail-deep);
  margin: 0 0 10px;
  font-weight: 500;
}
.ls-hero h1{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5.5vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  color: var(--ink);
}
.ls-hero p{
  font-size: 17px;
  color: #33453a;
  margin: 0 0 26px;
  max-width: 46ch;
}
.ls-hero-ctas{ display:flex; gap: 12px; flex-wrap: wrap; }

.ls-btn{
  display:inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15.5px;
  padding: 12px 24px;
  border-radius: 3px;
  text-decoration: none;
  border: 2px solid transparent;
}
.ls-btn-primary{ background: var(--route); color: #fbf6ec; }
.ls-btn-primary:hover{ background: var(--route-deep); color: #fbf6ec; }
.ls-btn-secondary{ border-color: var(--trail); color: var(--trail-deep); }
.ls-btn-secondary:hover{ background: rgba(62,92,70,0.08); color: var(--trail-deep); }

/* ---------- Anzeige: Banner unter dem Hero ---------- */
.ls-ad-banner{
  border-bottom: 1px solid var(--contour);
  background: var(--paper-deep);
  padding: 12px 0;
}
.ls-ad-banner .ls-ad-inner{
  display:flex;
  align-items:center;
  gap: 14px;
}
.ls-ad-label{
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7a7261;
  flex-shrink: 0;
}
.ls-ad-slot{
  flex: 1;
  min-height: 90px;
  display:flex;
  align-items:center;
  justify-content:center;
  color: #7a7261;
  font-size: 13px;
}

/* ---------- Karten ---------- */
.ls-offer{ padding: 48px 0 64px; }

.ls-card{
  background: var(--card-bg);
  border: 1px solid var(--contour);
  border-radius: 6px;
  overflow: hidden;
  height: 100%;
}
.ls-card img{
  width: 100%;
  height: 190px;
  object-fit: cover;
  display:block;
  border-bottom: 1px solid var(--contour);
}
.ls-card-body{ padding: 24px 24px 26px; }
.ls-card-kicker{
  font-size: 13px;
  color: var(--route);
  font-weight: 600;
  margin: 0 0 6px;
}
.ls-card h2{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  margin: 0 0 10px;
  color: var(--ink);
}
.ls-card-text{
  font-size: 15px;
  color: #3c4a41;
  margin-bottom: 18px;
}
.ls-card-lead{
  font-size: 15.5px;
  color: #3c4a41;
  margin: 0 0 16px;
}
.ls-card-body .ls-btn{
  font-size: 14.5px;
  padding: 10px 20px;
  margin-top: 4px;
}
.ls-card-text .ls-feature-list{
  list-style: none;
  padding: 0;
  margin: 0;
}
.ls-card-text .ls-feature-list li{
  padding-left: 18px;
  position: relative;
  margin-bottom: 9px;
}
.ls-card-text .ls-feature-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  background: var(--trail);
  border-radius: 50%;
}
.ls-card-text .ls-feature-list a{ color: var(--trail-deep); }

/* Sidebar-Anzeige neben den Karten */
.ls-ad-sidebar{
  border: 1px solid var(--contour);
  border-radius: 6px;
  background: var(--paper-deep);
  padding: 14px;
  height: 100%;
}
.ls-ad-sidebar .ls-ad-slot{ min-height: 300px; }

@media (min-width: 992px){
  .ls-ad-sidebar{ position: sticky; top: 20px; }
}
