:root {
  --bg:#ffffff;
  --card-bg:#fdfdfd;
  --text:#333333;
  --accent:#4da6ff;
  --accent-hover:#3399ff;
  --border:#e0e0e0;
  --radius:12px;
}

/* Grundlayout */
html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family:"Inter",system-ui,sans-serif;
  background:var(--bg);
  color:var(--text);
}

/* Navigation */
nav {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:1rem 2rem;
  background:#2c3e50;
}

nav .logo {
  font-weight:700;
  font-size:1.2rem;
  color:var(--accent);
}

nav ul {
  list-style:none;
  display:flex;
  gap:1.5rem;
  margin:0;
  padding:0;
}

nav a {
  text-decoration:none;
  color:#fff;
  font-weight:bold;
}
nav a:hover { color:#f39c12; }













nav {
  background-color: #2c3e50; /* dunkles Blau/Grau */
  padding: 10px;
}

nav ul {
  list-style: none;   /* entfernt Punkte */
  margin: 0;
  padding: 0;
  display: flex;      /* horizontale Anordnung */
}

nav ul li {
  margin-right: 20px;
}

nav ul li a {
  color: white;       /* Textfarbe */
  text-decoration: none;
  font-weight: bold;
}

nav ul li a:hover {
  color: #f39c12;     /* Farbe beim Hover */
}









/* Burger-Button */
.menu-toggle {
  display:none;
  font-size:1.5rem;
  background:none;
  border:none;
  cursor:pointer;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .menu-toggle {
    display:block;
    color:#000;
  }
  .nav-links {
    display:none;
    flex-direction:column;
    position:absolute;
    top:60px;
    color:#000;
    right:0;
    background:var(--card-bg);
    width:200px;
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:1rem;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
  }
  .nav-links.show {
    display:flex;
  }
  nav ul li a {
  color: #000;       /* Textfarbe */
  text-decoration: none;
  font-weight: bold;
}

nav ul li a:hover {
  color: #f39c12;     /* Farbe beim Hover */
}
}


/* Hauptbereich */
main {
  flex:1;
  padding:2rem;
  max-width:1000px;
  margin:auto;
}

.cards {
  display:flex;
  gap:1.5rem;
  flex-wrap:wrap;
  justify-content:center;
  padding-bottom: 19px;
}


.carde {
  flex:1 1 250px;
  background:#fdfdfd;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:1.5rem;
  box-shadow:0 4px 12px rgba(0,0,0,0.08);
  text-align:center;
}
.carde h3 { margin-top:0; color:#000); }
.carde .link { color:#000; text-decoration:none; font-weight:500; }
.carde .link:hover { text-decoration:underline;color:#f39c12; }

h2 {
  margin-top:0;
  font-size:1.4rem;text-align:left;
}

/* Dropzone */
.dropzone {
  border:2px dashed var(--accent);
  border-radius:16px;
  padding:3rem 2rem;
  text-align:center;
  cursor:pointer;
  background:linear-gradient(135deg,#f9fbff,#ffffff);
  transition:all 0.3s ease;
  box-shadow:0 4px 12px rgba(0,0,0,0.05);
}
.dropzone:hover {
  background:linear-gradient(135deg,#eef6ff,#ffffff);
  border-color:var(--accent-hover);
  box-shadow:0 6px 16px rgba(77,166,255,0.15);
}
.dropzone p {
  font-size:1.1rem;
  color:var(--text);
  margin:0.5rem 0;
}
.dropzone input[type="file"] {
  display:none;
}

/* Ergebnisliste */
ul#outputList {
  list-style:none;
  padding:0;
  margin-top:1.5rem;
}
ul#outputList li {
  background:#fafafa;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:1rem;
  margin-bottom:1rem;
}
.top-row {
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.info {
  flex:1;
}
.actions {
  display:flex;
  align-items:center;
  gap:0.5rem;
}
.status-dot {
  font-size:1.2rem;
}
button {
  padding:0.6rem 1.2rem;
  border-radius:20px;
  border:none;
  font-weight:500;
  cursor:pointer;
  background:var(--accent);
  color:#fff;
  box-shadow:0 2px 6px rgba(0,0,0,0.1);
}
button:hover {
  background:var(--accent-hover);
}
textarea {
  width:100%;
  min-height:60px;
  border-radius:var(--radius);
  border:1px solid var(--border);
  padding:0.5rem;
  font-family:ui-monospace,monospace;
  background:#f9f9f9;
  color:var(--text);
  margin-top:0.5rem;
  display:block;
}

/* Footer (Sticky) */
footer {
  background-color: #2c3e50;
  color: white;
  text-align: center;
  padding: 20px;
}

footer nav {
  display: flex;
  justify-content: center; /* alle Links zentriert */
  gap: 15px;               /* Abstand zwischen den Links */
}

footer nav a {
  color: #ccc;
  text-decoration: none;
}

footer nav a:hover {
  color: #f39c12;
}


footer .social-icons {
  margin-top: 10px;
}

footer .social-icons a {
  color: white;
  margin: 0 8px;
  font-size: 20px;
  transition: color 0.3s;
}

footer .social-icons a:hover {
  color: #f39c12;
}


.cta-button {
  display:inline-block;
  margin:0.5rem;
  padding:0.8rem 1.5rem;
  background:var(--accent);
  color:#fff;
  border-radius:25px;
  text-decoration:none;
  font-weight:600;
  text-align:center;
}
.cta-button:hover { background:var(--accent-hover); }
.examples, .cta {
  margin:2rem auto;
}







.heros {
  background: linear-gradient(135deg, #eef6ff, #ffffff);
  padding: 4rem 2rem;
}

.heros-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: auto;
}

.heros-text {
  flex: 1 1 500px;
  padding-right: 2rem;
}

.heros-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.heros-text p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #374151;
}

.cta-buttons {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: #4da6ff;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
}
.cta-buttons:hover {
  background: #3399ff;
}

.heros-image {
  flex: 1 1 400px;
  text-align: center;
}
.heros-image img {
  max-width: 100%;
  height: auto;
}



/* Ergänzendes CSS für Dropzone & Liste */
.dropzone {
  border: 2px dashed #4da6ff;
  border-radius: 12px;
  background: #f8fbff;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.dropzone.drag-over {
  background: #eef6ff;
  border-color: #3399ff;
}

.output-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}
.output-item {
  display: grid;
  grid-template-columns: 80px 1fr auto auto auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  margin-bottom: 0.75rem;
}
.thumb {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  background: #f3f4f6;
}
.format-select {
  padding: 0.4rem 0.5rem;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
}
.status {
  font-size: 0.9rem;
  color: #4da6ff;
}



.hero {
  background: linear-gradient(135deg, #3498db, #8e44ad); /* Farbverlauf */
  color: white;
  text-align: center;
  padding: 0 0 15px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2); /* leichter Schatten */
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
ul {
  list-style-type: none; /* entfernt die Punkte */
  margin: 0;             /* optional: entfernt Standardabstand */
  padding: 0;            /* optional: entfernt Einrückung */
}








	




















.impressum-container {
  max-width: 900px;
  margin: 40px auto;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.impressum-block {
  margin-bottom: 30px;
}

.impressum-block h2 {
  color: #2c3e50;
  margin-bottom: 10px;
}

.datenschutz-container {
  max-width: 900px;
  margin: 40px auto;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.datenschutz-block {
  margin-bottom: 30px;
}

.datenschutz-block h2 {
  color: #2c3e50;
  margin-bottom: 10px;
}
















.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin: 40px auto;
  max-width: 1000px;
}

.contact-form, .whatsapp {
  flex: 1 1 400px;
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-form h2, .whatsapp h2 {
  margin-bottom: 20px;
  color: #2c3e50;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #3498db;
  outline: none;
}

.contact-form button {
  background: #3498db;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #2980b9;
}

.whatsapp-link {
  display: inline-block;
  background: #25D366;
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.whatsapp-link:hover {
  background: #1ebe5d;
}

.qr-code {
  margin-top: 20px;
  text-align: center;
}

.qr-code img {
  max-width: 150px;
  border: 4px solid #25D366;
  border-radius: 8px;
  margin-bottom: 10px;
}

	
	
	








































.card {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 900px;
  margin: 40px auto;
}

.card h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #2c3e50;
}

.card p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

.dropzone {
  border: 2px dashed #3498db;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  margin: 20px 0;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}

.dropzone:hover {
  background: #ecf6fc;
  border-color: #2980b9;
}

.dropzone p strong {
  color: #3498db;
}

.info-text {
  background: #f9f9f9;
  border-left: 4px solid #3498db;
  padding: 20px;
  border-radius: 6px;
  margin-top: 30px;
}

.info-text h3 {
  margin-bottom: 15px;
  color: #2c3e50;
}

.checklist {
  list-style: none;
  padding: 0;
}

.checklist li {
  margin: 8px 0;
  font-size: 1rem;
}

.tip {
  margin-top: 15px;
  font-style: italic;
  color: #666;
}
