/* =========================================================
   TRUCK LOUNGE ECOPARK
   GLOBAL CUSTOM CSS
   ========================================================= */


/* =========================================================
   FONTS
   ========================================================= */

/* roboto-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v51-latin-regular.woff2') format('woff2');
}

/* roboto-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-v51-latin-700.woff2') format('woff2');
}

/* inter-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/inter-v20-latin-regular.woff2') format('woff2');
}

/* inter-600 - latin */
@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/inter-v20-latin-600.woff2') format('woff2');
}

/* inter-800 - latin */
@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/inter-v20-latin-800.woff2') format('woff2');
}


/* =========================================================
   ROOT COLORS
   ========================================================= */

:root {
  --tl-green: #466353;
  --tl-green-dark: #354b3f;
  --tl-green-light: #eef2ef;

  --tl-gray: #5b5b5b;
  --tl-gray-dark: #333333;
  --tl-gray-light: #f4f4f2;

  --tl-white: #ffffff;
  --tl-black: #1d1d1d;

  --tl-border: #ddddda;
}


/* =========================================================
   GLOBAL
   ========================================================= */

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--tl-gray);
  background: var(--tl-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p {
  margin-top: 0;
  margin-bottom: 1.4rem;
}

a {
  color: var(--tl-green);
  text-decoration: none;
  transition: all 0.25s ease;
}

a:hover,
a:focus {
  color: var(--tl-green-dark);
  text-decoration: none;
}


/* =========================================================
   HEADLINES
   ========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Inter', Arial, sans-serif;
  color: var(--tl-gray-dark);
  line-height: 1.15;
  margin-top: 0;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 800;
}

h2 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
}

h3 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 600;
}

h4 {
  font-size: 22px;
  font-weight: 600;
}

h5 {
  font-size: 19px;
  font-weight: 600;
}

h6 {
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}


/* =========================================================
   TEXT ELEMENTS
   ========================================================= */

.lead {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.6;
  color: var(--tl-gray);
}

.text-green {
  color: var(--tl-green) !important;
}

.text-gray {
  color: var(--tl-gray) !important;
}

.text-dark {
  color: var(--tl-gray-dark) !important;
}

.text-light {
  color: var(--tl-white) !important;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--tl-green);
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn,
.sppb-btn {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  padding: 15px 28px;
  border-radius: 4px;
  border: 2px solid transparent;
  text-transform: none;
  letter-spacing: 0.01em;
  box-shadow: none;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.btn:hover,
.btn:focus,
.sppb-btn:hover,
.sppb-btn:focus {
  transform: translateY(-2px);
  box-shadow: none;
}


/* PRIMARY BUTTON */

.btn-primary,
.sppb-btn-primary {
  background: var(--tl-green);
  border-color: var(--tl-green);
  color: var(--tl-white);
}

.btn-primary:hover,
.btn-primary:focus,
.sppb-btn-primary:hover,
.sppb-btn-primary:focus {
  background: var(--tl-green-dark);
  border-color: var(--tl-green-dark);
  color: var(--tl-white);
}


/* SECONDARY / OUTLINE BUTTON */

.btn-outline-primary,
.sppb-btn-outline-primary {
  background: transparent;
  border-color: var(--tl-green);
  color: var(--tl-green);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.sppb-btn-outline-primary:hover,
.sppb-btn-outline-primary:focus {
  background: var(--tl-green);
  border-color: var(--tl-green);
  color: var(--tl-white);
}


/* LIGHT BUTTON FOR DARK HERO */

.btn-light,
.sppb-btn-light {
  background: var(--tl-white);
  border-color: var(--tl-white);
  color: var(--tl-green);
}

.btn-light:hover,
.btn-light:focus,
.sppb-btn-light:hover,
.sppb-btn-light:focus {
  background: var(--tl-green-light);
  border-color: var(--tl-green-light);
  color: var(--tl-green-dark);
}


/* =========================================================
   HERO
   ========================================================= */

.truck-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  overflow: hidden;
}

/* Dunkles Overlay links, weich auslaufend nach rechts */
.truck-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 18, 14, 0.92) 0%,
    rgba(10, 18, 14, 0.82) 28%,
    rgba(10, 18, 14, 0.55) 52%,
    rgba(10, 18, 14, 0.18) 75%,
    rgba(10, 18, 14, 0.02) 100%
  );
  z-index: 0;
}

/* Inhalt über Overlay */
.truck-hero > .sppb-row-container,
.truck-hero > .container,
.truck-hero .sppb-row,
.truck-hero .sppb-column,
.truck-hero .sppb-column-addons {
  position: relative;
  z-index: 1;
}

/* Hero-Inhalt */
.truck-hero h1,
.truck-hero h2,
.truck-hero h3,
.truck-hero p {
  color: #fff;
}

