:root {
      --primary: #181818;
      --secondary: #eee;
      --accent: #fff;
      --navbar-height: 74px;
      --logo-size-w: 120px;
      --logo-size-h: 60px;
      --footer-bg: #161616;
      --footer-border: #222;
      --card-gap: 2vw;
      --card-maxwidth: 370px;
      --card-img-height: 190px;
      --btn-main: #fff;
      --btn-main-hover: #232323;
      --btn-txt: #111;
    }
    /* Verhindert horizontales Scrollen von rechts nach links */
    html, body {
      margin: 0;
      padding: 0;
      background: var(--primary);
      color: var(--secondary);
      font-family: 'Montserrat', Arial, sans-serif;
      min-height: 100vh;
      overflow-x: hidden;
    }
    nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: var(--navbar-height);
      background: rgba(10, 10, 10, 0.97);
      display: flex;
      align-items: center;
      justify-content: space-between;
      z-index: 998;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.11);
      padding: 0 4vw;
    }
    .nav-logo-wrap {
      display: flex;
      align-items: center;
    }
    .nav-logo {
      height: var(--logo-size-h);
      width: var(--logo-size-w);
      object-fit: contain;
      border-radius: 6px;
    }
    .navbar-links {
      display: flex;
      align-items: center;
    }
    .navbar-links ul {
      list-style: none;
      display: flex;
      gap: 2.2rem;
      align-items: center;
      margin: 0;
    }
    nav a {
      color: var(--secondary);
      text-decoration: none;
      padding: 0 4px;
      font-weight: 500;
      letter-spacing: 1px;
      transition: color 0.2s;
      font-size: 1.05rem;
      cursor: pointer;
      white-space: nowrap;
    }
    nav a:hover {
      color: rgb(90, 90, 90);
    }
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      cursor: pointer;
      width: 36px;
      height: 36px;
      z-index: 1001;
      margin-right: 2vw;
    }
    .hamburger span {
      height: 4px;
      width: 31px;
      background: var(--accent);
      margin: 5px 0;
      border-radius: 3px;
      display: block;
      transition: all 0.32s;
    }
    main {
      margin-top: var(--navbar-height);
      padding: 2rem 1.5rem 4rem 1.5rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      min-height: calc(100vh - var(--navbar-height));
    }
    @media (max-width: 750px) {
      .navbar-links ul {
        position: fixed;
        top: 0;
        right: -100vw;
        width: 100vw;
        height: 100vh;
        background: #191919;
        flex-direction: column;
        gap: 3rem;
        align-items: center;
        justify-content: center;
        padding: var(--navbar-height) 0 0 0;
        box-shadow: 0 2px 23px #000;
        transition: right 0.33s ease;
        z-index: 1000;
        font-size: 1.9rem;
      }
      .navbar-links ul.active {
        right: 0;
      }
      .hamburger {
        display: flex;
      }
      .navbar-links ul li a {
        padding: 0 12px;
      }
      nav {
        padding: 0 2vw;
      }
      .nav-logo { 
        height: 65px; 
        width: 95px; 
      }
    }
    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(8px, 7px);
    }
    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -7px);
    }
    /* Footer Styles */
    footer {
      background: var(--footer-bg);
      color: #dadada;
      padding: 40px 6vw 18px 6vw;
      width: 100vw;
      border-top: 1.7px solid var(--footer-border);
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      justify-content: center;
      align-items: flex-start;
      font-weight: 400;
    }
    .footer-grid {
      display: flex;
      width: 100%;
      justify-content: center;
      gap: 52px;
      flex-wrap: wrap;
      max-width: 1250px;
      margin: 0 auto 33px auto;
    }
    .footer-col {
      flex: 1 1 170px;
      min-width: 160px;
      max-width: 230px;
      padding-bottom: 11px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-col h3 {
      margin-bottom: 8px;
      margin-top: 0;
      font-size: 1.05rem;
      color: #fff;
      letter-spacing: 1.1px;
      font-weight: bold;
    }
    .footer-col address,
    .footer-col a,
    .footer-col div,
    .footer-col p {
      font-size: 0.99rem;
      color: #bbb;
      font-style: normal;
      text-decoration: none;
      margin-bottom: 3px;
      line-height: 1.6;
      background: none;
      border: none;
      padding: 0;
      display: block;
      word-break: break-all;
    }
    .footer-col a {
      color: #bbb;
      text-decoration: none;
      transition: color 0.16s;
      cursor: pointer;
    }
    .footer-col a:hover {
      color: #fff;
      text-decoration: underline;
    }
    .footer-bar {
      width: 100%;
      display: flex;
      margin: 0 auto 0 auto;
      justify-content: center;
      align-items: center;
    }
    .footer-bar hr {
      width: 66vw;
      max-width: 400px;
      border: none;
      border-top: 1.3px solid #353535;
      margin: 0 auto;
    }
    .footer-copyright {
      width: 100%;
      padding-top: 17px;
      padding-bottom: 3px;
      text-align: center;
      color: #bdbdbd;
      font-size: 0.96rem;
      font-weight: 500;
      letter-spacing: 0.6px;
      user-select: none;
    }
    @media (max-width: 900px) {
      .footer-grid {
        gap: 19px;
      }
      .footer-col {
        flex-basis: 41%;
        min-width: 130px;
      }
    }
    @media (max-width: 600px) {
      footer {
        padding: 23px 6vw 13px 6vw;
      }
      .footer-grid {
        flex-direction: column;
        gap: 0;
      }
      .footer-col {
        max-width: unset;
        min-width: unset;
        padding-bottom: 21px;
      }
    }
    /* --- Bewertungen Seite --- */
    .bewertungen-section {
      width: 100%;
      max-width: 1150px;
      margin: 0 auto;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2.2rem;
      padding-top: 1.3rem;
    }
    .bewertungen-header {
      font-size: 2.1rem;
      font-weight: bold;
      color: var(--accent);
      letter-spacing: 1px;
      margin-bottom: 17px;
      text-shadow: 0 2px 7px #1b1b1b6d;
      text-align: center;
    }
    .bewertungen-grid {
      display: flex;
      flex-wrap: wrap;
      gap: var(--card-gap);
      justify-content: center;
      width: 100%;
    }
    .bewertung-card {
      background: #222;
      border-radius: 15px;
      box-shadow: 0 2px 13px #21212142;
      max-width: var(--card-maxwidth);
      width: 100%;
      margin-bottom: 13px;
      padding: 24px 22px 17px 22px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      position: relative;
    }
    .bewertung-top {
      display: flex;
      align-items: center;
      gap: 13px;
      margin-bottom: 6px;
    }
    .bewertung-avatar {
      width: 54px;
      height: 54px;
      background: #333;
      border-radius: 50%;
      object-fit: cover;
    }
    .bewertung-userinfo {
      display: flex;
      flex-direction: column;
    }
    .bewertung-name {
      font-weight: 700;
      color: var(--accent);
      font-size: 1.09rem;
      text-shadow: 0 1px 5px #2020343f;
    }
    .bewertung-date {
      font-size: 0.94rem;
      color: #bbb;
    }
    .bewertung-rating {
      margin-top: 3px;
      margin-bottom: 8px;
    }
    .star {
      color: #ffd700;
      font-size: 1.26rem;
      margin-right: 2px;
      text-shadow: 0 1px 6px #0008;
    }
    .bewertung-text {
      font-size: 1.05rem;
      line-height: 1.65;
      color: #eee;
      margin-top: 4px;
      margin-bottom: 7px;
      white-space: pre-line;
    }
    .bewertung-footer {
      margin-top: 14px;
      color: #bbb;
      font-size: 0.91rem;
      font-style: italic;
      font-weight: 500;
    }
    @media (max-width: 600px) {
      .bewertungen-grid {
        flex-direction: column;
        gap: 18px;
      }
      .bewertung-card {
        padding: 18px 12px;
      }
      .bewertungen-header {
        font-size: 1.29rem;
      }
    }
    html {
      box-sizing: border-box;
    }
    *,
    *:before,
    *:after {
      box-sizing: inherit;
    }