
/* Sanftes Scrollen und Basisschriftarten */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.font-serif {
  font-family: 'Cormorant Garamond', serif;
}

/* Modal Scrollbars */
.modal-scroll::-webkit-scrollbar {
  width: 6px;
}
.modal-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}
.modal-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

/* Elegante Formular-Inputs (Underline-Stil wie im Screenshot) */
.form-input-clean {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding: 10px 0;
  color: #FAF7F2;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  outline: none;
}

.form-input-clean::placeholder {
  color: rgba(250, 247, 242, 0.55);
}

.form-input-clean:focus {
  border-bottom-color: #629677;
}

/* Custom Radio Buttons */
.custom-radio {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  display: grid;
  place-content: center;
  transition: all 0.2s ease;
}

.custom-radio:checked {
  border-color: #629677;
}

.custom-radio:checked::before {
  content: "";
  width: 9px;
  height: 9px;
  background-color: #629677;
  border-radius: 50%;
}