/* ===================
   Grundlayout & Farben
=================== */
body {
  margin: 0;
  padding: 0;
  background-color: #111;
  color: #eee;
  font-family: "Courier New", Courier, monospace;
  line-height: 1.6;
}

.wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

/* ===================
   Typografie
=================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2rem;
  color: #ffcc00;
}

h2 {
  font-size: 1.5rem;
  color: #ffcc00;
}

a {
  color: #ffcc00;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  margin-left: 1.5rem;
}

/* ===================
   Footer
=================== */
footer {
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid #444;
  text-align: center;
  font-size: 0.9rem;
  color: #bbb;
}

footer a {
  color: #ffcc00;
}

/* ===================
   Formular
=================== */
form.form-centered {
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 2rem;
  max-width: 600px;
  margin: 2rem auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

form.form-centered h1 {
  text-align: center;
  margin-top: 0;
}

form.form-centered .form-intro {
  text-align: center;
  margin-bottom: 2rem;
  color: #ccc;
}

/* Labels */
form.form-centered label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #ffcc00;
}

/* Eingabefelder */
form.form-centered input[type="text"],
form.form-centered input[type="email"],
form.form-centered textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #555;
  border-radius: 5px;
  margin-bottom: 1.5rem;
  background-color: #111;
  color: #eee;
  font-family: inherit;
}

/* Checkbox */
form.form-centered label.ds {
  font-weight: normal;
  color: #ccc;
  display: flex;
  align-items: flex-start; 
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  flex-wrap: wrap; 
}

form.form-centered label.ds input[type="checkbox"] {
  margin-top: 0.2rem; 
}

form.form-centered label.ds a {
  color: #ffcc00;
  text-decoration: none;
}

form.form-centered label.ds a:hover {
  text-decoration: underline;
}


/* Button */
form.form-centered button {
  background-color: #ffcc00;
  border: none;
  border-radius: 5px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.3s;
}

form.form-centered button:hover {
  background-color: #e6b800;
  }

  /* App-Karten auf der Startseite */
  .app-card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 600px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.app-card img {
  width: 120px;
  height: auto;
  margin-bottom: 1rem;
}

.app-card h2 {
  color: #ffcc00;
  margin-bottom: 0.5rem;
}

.app-card p {
  color: #ccc;
}

/* Header Homepage */

.centered-header {
  text-align: center;
  margin-bottom: 2rem;
}

.language-select {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
}

.language-select .button {
  background-color: #ffcc00;
  color: #111;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.language-select .button:hover {
  background-color: #e6b800;
  color: #000;
}

/* Hero */

.hero {
  text-align: center;
  margin: 3rem 0;
}

.hero-img {
  display: block;
  max-width: 500px; 
  height: auto;
  margin: 2rem auto;
  border: 2px solid #444;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.tagline {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #ccc;
  font-style: italic;
}

.features {
  margin: 4rem 0;
}

.features ul {
  list-style: none;
  padding: 0;
}

.features li {
  margin: 1rem 0;
  background: #1a1a1a;
  padding: 1rem;
  border-radius: 6px;
  border: 1px solid #333;
}

.cta {
  text-align: center;
  margin: 4rem 0;
}

.cta .button {
  background-color: #ffcc00;
  color: #111;
  padding: 1rem 2rem;
  border-radius: 6px;
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: bold;
}

.cta .button:hover {
  background-color: #e6b800;
}

  /* Language Switcher */

.language-switcher {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1000;
}

.language-switcher a {
  margin-left: 0.5rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid #ffcc00;
  border-radius: 4px;
  background: #1a1a1a;
  color: #ffcc00;
  text-decoration: none;
  font-family: "Courier New", monospace;
}

.language-switcher a:hover {
  background: #ffcc00;
  color: #111;
}


/* Button */

.button-container {
  text-align: center;
  margin: 2rem 0;
}

.appstore-btn {
  display: inline-block;
  background-color: #ffcc00;
  border: none;
  border-radius: 5px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-family: inherit;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s;
}

.appstore-btn:hover {
  background-color: #e6b800; 
}


.icon-container {
  text-align: center; 
  margin: 2rem 0;
}

.app-icon {
  width: 180px;  
  height: 180px;          
  border-radius: 25%;    
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
  object-fit: cover;      
}

:where(.legal-footer){
  padding: 18px 24px;
  border-top: 1px solid var(--rb-border, rgba(125,125,125,.25));
  color: var(--rb-muted, inherit);
  text-align: center;
}

:where(.legal-footer__row){
  display: inline-flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
  justify-content: center;
}

:where(.legal-footer__copy){
  margin-top: 6px;
  opacity: .9;
}

@media (min-width: 640px){
  :where(.legal-footer){
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  :where(.legal-footer__copy){
    margin-top: 0;
  }
}