.hero-container {
    display: flex;
    flex-flow: row wrap;
}

.hero-element {
  flex: 1 1 50%;
  min-width: 200px;
}

/* Standard-Reihenfolge für große Bildschirme: 1, 2 nebeneinander, 3 darunter */
.hero-element-1 { 
  order: 1;
  align-content: center;
}
.hero-element-2 { order: 2; }
.hero-element-3 {
  order: 3;
  flex-basis: 100%;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px; /* alle Ecken rund mit Radius 10px */
  border: 1px solid rgba(165, 189, 198, 0.6);
  
  box-shadow: 0 4px 10px rgba(155, 179, 188, 0.8);
  filter: drop-shadow(0 4px 16px rgba(155, 155, 155, 0.8));
}

.feature-container {
  max-width: 100%;
  height: 30%;
  display: flex;
  flex-direction: row;
}

.feature-card {
  margin: 10px;
  padding: 10px;
  max-width: 100%;
  min-height: max-content;
  
  background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(245, 245, 245,1));
  border-radius: 20px; /* alle Ecken rund mit Radius 10px */
  border: 1px solid rgba(165, 189, 198, 0.3);
  
  box-shadow: 0 4px 10px rgba(155, 179, 188, 0.3);
  filter: drop-shadow(0 4px 16px rgba(155, 155, 155, 0.3));
}

.showcase-title {
  font-size: 24px;
  align-content: center;
  height: 40vh;
}

.showcase-card {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  align-content: space-around;
}

.showcase-size { flex-basis: 45%; }

.showcase-image img {
    width: 50vw;
    max-width: 100%;
    max-height: 100%;
    height: auto;
    
    border: 1px solid rgba(10, 10, 10, 0.2);
    border-radius: 20px;
    
    box-shadow: 0 4px 10px rgba(155, 179, 188, 0.8);
    filter: drop-shadow(0 4px 16px rgba(155, 155, 155, 0.8));
}

.showcase-text {
  align-items: center;
  justify-items: center;
  padding: 40px;
}

body {
  padding-top: 70px;
  font-family: sans-serif;
  color: rgba(20, 20, 20, 1);
}

