
    body {
      margin: 0;
      font-family: 'Montserrat', sans-serif;
      background-color: #ffffff;
    }

    /* ---------- NAVIGATION ---------- */
    .navbar {
      background-color: rgb(0,0,0);
      padding: 15px 30px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
      z-index: 1000;
    }
    .center {
      display: flex;
      gap: 20px;
      align-items: center;
    }
    .navbar a {
      text-decoration: none;
      color: #ffffff;
      margin: 0 10px;
      font-weight: 500;
    }
    .logo img {
      height: 60px;
      width: auto;
      background-color: black;
    }
    .navbar a button{
      background-color: transparent;
      color: #ffffff;
      border: none;
      padding: 12px 14px;
      font-weight: 600;
      cursor: pointer;
    }

    .navbar a button:hover {
      opacity: 0.9;
      text-decoration: underline;
      text-decoration-color: rgb(255, 255, 255);
    }

    /* Desktop search */
    .search-bar {
      position: relative;
      align-items: center;
      margin: 10px;
      border-radius: 10px;
    }
    .search-wrapper input {
      padding: 8px 10px;
      border-radius: 8px;
      border: 1px solid #ccc;
      min-width: 180px;
    }
    .results {
      margin-top: 6px;
      border-radius: 5px;
      max-width: 300px;
      background: #333;
      box-shadow: 0px 2px 4px rgba(0,0,0,0.3);
      position: absolute;
      left: 0;
      right: 0;
      z-index: 1100;
    }
    .result-item {
      padding: 8px;
      cursor: pointer;
      color: white;
      border: none;
      border-radius: 5px;
      font-weight: 500;
    }
    .result-item:hover {
      background: #ffffff;
      color: #000000;
    }

    /* Hamburger */
    .hamburger {
      display: none;
      font-size: 28px;
      color: white;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
      line-height: 1;
    }

    /* Mobile menu */
    .mobile-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: #000;
      padding: 14px 18px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.2);
      border-bottom-left-radius: 8px;
      border-bottom-right-radius: 8px;
    }
    .mobile-menu.open {
      display: block;
      animation: menuSlide 180ms ease;
    }
    @keyframes menuSlide {
      from { transform: translateY(-6px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }
    .mobile-menu .center {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 10px;
    }
    .mobile-menu .center a button {
      width: 100%;
      text-align: left;
      padding: 12px;
      background: transparent;
      color: #fff;
      border-radius: 6px;
    }
    .mobile-menu .mobile-search .search-wrapper input {
      width: 100%;
      padding: 8px;
      border-radius: 8px;
      border: 1px solid #444;
      background: #111;
      color: #fff;
    }
    .mobile-menu .mobile-search .results {
      position: relative;
      background: #222;
    }

    /* Dropdown inside mobile menu */
    .dropdown {
      display: flex;
      flex-direction: column;
    }
    .dropdown-btn {
      width: 100%;
      text-align: left;
      padding: 12px;
      background: transparent;
      color: #fff;
      border: none;
      font-weight: 600;
      cursor: pointer;
      border-radius: 6px;
    }
    .dropdown-btn:hover { background-color: rgba(255,255,255,0.1); }
    .dropdown-content {
      display: none;
      flex-direction: column;
      margin-left: 10px;
    }
    .dropdown-content a button {
      padding: 10px 12px;
      width: 100%;
      text-align: left;
      background: transparent;
      color: #fff;
      border: none;
      cursor: pointer;
      border-radius: 6px;
    }
    .dropdown-content a button:hover { background-color: rgba(255,255,255,0.1); }
    .dropdown.open .dropdown-content { display: flex; }

    /* ---------- HERO ---------- */
    .hero {
      display: flex;
      height: 500px;
      position: relative;
    }
    .hero .left, .hero .right {
      flex: 1;
      background-size: cover;
      background-position: center;
    }
    .hero .left {
        background-image: url('bilder/moppe2.jpg');
        filter: brightness(70%); 
        }
    .hero .right {
        background-image: url('bilder/moppe1.jpg');
        filter: brightness(70%); 
        }
    .hero-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%,-50%);
      text-align: center;
      color: white;
      text-shadow: 0 2px 4px rgba(0,0,0,0.5);
      z-index: 2;
    }
    .hero-text h1 { font-size: 48px; margin: 0; }
    .hero-text button {
      background-color: #000;
      color: #fff;
      padding: 20px;
      border-radius: 10px;
      border: none;
      font-weight: 600;
      cursor: pointer;
      transition: transform 0.6s, box-shadow 0.6s, background-color 0.3s, color 0.3s;
    }
    .hero-text button:hover {
      background-color: #fff;
      color: #000;
      transform: scale(1.05);
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    /* Info bar */
    .info-bar {
      background-color: #111;
      color: white;
      display: flex;
      justify-content: space-around;
      padding: 15px;
      font-size: 14px;
      border-color: white;
      border-style: solid;
      border-width: 0 0 1px 0;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    .choose-us {
      position: relative;
      display: flex;
      align-items: flex-start;
      justify-content: flex-start;
      height: 500px;
      flex-direction: column;
      overflow: hidden;
    
    }
    .choose-us:hover .background-video {
      filter: brightness(80%);
      z-index: -2;
      background-color: black;
    }
    
    /* video background */
    .choose-us .background-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;   /* acts like background-size: cover */
      z-index: -1; 
      filter: brightness(30%);
      transition: filter 0.5s ease;
      
      
    }
    
    /* dark overlay */
    .choose-us::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      min-height:100%;
      background-color: rgba(0, 0, 0, 0.4);
      z-index: 0;
    }
    
    /* text and button stay the same */
    .choose-us h2 {
      margin-top: 50px;
      position: relative;
      color: #ffffff;
      z-index: 1;
      font-weight: bold;
      font-size: 36px;
      margin-left: 40px;
    }
    
    .choose-us p {
      position: relative;
      color: #ffffff;
      margin-top: 50px;
      z-index: 1;
      font-weight: bold;
      font-size: 15px;
      margin-left: 40px;
    }
    
    .choose-us button {
      margin-top: 50px;
      background-color: #000;
      padding: 20px;
      border-radius: 30px;
      border: none;
      position: relative;
      color: #ffffff;
      font-weight: bold;
      font-size: 15px;
      margin-left: 40px;
      transition: background-color 0.5s ease, color 0.5s ease;
      cursor: pointer;
      margin-bottom: 30px;
    }
    
    .choose-us button:hover {
      background-color: #fff;
      color: #000;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }    
    

    footer {
      text-align: center;
      padding: 1rem;
      background-color: black;
      color: #fff;
      position: relative;
    }

    /* ---------- RESPONSIVE ---------- */
    @media (max-width: 900px) {
      .center { gap: 10px; }
      .navbar { padding: 12px 16px; }
      .logo img { height: 48px; }
      .center { display: none; }
      .search-bar { display: none; }
      .hamburger { display: block; }
    }
    @media (max-width: 600px) {
      .hero { flex-direction: column; height: 420px; }
      .hero .left, .hero .right { height: 210px; }
      .hero-text h1 { font-size: 28px; }
      .category-grid { justify-content: center; gap: 15px; }
      .category-link { width: 80%; max-width: 300px; margin: 0 auto; }
      .category-item { margin-left: 0; margin-right: 0; }
    }