* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    /*background: linear-gradient(135deg, #6b0f1a 0%, #b71c1c 50%, #d32f2f 100%);*/
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;

    background-image: url('hintergrund.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;

}

.container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex: 1;
}

.content {
    flex: 1;
    color: white;
    max-width: 500px;
}

footer {
    position: relative;
    text-align: center;
    width: 100%;
    padding: 20px;
    margin-top: 40px;
}

.info-text {
    margin: 0;
}

.info-text a {
    color: white;
    text-decoration: none;
}

.info-text a:hover {
    text-decoration: underline;
}

.logo-section {
    margin-bottom: 40px;
}

.logo-section img {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
    margin: auto;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.1;
    text-transform: uppercase;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.95;
    font-style: italic;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: auto;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 15px 25px;
    text-decoration: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.download-btn:hover {
    background: rgba(139, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.download-btn img {
    height: 24px;
    margin-right: 12px;
}

.mockup {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 550px;
}

.mockup img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
}

/* Icon Styles für APK Button */
.icon-android {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 12px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M17.6,9.48l1.84-3.18c0.16-0.31,0.04-0.69-0.26-0.85c-0.29-0.15-0.65-0.06-0.83,0.22l-1.88,3.24 c-2.86-1.21-6.08-1.21-8.94,0L5.65,5.67c-0.19-0.29-0.58-0.38-0.87-0.2C4.5,5.65,4.41,6.01,4.56,6.3L6.4,9.48 C3.3,11.25,1.28,14.44,1,18h22C22.72,14.44,20.7,11.25,17.6,9.48z M7,15.25c-0.69,0-1.25-0.56-1.25-1.25 c0-0.69,0.56-1.25,1.25-1.25S8.25,13.31,8.25,14C8.25,14.69,7.69,15.25,7,15.25z M17,15.25c-0.69,0-1.25-0.56-1.25-1.25 c0-0.69,0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25C18.25,14.69,17.69,15.25,17,15.25z"/></svg>') no-repeat center;
    background-size: contain;
}

/* Responsive Design */
@media (max-width: 1024px) {
    body {
        justify-content: flex-start;
        padding-top: 40px;
    }

    .container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .content {
        max-width: 100%;
        /* Ändere die Reihenfolge für Mobile: Logo zuerst */
        display: flex;
        flex-direction: column;
    }

    .logo-section {
        order: 1;
    }

    /* Mockup kommt nach dem Logo */
    .mockup {
        order: 2;
        margin-bottom: 30px;
    }

    /* Download-Buttons kommen zuletzt */
    .download-buttons {
        order: 3;
        margin: 0 auto;
    }

    h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    footer {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .tagline {
        font-size: 0.95rem;
    }

    .download-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }

    .mockup {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 15px;
        padding-top: 30px;
    }

    h1 {
        font-size: 1.5rem;
    }

    .subtitle {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .tagline {
        font-size: 0.85rem;
        margin-bottom: 30px;
    }

    .download-buttons {
        gap: 12px;
    }

    .download-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .download-btn img {
        height: 20px;
        margin-right: 10px;
    }

    .mockup {
        max-width: 300px;
        margin-bottom: 20px;
    }

    .logo-section {
        margin-bottom: 30px;
    }

    footer {
        margin-top: 20px;
        padding: 15px;
        font-size: 0.9rem;
    }
}