a:link, a:visited, a:hover, a:active {
    text-decoration: none;
    color: inherit;
  }
  
  .main-width {
    margin: auto;
    width: 90vw;
    align-content: center;
  }
  
  .flex {
    display: flex;
  }
  
  .padding-small {
    padding: 5px;
    gap: 5px;
    margin: 5px;
  }
  
  .center-text {
    margin: auto;
    text-align: center;
  }
  
  .cbutton {
    background: linear-gradient(to right, #a49ca577,#1042ad70); /* Hintergrundfarbe */
    color: white;              /* Schriftfarbe */
    border: none;              /* Kein Rahmen */
    padding: 10px 20px;        /* Innenabstand */
    border-radius: 5px;        /* Abgerundete Ecken */
    cursor: pointer;           /* Mauscursor */
  }
  
  .cbutton:link,
  .cbutton:visited {
    color: #f7efd7; /* Farbe für normale und besuchte Links */
  }
  
  .cbutton:hover,
  .cbutton:active {
    color: white; /* Farbe bei Hover und Klick */
    /*  text-decoration: underline; /* Optional: Unterstreichung bei Hover */
  }
  
  .download-button {
    background: linear-gradient(to right, #d74cf377,#1042ad70); /* Hintergrundfarbe */
    color: #f7efd7;              /* Schriftfarbe */
    border: none;              /* Kein Rahmen */
    padding: 10px 20px;        /* Innenabstand */
    border-radius: 5px;        /* Abgerundete Ecken */
    cursor: pointer;           /* Mauscursor */
}

.download-button:link,
.download-button:visited {
  color: #f7efd7; /* Farbe für normale und besuchte Links */
}

.download-button:hover,
.download-button:active {
  color: white; /* Farbe bei Hover und Klick */
  /*  text-decoration: underline; /* Optional: Unterstreichung bei Hover */
}

.manual-container {
  margin: auto;
  height: 40vh;
  align-content: center;
}

.shop {
  margin: auto;
  margin-bottom: 50px;
  width: 100%;
  border: 1px solid rgba(155, 155, 155, 0.1);
  border-radius: 20px;
}

.footer-container {
  background-color: #1e2a2e;
  color: #f7efd7;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  display: flex;
  flex: 1 33%;
}

.footer-logo {
  font-size: 24px;
  font-weight: bolder;
  background: #f7efd7;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}

.footer-list {
  flex: 1;                   /* equal width for each */
  padding: 0 10px;
}

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

.footer-list li {
  margin-bottom: 8px;
}

.footer-list a {
  color: #f7efd7;
  text-decoration: none;
}

.footer-list a:hover {
  text-decoration: underline;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  display: flex;
  justify-content: center;
  align-items: center;

  background-color: rgba(175, 199, 208, 0.8);
  border-bottom: 1px solid rgba(165, 189, 198, 0.3);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);

  box-shadow: 0 4px 10px rgba(155, 179, 188, 0.8);
  filter: drop-shadow(4px 4px 6px rgba(155, 155, 155, 0.8));

  padding: 10px 20px;  /* sorgt für Höhe, statt height:% */
}

.nav-container {
  width: 100%;
  max-width: 90%; /* optional, um Inhalte zu zentrieren */
  display: flex;
  justify-content: space-between; /* Logo links, Links rechts */
  align-items: center;
}

/* Logo */
.logo {
  font-family: sans-serif;
  font-size: 1.5rem;
  font-weight: bolder;
  background: linear-gradient(to right, #d74cf3,#1042ad);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}

/* Nav-Links (Desktop) */
.nav-links {
  display: flex;
  gap: 40px;
  position: static;    /* nicht absolut → bleiben rechts */
  margin-left: auto;   /* Logo links, Links nach rechts */
}

.nav-links a {
  color: #6b6b6b;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
}

.nav-links a:hover {
  color: #1042ad;
}

/* Hamburger Menü (nur sichtbar auf Mobile) */
.hamburger {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 25px;
  flex-direction: column;
  justify-content: space-around;
  z-index: 1100;
  position: relative;
}

.hamburger .line {
  background: #333;
  height: 3px;
  border-radius: 2px;
  transition: 0.3s;
}

/* Checkbox für Hamburger verstecken */
#hamburg {
  display: none;
}

/* === MOBILE STYLES === */
@media (max-width: 1200px) {
  .nav-links {
    display: none;              /* ausgeblendet standardmäßig */
    flex-direction: column;
    width: 360px;
    margin-top: 10px;
    background-color: white;
    padding: 10px 0;

    position: absolute;         /* unter der Navbar ausklappen */
    top: 100%;
    right: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    border-radius: 0 0 10px 10px;
  }

  /* Navigation anzeigen, wenn Checkbox aktiv */
  #hamburg:checked ~ .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 10px 20px;
    border-bottom: 1px solid #ddd;
  }

  .hamburger {
    display: flex;
    padding-right: 50px;
  }
}

/* Mobile Ansicht */
@media (max-width: 800px) {
  /* Für kleine Bildschirme: 2, 1, 3 untereinander */
  .hero-container { flex-direction: column; }
  .hero-element-1 { order: 2; }
  .hero-element-2 { order: 1; }
  .hero-element-3 { order: 3; }
  .hero-element { flex-basis: 100%; }
  
  .feature-container {
    padding: 10px;
    max-width: 100%;
    height: 30%;
    display: flex;
    flex-direction: column;
  }

  .feature-card { flex-direction: column; }
  
  .showcase-order-t { order: 1; }
  .showcase-order-b { order: 2; }
  .showcase-size { 
    flex-direction: column;
    flex-basis: 100%; 
  }

  .showcase-image img {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    height: auto;
  }

  .footer-container {
  background-color: #1e2a2e;
  color: #f7efd7;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1 100%;
  }
}

.form-width {
    margin: auto;
    width: 700px;
    align-content: center;

}