@charset "utf-8";
/* CSS Document */

@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Josefin Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/josefin-sans-v34-latin/josefin-sans-v34-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* josefin-sans-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Josefin Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/josefin-sans-v34-latin/josefin-sans-v34-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/roboto-v51-latin/roboto-v51-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* roboto-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v51-latin/roboto-v51-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


    :root {
      --color-dark: #111417;
      --color-text: #666;
      --color-soft: #f6f5f1;
      --color-gold: #c7b678;
      --color-gold-dark: #a99759;
      --color-blue: #12354a;
      --max-width: 1200px;
      --content-width: 1140px;
      --section-padding: clamp(5rem, 9vw, 9rem);
      --font-main: 'Roboto', sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: var(--font-main);
      color: var(--color-text);
      background: #fff;
      font-size: 1rem;
      line-height: 1.65;
    }

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

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

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

    .site-header {
      position: fixed;
      z-index: 20;
      left: clamp(1.5rem, 7vw, 5.5rem);
      right: clamp(1.5rem, 7vw, 5.5rem);
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      pointer-events: none;
    }

    .logo {
      width: 150px;
      background: var(--color-blue);
      color: #fff;
      display: grid;
      place-items: center;
      pointer-events: auto;
    }

    .logo span {
      display: block;
      font-size: 27px;
      font-weight: 400;
    }

    .logo .small {
      color: #9fc4cc;
    }

    .menu-toggle {
      width: 60px;
      height: 50px;
        margin-top: 50px;
      border: 0;
      border-radius: 2px;
      background: var(--color-gold);
      color: #fff;
      font-size: 40px;
      cursor: pointer;
      pointer-events: auto;
    }

    .main-nav {
      position: fixed;
      z-index: 30;
      top: 0;
      right: 0;
      width: min(340px, 86vw);
      height: 100vh;
      padding: 7rem 2.5rem 2.5rem;
      background: #143c50;
      color: #fff;
      transform: translateX(100%);
      transition: transform .28s ease;
    }

    .main-nav.is-open {
      transform: translateX(0);
    }

    .main-nav a {
      display: block;
      padding: .85rem 0;
      font-size: .82rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      border-bottom: 1px solid rgba(255,255,255,.12);
        color: #fff;
    }

    .nav-close {
      position: absolute;
      top: 2rem;
      right: 2rem;
      border: 0;
      background: transparent;
      color: #fff;
      font-size: 2rem;
      cursor: pointer;
    }

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

    .hero {
      position: relative;
      min-height: 550px;
      display: grid;
      place-items: center;
      padding: 8rem 1.5rem 0 5rem;
      background:
        linear-gradient(rgba(0,0,0,.05), rgba(0,0,0,.03)),
        url('../images/leder-header.webp') center / cover no-repeat;
        background-position: 0% 63%;
    }
        
        .hero-inner {
  width: min(var(--content-width), 100%);
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}

    .hero-card {
      width: auto;
      margin-top: 13rem;
      padding: clamp(2.2rem, 4vw, 3.3rem) clamp(2rem, 4vw, 3.6rem);
      background: #fff;
    }

    .claim {
      margin: 0 0 .55rem;
      color: #b8b08d;
      letter-spacing: .05em;
      text-transform: uppercase;
        font-weight: 400;
          font-family: 'Josefin Sans';
         font-style: normal;
    }

    h1 {
      margin: 0 0 2.1rem;
      color: var(--color-dark);
      font-size: clamp(2.2rem, 5vw, 3.25rem);
      line-height: 1;
      letter-spacing: .03em;
      text-transform: uppercase;
    }

    .hero-card-inner {
      display: grid;
      grid-template-columns: 1fr 150px;
      gap: 2rem;
      align-items: center;
      text-align: left;
    }

    .button-stack {
      display: grid;
      gap: .72rem;
    }

    .btn {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      min-height: 36px;
      padding: .65rem 1.1rem;
      background: var(--color-gold);
      color: #fff;
      letter-spacing: .1em;
      text-transform: uppercase;
      transition: background .2s ease, transform .2s ease;
    }

    .btn:hover,
    .btn:focus-visible {
      background: var(--color-gold-dark);
      transform: translateY(-1px);
    }

    .hero-product {
      opacity: .96;
    }

    /* Sections ----------------------------------------------------- */

    .section {
      position: relative;
      padding: var(--section-padding) 1.5rem;
      overflow: hidden;
    }

    .section-inner {
      width: min(var(--content-width), 100%);
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .two-column {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
      gap: clamp(3rem, 7vw, 6rem);
      align-items: center;
    }

    .two-column.reverse {
      grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    }

    .text-block {
      max-width: 370px;
    }

    .section-kicker {
      position: absolute;
      z-index: 1;
      top: clamp(3rem, 7vw, 4rem);
      left: max(1.5rem, calc((100vw - var(--content-width)) / 2 - 4rem));
      margin: 0;
      color: #f2f2f2;
      font-size: clamp(4.8rem, 12vw, 7rem);
      line-height: 1;
      font-weight: 800;
      letter-spacing: -.04em;
      pointer-events: none;
    }

    .section-kicker.right {
      left: auto;
      right: max(1.5rem, calc((100vw - var(--content-width)) / 2 - 5rem));
    }

    h2 {
      margin: 0 0 2.4rem;
      color: var(--color-dark);
      font-size: clamp(1.45rem, 2.8vw, 2rem);
      line-height: 1.1;
      letter-spacing: .03em;
      text-transform: uppercase;
    }

    p {
      margin: 0 0 1.25rem;
    }

    .image-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: .5rem;
    }

    .image-grid img,
    .feature-image img {
      width: 100%;
      object-fit: cover;
    }
    .product-section {
      padding-top: clamp(4rem, 8vw, 7rem);
    }

    .product-section .text-block {
      margin-left: auto;
    }

    .section-bg-line {
      position: absolute;
      z-index: 0;
      width: min(560px, 60vw);
      opacity: .08;
      pointer-events: none;
    }

    .section-bg-line.top-right {
      top: 1rem;
      right: 14vw;
    }

    .section-bg-line.bottom-left {
      top: 1rem;
      left: 12vw;
    }
      h1, h2, .btn, .section-kicker{
          font-family: 'Josefin Sans';
         font-style: normal;
          font-weight: 700;
      }
