/* =========================================
   RESET
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #FFF8E7;
    color: #000000;
    line-height: 1.6;
}

p code {
    font-family: "Courier New", Courier, monospace;
    font-size: 1.1em;
    color: #930500;
    font-weight: bold;
}

/* =========================================
   HEADER
   ========================================= */
.zaglavlje {
    background: linear-gradient(90deg, #930500, #95BBEA);
    color: white;
    text-align: center;
    padding: 50px 40px;
}

.zaglavlje h1 {
    margin: 0;
    font-size: 28px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.zaglavlje p {
    font-size: 16px;
    margin-top: 10px;
    font-style: italic;
}

/* =========================================
   SADRŽAJ
   ========================================= */
.sadrzaj {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

/* =========================================
   KARTICE
   ========================================= */
.kartica {
    background: white;
    border: 2px solid #95BBEA;
    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: #930500;
}

/* Uvodni odlomak */
.pocetni-uvod {
    margin-bottom: 40px;
}

.pocetni-uvod h2 {
    margin-bottom: 15px;
}

/* =========================================
   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 #930500;
    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;
}

/* =========================================
   DEMO OKVIR
   ========================================= */
.okvir {
    width: 200px;
    height: 200px;
    border: 2px dashed #95BBEA;
    border-radius: 10px;
    background: #FFF8E7;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
    perspective: 800px;
}

/* =========================================
   ELEMENT
   ========================================= */
.element {
    width: 80px;
    height: 80px;
    background: #930500;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 20px;
    transition: transform 0.6s ease;
    cursor: pointer;
    transform-style: preserve-3d;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.2);
}

/* =========================================
   3D TRANSFORMACIJE
   ========================================= */

/* rotateX */
.efekt-rotateX:hover {
    transform: rotateX(180deg);
}

/* rotateY */
.efekt-rotateY:hover {
    transform: rotateY(180deg);
}

/* rotateZ */
.efekt-rotateZ:hover {
    transform: rotateZ(180deg);
}

/* translateZ */
.efekt-translateZ:hover {
    transform: translateZ(80px);
}

/* rotate3d */
.efekt-rotate3d:hover {
    transform: rotate3d(1, 1, 0, 180deg);
}

/* kombinacija */
.efekt-kombinirano-3d:hover {
    transform: rotateX(45deg) rotateY(45deg) translateZ(50px);
}

/* =========================================
   SEKCIJA PERSPECTIVE-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;
}

.ishodiste-stavka p {
    font-size: 14px;
    font-weight: bold;
    color: #930500;
}

/* Bez perspektive */
.demo-bez-perspektive {
    perspective: none;
}

/* Ishodište gore */
.demo-ishodiste-gore {
    perspective: 600px;
    perspective-origin: center top;
}

/* Ishodište dolje */
.demo-ishodiste-dolje {
    perspective: 600px;
    perspective-origin: center bottom;
}

/* Zajednički hover efekt za sve tri */
.efekt-perspektiva:hover {
    transform: rotateX(70deg);
}

/* =========================================
   FOOTER
   ========================================= */
.podnozje {
    background: #930500;
    color: white;
    text-align: center;
    padding: 30px;
    font-weight: bold;
}

/* =========================================
   RESPONZIVNOST
   ========================================= */

/* Tablet */
@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);
    }
}

/* Desktop */
@media screen and (min-width: 992px) {
    .zaglavlje h1 {
        font-size: 42px;
    }

    .zaglavlje p {
        font-size: 18px;
    }

    .mreza-kartica {
        grid-template-columns: repeat(3, 1fr);
    }
}