/* Reset osnovnih stilova */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0a0a; /* Jako tamna siva/crna */
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
}

.container {
    max-width: 600px;
    width: 100%;
}

.logo {
    max-width: 250px;
    margin-bottom: 40px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #f8f8f8;
}

p {
    font-size: 1.1rem;
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Sekcija za store linkove */
.store-links p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
}

.store-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Razmak između App Store i Play Store ikonica */
    margin-top: 10px;
}

.store-img {
    height: 50px; /* Možeš menjati visinu po potrebi */
    width: auto;
    transition: transform 0.3s ease;
    cursor: pointer;
    display: block;
}

.store-img:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    margin-top: 50px;
    font-size: 0.8rem;
    color: #444;
}

/* Responsivnost za mobilne telefone */
@media (max-width: 480px) {
    h1 { 
        font-size: 1.8rem; 
    }
    
    .logo { 
        max-width: 200px; 
    }

    .store-img {
        height: 40px; /* Smanjujemo ikone na malim ekranima */
    }

    .store-container {
        gap: 10px;
    }
}