:root {
  --color-teal-800: #0f766e; /* Hauptfarbe */
}

body {
  font-family: 'Trebuchet MS', sans-serif;
  background-color: #1f2121;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  overflow: hidden;
  position: relative;
}

/* ---------- Navigation ---------- */
.top-nav {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center; /* Links mittig */
  z-index: 10;
}

/* Home-Button links fixieren */
.home-btn {
  position: absolute;
  left: 15px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 14px 24px;   /* größer */
  border-radius: 14px;
  font-size: 18px;      /* größere Schrift */
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}

.home-btn:hover {
  background: var(--color-teal-800);
  transform: scale(1.08);
}

/* Navigationslinks mittig */
.nav-links {
  display: flex;
  gap: 22px; /* mehr Abstand */
}

.nav-links a {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 14px 22px;   /* größer */
  border-radius: 12px;
  font-size: 16px;      /* größere Schrift */
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
}

.nav-links a:hover {
  background: var(--color-teal-800);
  transform: translateY(-3px) scale(1.05);
}

/* ---------- Container (Generator) ---------- */
.container {
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  padding: 70px 60px;        /* mehr Padding */
  border-radius: 24px;       /* größerer Radius */
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
  max-width: 700px;          /* breiter */
  width: 95%;
  position: relative;
  z-index: 1;
}

h1 {
  font-size: 38px;           /* größer */
  margin-bottom: 30px;
  color: #222;
}

#prompt {
  font-size: 24px;           /* größer */
  font-weight: bold;
  margin: 35px 0;
  color: #333;
  min-height: 100px;         /* mehr Platz */
  line-height: 1.5;
}

/* ---------- Main Button ---------- */
button {
  background-color: var(--color-teal-800);
  color: white;
  border: none;
  padding: 18px 36px;        /* größer */
  border-radius: 14px;
  font-size: 20px;           /* größere Schrift */
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s;
}

button:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 18px rgba(0,0,0,0.35);
}

/* ---------- Animation ---------- */
.fade {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease-in, transform 0.5s ease-in;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}