/* Icon */
.app-icon-large {
  width: 150px;
  height: 150px;
  border-radius: 20px;
  margin-bottom: 20px;
  background: #fff;
}

.hero {
    text-align: center;
    padding: 40px 20px;
    margin:auto;
    width: fit-content;
}

.hero .tags-container {
    margin: auto;
    width: fit-content;
}


.hero-title {
    font-size: 2.5em;
}

.hero-subtitle {
    font-size: 1.2em;
    color: #666;
}

.cta-button {
    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;
}
/* Hover-Effekt */
.cta-button:hover {
  transform: translateY(-2px);
}

.description {
    width: 80%;
    margin: auto;
    padding: 20px;
    text-align: center;
    font-size: 1.1em;
}

.gallery {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.screenshot {
    width: 180px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.features ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.features li::before {
    content: '✅';
    margin-right: 15px;
    font-size: 1.5em;
    line-height: 1.2;
    flex-shrink: 0;
}

.features strong {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.features p {
    margin: 0;
    color: #555;
    font-size: 0.95em;
}
.footer {
    text-align: center;
    margin-bottom: 20px;
    font-size: 0.9em;
}

.footer a {
    color: #555;
    text-decoration: underline;
}

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

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