.truck-hero h1 {
  max-width: 760px;
  font-family: 'Inter', Arial, sans-serif;
  font-size: clamp(32px, 4.6vw, 52px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.truck-hero .lead {
  max-width: 720px;
  font-size: 20px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

/* Logo im Hero */
.truck-hero-logo {
  display: block;
  width: min(430px, 78vw);
  height: auto;
  margin-bottom: 42px;
}

/* Button */
.truck-hero .sppb-btn {
  margin-top: 14px;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 3px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

  .truck-hero {
    min-height: 650px;
    background-position: 60% center;
  }

  .truck-hero::before {
    background: linear-gradient(
      90deg,
      rgba(10, 18, 14, 0.90) 0%,
      rgba(10, 18, 14, 0.76) 45%,
      rgba(10, 18, 14, 0.32) 75%,
      rgba(10, 18, 14, 0.08) 100%
    );
  }

  .truck-hero h1 {
    font-size: 46px;
  }

  .truck-hero-logo {
    width: 340px;
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

  .truck-hero {
    min-height: 720px;

    /* Bild nach rechts schieben:
       Schranke und Pförtnerhaus bleiben sichtbar */
    background-position: 68% center;

    align-items: flex-end;
    padding-top: 80px;
    padding-bottom: 55px;
  }

  /* Mobil stärker abdunkeln für Lesbarkeit */
  .truck-hero::before {
    background: linear-gradient(
      180deg,
      rgba(8, 14, 11, 0.38) 0%,
      rgba(8, 14, 11, 0.58) 30%,
      rgba(8, 14, 11, 0.82) 65%,
      rgba(8, 14, 11, 0.96) 100%
    );
  }

  .truck-hero h1 {
    font-size: 38px;
    line-height: 1.08;
    max-width: 100%;
  }

  .truck-hero .lead {
    font-size: 17px;
    line-height: 1.5;
    max-width: 100%;
  }

  .truck-hero-logo {
    width: 250px;
    margin-bottom: 34px;
  }

  .truck-hero .sppb-btn {
    width: auto;
    min-width: 220px;
  }
}

/* =========================================================
   SECTIONS
   ========================================================= */

.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-padding-small {
  padding-top: 70px;
  padding-bottom: 70px;
}

.section-light {
  background: var(--tl-gray-light);
}

.section-green {
  background: var(--tl-green);
  color: var(--tl-white);
}

.section-green h1,
.section-green h2,
.section-green h3,
.section-green h4,
.section-green h5,
.section-green h6,
.section-green p {
  color: var(--tl-white);
}


/* =========================================================
   CONTENT WIDTH
   ========================================================= */

.content-narrow {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.content-medium {
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
}


/* =========================================================
   FEATURE CARDS
   ========================================================= */

.tl-card {
  height: 100%;
  padding: 35px;
  background: var(--tl-white);
  border: 1px solid var(--tl-border);
  border-radius: 8px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.tl-card:hover {
  transform: translateY(-4px);
  border-color: rgba(70, 99, 83, 0.35);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.07);
}

.tl-card h3,
.tl-card h4 {
  margin-bottom: 14px;
}

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


/* =========================================================
   ICONS
   ========================================================= */

.tl-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--tl-green-light);
  color: var(--tl-green);
  font-size: 28px;
}


/* =========================================================
   PRICE / BOOKING BOX
   ========================================================= */

.booking-box {
  padding: 50px;
  background: var(--tl-green);
  color: var(--tl-white);
  border-radius: 10px;
}

.booking-box h2,
.booking-box h3,
.booking-box h4,
.booking-box p {
  color: var(--tl-white);
}

.booking-price {
  display: block;
  margin: 20px 0 30px;
  font-family: 'Inter', Arial, sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.1;
}

.booking-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}


/* =========================================================
   "SO FUNKTIONIERT'S" STEPS
   ========================================================= */

.tl-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--tl-green);
  color: var(--tl-white);
  font-family: 'Inter', Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
}


/* =========================================================
   LISTS
   ========================================================= */

.tl-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tl-checklist li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
}

.tl-checklist li::before {
  content: '?';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--tl-green);
  font-weight: 700;
}


/* =========================================================
   HEADER / NAVIGATION
   ========================================================= */

#sp-header {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.05);
}

.sp-megamenu-parent > li > a,
.sp-megamenu-parent > li > span {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--tl-gray-dark);
}

.sp-megamenu-parent > li.active > a,
.sp-megamenu-parent > li:hover > a {
  color: var(--tl-green);
}


/* =========================================================
   FOOTER
   ========================================================= */

#sp-footer {
  background: var(--tl-gray-dark);
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
}

#sp-footer a {
  color: var(--tl-white);
}

#sp-footer a:hover {
  color: #cfd8d2;
}


/* =========================================================
   FORM ELEMENTS
   ========================================================= */

input,
textarea,
select,
.form-control {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: var(--tl-gray-dark);
  border: 1px solid var(--tl-border);
  border-radius: 4px;
  padding: 12px 14px;
  background: var(--tl-white);
}

input:focus,
textarea:focus,
select:focus,
.form-control:focus {
  border-color: var(--tl-green);
  box-shadow: 0 0 0 3px rgba(70, 99, 83, 0.12);
  outline: none;
}


/* =========================================================
   SELECTION
   ========================================================= */

::selection {
  background: var(--tl-green);
  color: var(--tl-white);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 991px) {

  body {
    font-size: 16px;
  }

  .truck-hero {
    min-height: 680px;
  }

  .truck-hero::before {
    background: rgba(20, 28, 24, 0.68);
  }

  .section-padding {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .booking-box {
    padding: 35px;
  }
}


@media (max-width: 767px) {

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 26px;
  }

  .truck-hero {
    min-height: 620px;
    text-align: center;
  }

  .truck-hero-logo {
    width: min(300px, 80vw);
    margin-left: auto;
    margin-right: auto;
  }

  .truck-hero .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-padding-small {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .tl-card {
    padding: 28px;
  }

  .booking-box {
    padding: 30px 24px;
  }

  .btn,
  .sppb-btn {
    width: 100%;
    text-align: center;
  }
}