/* --- OSNOVNO --- */
body {
    display: flex;
    justify-content: center; /* Centriraj karticu na sredinu ekrana */
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #222; /* Tamna pozadina dok ne učitamo sliku grada */
    background-image: url('https://source.unsplash.com/1600x900/?landscape'); /* Nasumična slika prirode */
    background-size: cover;
    color: white;
}

/* --- KARTICA --- */
.card {
    background: rgba(0, 0, 0, 0.6); /* Polu-providna crna */
    color: white;
    padding: 2em;
    border-radius: 30px;
    width: 100%;
    max-width: 420px;
    margin: 1em;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px); /* Zamućenje pozadine iza kartice */
}

/* --- PRETRAGA --- */
.search {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

input.search-bar {
    border: none;
    outline: none;
    padding: 10px 20px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.2); /* Providno bijela */
    color: white;
    font-family: inherit;
    font-size: 110%;
    width: 100%;
}

    input.search-bar::placeholder {
        color: #ddd;
    }

button.search-btn {
    margin-left: 10px;
    border: none;
    outline: none;
    background: white;
    border-radius: 50%; /* Okruglo dugme */
    width: 45px;
    height: 45px;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

    button.search-btn:hover {
        background: #e0e0e0;
    }

/* --- VRIJEME --- */
.weather h2 {
    margin-top: 0;
    margin-bottom: 0;
}

.weather h1.temp {
    margin: 0;
    font-size: 4rem; /* Ogromna temperatura */
    font-weight: 300;
}

.flex {
    display: flex;
    align-items: center;
}

.description {
    text-transform: capitalize; /* Prvo slovo veliko */
    margin-left: 8px;
}

/* --- DETALJI (Vjetar i Vlažnost) --- */
.details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.3);
}

.col {
    display: flex;
    align-items: center;
    text-align: left;
}

    .col i {
        font-size: 26px;
        margin-right: 10px;
    }

/* --- LOADING STANJE (Sakrij podatke dok se ne učitaju) --- */
.weather.loading {
    visibility: hidden;
    position: relative;
}

    .weather.loading:after {
        visibility: visible;
        content: "Učitavanje...";
        color: white;
        position: absolute;
        top: 0;
        left: 0;
    }
