
body {
  margin: 0;
  padding: 2rem;
  font-family: 'Comic Sans MS', 'Comic Sans', 'Chalkboard SE', 'Segoe UI', sans-serif;
  background: url('bg.png') no-repeat center center fixed;
  background-size: cover;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#lang-switch {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.9rem;
  color: #444;
}

#lang-switch span {
  cursor: pointer;
}

h1 {
  font-family: inherit;
  font-size: 2rem;
  text-align: center;
}

form {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

textarea {
  width: 100%;
  height: 120px;
  padding: 1em;
  font-size: 1em;
  font-family: inherit;
  background: rgba(255,255,255,0.6);
  border: 2px dashed #6c63ff;
  border-radius: 8px;
  resize: none;
}

button {
  margin-top: 1rem;
  margin-bottom: 2rem;
  padding: 0.6em 1.2em;
  font-size: 1em;
  background: #6c63ff;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background: #5548e0;
}

.info {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #666;
  text-align: center;
  max-width: 500px;
}

@media (max-width: 600px) {
  body {
    padding: 1rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  textarea {
    height: 100px;
    font-size: 0.9em;
  }

  button {
    font-size: 0.9em;
  }

  #lang-switch {
    font-size: 0.8rem;
    top: 0.5rem;
    right: 0.5rem;
  }
}

@media (max-width: 600px) {
  textarea {
    width: calc(100% - 40px); /* 20px Abstand links und rechts */
    margin: 0 20px;
  }

  #idea-form {
    padding: 0 10px;
  }
}


#feedback-bubble {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fffae6;
  color: #333;
  padding: 1.5em 2em;
  border: 2px solid #6c63ff;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  opacity: 0;
  transition: all 0.4s ease;
  font-size: 1rem;
  z-index: 1000;
  text-align: center;
  max-width: 90vw;
}



#feedback-bubble.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

#feedback-bubble.hidden {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
  pointer-events: none;
}


.footer-links {
  font-size: 0.9rem;       /* Kleine Schrift */
  text-align: center;       /* Zentriert */
  margin-top: 40px;         /* Abstand nach oben */
  color: #666;              /* Dezente Farbe */
}

.footer-links a {
  color: inherit;           /* Gleiche Farbe wie Text */
  text-decoration: none;    /* Kein Unterstrich */
  margin: 0 8px;            /* Abstand zwischen Links */
  opacity: 0.6;             /* Etwas transparenter */
}

.footer-links a:hover {
  opacity: 1;               /* Volle Sichtbarkeit beim Hover */
  text-decoration: underline;
}


#background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.7); /* Weiß, n% transparent */
  z-index: -1; /* Hinter dem Inhalt */
  pointer-events: none; /* Klicks gehen durch */
}


#mastodon-follow button {
  margin-top: 3rem;
  padding: 0.6em 1.2em;
  font-size: 1em;
  font-family: inherit;
  background: #ffb347;           /* Orange wie Notizzettel */
  color: #333;
  border: 2px dashed #6c63ff;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
  transition: all 0.2s ease;
}

#mastodon-follow button:hover {
  background: #ffa726;
  transform: scale(1.05);
}


#mastodon-follow {
  display: inline-block;
  margin-top: 3rem;
  padding: 0.6em 1.2em;
  font-size: 1em;
  font-family: inherit;
  background: #ffb347;
  color: #333;
  border: 2px dashed #6c63ff;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
  transition: all 0.2s ease;
  text-decoration: none;
}

#mastodon-follow:hover {
  background: #ffa726;
  transform: scale(1.05);
}

