/* =========================================
   OSNOVNO I RESET
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #FFFEEC;
    color: #000000;
    line-height: 1.6;
}

p code {
    font-family: "Courier New", Courier, monospace;
    font-size: inherit;
    color: #A88AED;
    font-weight: bold;
}

/* =========================================
   HEADER
   ========================================= */
.zaglavlje {
    background: linear-gradient(90deg, #A88AED, #CBD83B);
    color: white;
    text-align: center;
    padding: 50px 40px;
}

.zaglavlje h1 {
    margin: 0;
    font-size: 28px;
}

.zaglavlje p {
    font-size: 16px;
    margin-top: 10px;
    font-style: italic;
}

/* =========================================
   GLAVNI SADRŽAJ
   ========================================= */
.sadrzaj {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

/* =========================================
   KARTICE
   ========================================= */
.kartica {
    background: white;
    border: 2px solid #CBD83B;
    border-radius: 12px;
    padding: 25px;
    transition: transform 0.3s;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.kartica:hover {
    transform: translateY(-6px);
}

.kartica h2 {
    margin-top: 0;
    color: #A88AED;
}

/* =========================================
   UVOD
   ========================================= */
.pocetni-uvod {
    margin-bottom: 40px;
}

.pocetni-uvod h2 {
    margin-bottom: 15px;
}

/* =========================================
   GRID (MREŽA KARTICA)
   ========================================= */
.mreza-kartica {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}


/* =========================================
   CODE BLOK
   ========================================= */
.kratki-kod {
    display: inline-block;
    background: #F3F3F3;
    border-left: 4px solid #A88AED;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 14px;
    margin-top: 12px;
    margin-bottom: auto;
    color: #000000;
    font-family: "Courier New", Courier, monospace;
    font-weight: bold;
    text-align: center;
    line-height: 1.4;
}


/* =========================================
   OKVIR ZA DEMO
   ========================================= */
.okvir {
    width: 200px;
    height: 200px;
    border: 2px dashed #A88AED;
    border-radius: 10px;
    background: #FFFEEC;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
}


/* =========================================
   ELEMENT
   ========================================= */
.element {
    width: 60px;
    height: 60px;
    background: #CBD83B;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    transition: transform 0.4s ease;
    cursor: pointer;
}

/* =========================================
   TRANSFORMACIJE
   ========================================= */
.efekt-translate:hover {
    transform: translate(40px, -30px);
}

.efekt-rotate:hover {
    transform: rotate(180deg);
}

.efekt-scale:hover {
    transform: scale(1.5);
}

.efekt-skew:hover {
    transform: skewX(25deg);
}

.efekt-matrix:hover {
    transform: matrix(1.8, 0, 0, 1, 25, 0);
}

.efekt-kombinirano:hover {
    transform: rotate(10deg) scale(1.15) translateY(-15px);
}

/* =========================================
   TRANSFORM ORIGIN
   ========================================= */
.ishodiste-sekcija {
    margin-top: 40px;
}

.mreza-ishodiste {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 20px;
    width: 100%;
}

.ishodiste-stavka {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.okvir-mali {
    width: 300px;
    height: 150px;
    margin-top: 15px;
}

.okvir-mali .element {
    width: 55px;
    height: 55px;
}

.efekt-origin-gore {
    transform-origin: top left;
}

.efekt-origin-centar {
    transform-origin: center;
}

.efekt-origin-dolje {
    transform-origin: bottom right;
}

.efekt-origin-gore:hover,
.efekt-origin-centar:hover,
.efekt-origin-dolje:hover {
    transform: rotate(45deg);
}

/* =========================================
   FOOTER
   ========================================= */
.podnozje {
    background: #CBD83B;
    color: black;
    text-align: center;
    padding: 30px;
    font-weight: bold;
}

/* =========================================
   RESPONZIVNOST
   ========================================= */
@media screen and (min-width: 768px) {
    .zaglavlje h1 {
        font-size: 36px;
    }

    .mreza-kartica {
        grid-template-columns: repeat(2, 1fr);
    }

    .mreza-ishodiste {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (min-width: 992px) {
    .zaglavlje h1 {
        font-size: 42px;
    }

    .zaglavlje p {
        font-size: 18px;
    }

    .mreza-kartica {
        grid-template-columns: repeat(3, 1fr);
    }
}