/* Grundlegende Styles */
body {
  margin: 0;
  font-family: "Roboto", Arial, sans-serif;
  background: #0b0f0d;                /* Dunkler Hintergrund */
  color: #e5e5e5;
}

@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;
}


/* Hauptcontainer */
.kontakt-section {
  background: #3a554a;                /* Card-ähnlicher Container */
  padding: 60px 40px;
  max-width: 900px;
  margin: 50px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Titel */
.kontakt-section h2 {
  text-align: center;
  color: #1FA34A;
  font-size: 2.5rem;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.kontakt-section .lead {
  text-align: center;
  font-size: 1.1rem;
  color: #cbd5d1;
  margin-bottom: 40px;
  line-height: 1.5;
}

/* Formularstruktur */
.kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Beschriftungen */
.form-group label {
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
  color: #e5e5e5;
}

/* Eingabefelder */
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 1rem;
  background: #111;                  /* Einheitlich dunkle Felder */
  color: #f3f3f3;
  border: 1px solid #333;
  border-radius: 6px;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* Hover & Fokus für Inputs */
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border: 1px solid #1fa34a;
  box-shadow: 0 0 6px rgba(31,163,74,0.5);
}

/* Dropdown Menü */
.form-group select option {
  background: #1c1c1c;
  color: #fff;
}

/* Formularzeilen */
.form-row {
  display: flex;
  gap: 20px;
}

.form-row .form-group {
  flex: 1;
}

/* Abschnitt der Checkboxen */
.form-section {
  background: #3a554a;
  padding: 20px 25px;
  border-radius: 8px;
  margin: 30px auto 0 auto;
  max-width: 600px;
  text-align: left;
  margin-left: 0;
}

/* Überschriften der Abschnitte */
.form-section h3 {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 18px;
  color: #fafbfa;
}

/* Checkboxen */
/* Einheitliche Radio-Buttons */
input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 10px;
  vertical-align: middle;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: #cbd5d1;
}

input[type="radio"]:checked {
  border-color: var(--accent);
  background-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.25) inset;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #e4e9e7;
  margin-bottom: 8px;
}

.checkbox-group label:hover input[type="radio"] {
  border-color: var(--accent);
}


.datenschutz-section {
  margin-top: 24px;
  padding: 12px 0;
  border-top: 1px ;
}

.datenschutz-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #e1e7e5;
  line-height: 1.5;
  cursor: pointer;
}

.datenschutz-label input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #d1dcd8;
  border-radius: 4px;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  transition: all 0.25s ease;
}

.datenschutz-label input[type="checkbox"]:checked {
  background-color: var(--accent);
  border-color: var(--accent);
}

.datenschutz-label input[type="checkbox"]:checked::after {
  content: "";
  color: #0b0f0d;
  font-weight: 800;
  position: absolute;
  top: 0;
  left: 9px;
}

.datenschutz-label a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.datenschutz-label a:hover {
  color: var(--accent-700);
  text-decoration: underline;
}


.checkbox-group label:hover {
  color: #1fa34a;
}

/* Senden-Button */
.submit-btn {
  background: #1fa34a;
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 15px 20px;
  font-size: 1.1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
  background: #178d3d;
  transform: translateY(-2px);
}

.submit-btn:active {
  transform: translateY(0);
}



/* --- 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;
  }
}