.btn{
    font-weight: 400;
}

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

    .site-footer {
      padding: 2rem 1.5rem;
      background: var(--color-soft);
      text-align: center;
      font-size: .8rem;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      justify-content: center;
    }

    .footer-links a:hover,
    .footer-links a:focus-visible {
      color: var(--color-gold-dark);
    }


    /* Produktkonfigurator ------------------------------------------ */


.product-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 20px;
    transition: opacity .15s ease;
}

.color-options {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.color-btn {
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.color-btn:hover,
.color-btn.active {
  transform: scale(1.2);
}

.configurator select {
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
  border-radius: 0;
  border: 1px solid hsl(32, 10%, 80%);
  background-color: hsl(49, 20%, 90%);
  font-family: inherit;
  font-size: inherit;
  color: #333;
}

.configurator h4{
    font-size: 1.2rem;
    margin: 1.4rem 0 .4rem;
    font-family: "Josefin Sans", Sans-serif;
    font-weight: 700;
    color: var(--color-dark);
}

.price {
    margin-top:2.5rem;
    font-size:2.4rem;
    font-family: "Josefin Sans", Sans-serif;
    font-style: normal;
      font-weight: 400;
    color: var(--color-dark);
}

        .produktuebersicht{
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(15rem, 100%), 1fr));
            margin-top: 12rem;
        }
        .product-card p{
            margin: 2rem 0 0 0;
        }
        .product-card{
            text-align: center;
            border: 1px solid hsl(32, 10%, 80%);
        }


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

    @media (max-width: 820px) {

      .logo {
        width: 88px;
      }

      .logo span {
        font-size: 22px;
      }
        
        .menu-toggle{
            margin-top: 0;
        }

      .hero {
        min-height: 610px;
        align-items: end;
      }

      .hero-card {
        margin-top: 5rem;
      }

      .hero-card-inner,
      .two-column,
      .two-column.reverse {
        grid-template-columns: 1fr;
      }

      .hero-card-inner {
        text-align: center;
      }

      .hero-product {
        width: 135px;
        margin: 0 auto;
      }

      .section-kicker {
        left: 1.2rem;
        font-size: clamp(4rem, 17vw, 7rem);
      }

      .section-kicker.right {
        right: 1.2rem;
      }

      .text-block,
      .product-section .text-block {
        max-width: none;
        margin-left: 0;
      }

      .product-section .feature-image {
        order: 2;
      }
    }

@media (max-width:600px) {
    .section{
        padding: var(--section-padding) 0.8rem;
    }
}

    @media (max-width: 520px) {
      body {
        font-size: 14px;
      }

      .hero-card {
        padding: 2rem 1.3rem;
      }

      h1 {
        letter-spacing: .04em;
      }

      .image-grid {
        grid-template-columns: 1fr 1fr;
        gap: .35rem;
      }
        .produktuebersicht {
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(10rem, 100%), 1fr));
}
    }

@media (max-width:425px) {
    .configurator {
  max-width: 90%;
}
}

@media (max-width:380px) {
    .configurator {
  max-width: 75%;
}
}