
/* Beschreibungstext */
p {
  line-height: 1.25;
  margin: 10px 0;
  text-align: left;
/*  color: #d0d0d0;*/
}

/* Container für App */
.app-container {
  display: flex;
  flex-direction: row;
  align-items: center;
/*  background: #1e1e1e;*/
  padding: 20px;
/*  border-radius: 12px;*/
/*  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);*/
  width: 90%;
  gap: 20px;
}

/* Icon */
.app-icon {
  width: 150px;
  height: 150px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-icon img {
  max-width: 100%;
  border-radius: 8px;
}

/* Textbereich */
.app-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* App-Name */
.app-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 10px 0;
/*  color: #f8f8f8;*/
}

/* Teaser-Text*/
.app-teaser {
  margin: 1em 0;
/*  color: #fff;*/
  font-size: 1rem;
  font-weight: bold;
  position: relative;
}

/* Allgemeiner Button-Stil */
.button {
  float: right;
  display: inline-block;
  margin-top: 10px;
  margin-right: 10px;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
}


/* Light mode */
@media (prefers-color-scheme: light) {
    
    .app-icon {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }
    
    .button {
        background: linear-gradient(135deg, #007aff, #005bb5); /* Blau als Standard */
        color: #ffffff;
    }
}

/* Farben im Dark Mode */
@media (prefers-color-scheme: dark) {
    
    .app-icon {
        box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
    }
    
    .button {
            background: linear-gradient(135deg, #444, #222); /* Dunkles Grau im Dark Mode */
            color: #ffffff;
        }
}

@media only screen and (max-width : 600px) {
    .app-container {
        flex-direction: column;
    }
}

/* Hover-Effekt */
.button:hover {
  transform: translateY(-2px);
}

/* Zusätzliche Variante: Button mit Icon */
.button i {
  margin-right: 8px; /* Platz für Icon */
  font-size: 1.2rem; /* Größeres Icon */
  vertical-align: middle;
}
