@media (max-width:900px){
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0 18px;
  }

  /* Logo links */
  .brand {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .brand-name {
    display: none; /* Text "PS Recycling" ausblenden */
  }

  /* Telefonnummer ausblenden */
  .nav-right {
    display: none;
  }

  /* Menü rechts */
  .menu {
    display: block;
    background: none;
    border: 1px solid var(--border);
    color: #fff;
    padding: 8px 14px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .menu:hover {
    background: rgba(255,255,255,0.08);
  }

  /* Drawer Menü (Mobile Navigation) */
  .drawer {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(11, 15, 13, 0.98);
    border-top: 1px solid var(--border);
    backdrop-filter: blur(8px);
    padding: 20px 30px;
    text-align: center;
    animation: slideDown 0.3s ease forwards;
    z-index: 99;
  }

  .drawer a {
    display: block;
    padding: 16px 0;
    color: #dfe6e4;
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .drawer a:hover {
    color: var(--accent);
  }

  .drawer a:last-child {
    border-bottom: none;
  }

  .drawer.show {
    display: block;
  }

  @keyframes slideDown {
    from {opacity: 0; transform: translateY(-10px);}
    to {opacity: 1; transform: translateY(0);}
  }
}

/* --- Desktop bleibt gleich --- */
@media (min-width:901px) {
  .drawer {
    display: none !important;
  }

  .menu {
    display: none !important;
  }

  .nav-center {
    display: flex !important;
  }

  .nav-right {
    display: block !important;
  }
}


.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--accent);
  background-image: url("assets/PS-Logo.png"); /* Pfad zu deinem Bild */
  background-size: cover;   /* Bild füllt Kreis komplett aus */
  background-position: center;
  background-repeat: no-repeat;
}

body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: #0b0f0d;             /* dunkler Hintergrund */
      color: #f3f3f3;                  /* helle Schrift */
      line-height: 1.6;
    }


    header h1 {
      margin: 0;
      font-size: 2.2rem;
      font-weight: bold;
      color: #fff;
    }

    main {
      max-width: 900px;
      margin: 40px auto;
      padding: 0 20px;
      background: #1a2420;
      border-radius: 6px;
      padding: 30px;
    }

    h2 {
      font-size: 3rem;
      margin-top: 30px;
      color: #1FA34A;                   /* PS-Grün */
      text-align: center;
    }

    p {
      margin: 0 0 16px;
    }

    a {
      color: #1FA34A;
      text-decoration: none;
    }
    a:hover {
      text-decoration: underline;
    }

    address {
      font-style: normal;
      margin-bottom: 24px;
      line-height: 1.8;
    }

    footer {
      text-align: center;
      font-size: 0.9rem;
      color: #aaa;
      margin: 40px 0 20px;
    }





    /* --- Footer --- */
footer {
  background-color: #0b0f0d;          /* dunkler Hintergrund */
  border-top: 1px solid #1fa34a;      /* grüne Linie oben */
  padding: 30px 0;
  color: #b5c4c1;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left {
  font-weight: 600;
  color: #e0f1ee;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: #b5c4c1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #1fa34a;                     /* Grün beim Hover */
}

@media (max-width: 700px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .footer-links {
    gap: 16px;
  }
}
