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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background: #f5f5f7;
    color: #1d1d1f;
    line-height: 1.6;
}

header{
    display:none;
}

@media (min-width:992px){

    header{

        display:block;

        min-height:620px;

        background-size:cover;
        background-position:center;
        background-repeat:no-repeat;

    }

    body.lang-de header{
        background-image:url("../images/backgrounds/hero-banner-de.png");
    }

    body.lang-en header{
        background-image:url("../images/backgrounds/hero-banner-en.png");
    }

}

header h1{

    font-size:3.5rem;

    margin-bottom:20px;

    text-shadow:0 3px 12px rgba(0,0,0,.4);

}

.hero-container{

    text-align: center;

}

.hero-text{

    font-size:1.4rem;

    text-shadow:0 2px 8px rgba(0,0,0,.5);

}

main {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
    gap: 30px;
}

.app-card {
    background: white;
    border-radius: 18px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform .2s;
}

.app-card:hover {
    transform: translateY(-5px);
}

.app-card img {
    width: 96px;
    height: 96px;

    object-fit: contain;

    border-radius: 22px;

    box-shadow: 0 4px 10px rgba(0,0,0,.15);

    margin-bottom:20px;
}

.app-card h3 {
    margin-bottom:10px;
}

.app-card p {
    margin-bottom:20px;
    color:#555;
}

.store-buttons{
    display:flex;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
}

.button{
    display:inline-block;
    padding:12px 18px;
    border-radius:8px;
    text-decoration:none;
    color:white;
    font-weight:600;
}

.google{
    background:#34A853;
}

.apple{
    background:#000;
}

footer{
    margin-top:80px;
    padding:40px;
    text-align:center;
    background:#111827;
    color:white;
}

footer a{
    color:white;
    text-decoration:none;
    margin:0 10px;
}

.language-switch {

    display: flex;

    justify-content: flex-end;

    align-items: center;

    gap: 10px;

    padding: 15px 25px;

    background: white;

    border-bottom: 1px solid #e5e7eb;

}

.language-switch a {

    color: #444;

    text-decoration: none;

    font-weight: 600;

    transition: color .2s;

}

.language-switch a:hover {

    color: #000;

}

.language-switch span {

    color: #bbb;

}