
/* Osnovno */

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family: "oswald", Helvetica, sans-serif;
    text-align:center;
    /*background:linear-gradient(180deg, #dff4ff 0%, #f3faff 45%, #ffffff 100%);*/
    background: #022A6C;
    background: linear-gradient(180deg,rgb(30, 47, 108) 35%,
                 #793515 90%);
    color:#111;
    position:relative;
    overflow-x:hidden;
    min-height:100vh;
}

/* Pozadinske ikonice */

.bg-icon{
    position:absolute;
    font-size:34px;
    opacity:0.36;
    z-index:0;
    pointer-events:none;
    user-select:none;
}

/* Blur krugovi */

.bg-blob{
    position:absolute;
    border-radius:50%;
    filter:blur(80px);
    opacity:0.20;
    z-index:0;
    pointer-events:none;
}

.blob1{
    width:240px;
    height:240px;
    background:#a7ddff;
    top:160px;
    left:-90px;
}

.blob2{
    width:280px;
    height:280px;
    background:#c9dcff;
    top:860px;
    right:-100px;
}

.blob3{
    width:220px;
    height:220px;
    background:#d5f3ff;
    top:1450px;
    left:15%;
}

/* Sadr탑aj iznad pozadine */

.menu-button,
.menu,
.content,
footer{
    position:relative;
    z-index:1;
}

/* Naslovi */

h1{
    font-family: "Quadrillion", Helvetica, sans-serif;
    font-size:44px;
    color:#ffffff;
    margin:20px 0 18px;
    line-height:1.15;
}

h2{
    font-family: "oswald", Helvetica, sans-serif;
    font-size:32px;
    color:#0b3d91;
    margin-top:170px;
    margin-bottom:18px;
}

h2::after,
h3::after{
    content:"";
    display:block;
    max-width: 100%;
    height:4px;
    margin:12px auto 0;
    border-radius:999px;
    background:linear-gradient(90deg, #62bfff, #0b3d91);
}

h3{
    font-family: "oswald", Helvetica, sans-serif;
    color:#0b3d91;
    margin-top:0;
    margin-bottom:14px;
    font-size:24px;
}

/* Tekst */

p{
    color:#a9a9a9;
    line-height:1.8;
    font-size:17px;
    margin:0;
}

/* Linkovi */

a{
    color:#0b3d91;
    font-weight:bold;
    text-decoration:none;
    transition:0.3s ease;
}

a:hover{
    text-decoration:underline;
}

/* Hamburger gumb */

.menu-button{
    font-size:28px;
    cursor:pointer;
    position:fixed;
    top:20px;
    left:20px;
    z-index:1001;
    color:#0b3d91;
    background:rgba(255,255,255,0.92);
    padding:8px 13px;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,0.12);
    backdrop-filter:blur(8px);
}

/* Meni */

.menu{
    position:fixed;
    top:0;
    left:-320px;
    width:300px;
    height:100%;
    background:linear-gradient(180deg, #0b3d91, #082d6c);
    padding-top:100px;
    transition:0.3s ease;
    z-index:1000;
    box-shadow:4px 0 20px rgba(0,0,0,0.15);
}

.menu.open{
    left:0;
}

.menu a{
    display:block;
    color:white;
    padding:18px 20px;
    text-decoration:none;
    font-size:18px;
    text-align:left;
}

.menu a:hover{
    background:rgba(255,255,255,0.15);
    text-decoration: underline;
}

.menu i{
    display: inline;
    margin-right: 8px;
}


.menu-link{
    background-color: #072250;
    border-color: #072250;
    border-style: solid;
    border-radius: 25px;
    margin-top: 10px;
    margin-left: 20px;
    margin-right: 20px;
}

.mini-footer a{
    font-size: 16px;
    margin-top: 0px;
    color: rgb(0, 0, 0);
}

.face{
    display: flex;
    width: 100%;
    border-color: black;
    margin-top: 20px;
    margin-left: 90px;
}

.face i{
    font-size: 25px;
}

.face a:hover{
    background:rgba(255,255,255,0.15);
    border-style: groove;
    border-radius: 8px;
}

.tm{
    display: block;
    margin-top: 10px;
}

/* Sekcija */

.content{
    padding:80px 20px 60px;
    max-width:1100px;
    margin:auto;
}

.intro-box{
    max-width:900px;
    margin:0 auto 20px;
    padding:160px 10px 250px;
}

.intro-box p{
    margin-top: 30px;
}

.section-box{
    background:rgba(255,255,255,0.88);
    backdrop-filter:blur(8px);
    max-width:950px;
    margin:40px auto;
    padding:36px;
    border-radius:22px;
    box-shadow:0 10px 30px rgba(31, 63, 104, 0.10);
    border:1px solid rgba(255,255,255,0.55);
}

/* Kartice */

.cards{
    display:flex;
    flex-direction:column;
    gap:28px;
    max-width:760px;
    margin:110px auto;
}

.card1, .card2{
    width:100%;
    padding:30px 26px;
    border-radius:20px;
    box-shadow:0 10px 28px rgba(20, 52, 92, 0.10);
    transition:transform 0.3s ease, box-shadow 0.3s ease;
    text-align:center;
}

.card1{
    background:linear-gradient(180deg, rgba(77,155,224,0.96), rgba(56,128,196,0.96));
    color:white;
}

.card2{
    margin-top: 40px;
    background:linear-gradient(180deg, rgba(232,247,255,0.96), rgba(205,235,250,0.96));
    color:#16324f;
}

.card1 h3{
    color:white;
}

.card2 h3{
    color:#0b3d91;
}

.card1 p{
    color:white;
}

.card2 p{
    color:#16324f;
}

.card2:nth-child(1){
    transform:rotate(-0.8deg);
}

.card2:nth-child(2){
    transform:rotate(0.8deg);
}

.card2:nth-child(3){
    transform:rotate(-0.6deg);
}

.card1:hover, .card2:hover{
    transform:translateY(-5px) scale(1.01);
    box-shadow:0 16px 34px rgba(0,0,0,0.14);
}

/* Oznake */

.card-tag{
    display:inline-block;
    margin-bottom:14px;
    padding:6px 12px;
    font-size:13px;
    font-weight:bold;
    border-radius:999px;
    background:rgba(11,61,145,0.10);
    color:#0b3d91;
}

.card-tag.blue{
    background:rgba(11,61,145,0.12);
    color:#0b3d91;
}

.card-tag.green{
    background:rgba(47, 158, 68, 0.14);
    color:#1f7a35;
}

.card-tag.orange{
    background:rgba(255, 153, 0, 0.16);
    color:#b56a00;
}

/* Gumb/link u kartici */

.card-link{
    display:inline-block;
    margin-top:18px;
    padding:12px 22px;
    background:linear-gradient(135deg, #0b3d91, #1f67d2);
    color:white;
    border-radius:12px;
    text-decoration:none;
    box-shadow:0 8px 20px rgba(11,61,145,0.18);
    transition:all 0.3s ease;
}

.card-link:hover{
    background:linear-gradient(135deg, #082d6c, #1552b0);
    transform:translateY(-2px);
    text-decoration:none;
}

/* DEMO SEKCIJA */

.demo-sekcija{
    margin:55px auto 10px;
    padding:34px 24px 28px;
    max-width:1040px;
    background:rgba(255,255,255,0.68);
    border:1px solid rgba(255,255,255,0.7);
    border-radius:28px;
    backdrop-filter:blur(10px);
    box-shadow:0 16px 40px rgba(20, 52, 92, 0.10);
}

#demoNaslov{
   font-family: "oswald", Arial, sans-serif;
}

.demo-naslov-wrap{
    max-width:760px;
    margin:0 auto 26px;
}

.demo-mini-tag{
    display:inline-block;
    margin-bottom:12px;
    padding:7px 14px;
    border-radius:999px;
    background:rgba(11,61,145,0.10);
    color:#0b3d91;
    font-size:13px;
    font-weight:bold;
}

.demo-naslov-wrap h2{
    margin-top:0;
    margin-bottom:14px;
    font-size:36px;
}

.demo-naslov-wrap p{
    color:#3f5673;
}

.demo-grid{
    display:grid;
    grid-template-columns:0.92fr 1.15fr;
    gap:34px;
    align-items:center;
    text-align:left;
}

.demo-koraci{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.demo-korak{
    width:100%;
    display:flex;
    align-items:center;
    gap:16px;
    border:none;
    border-radius:20px;
    padding:18px;
    background:rgba(255,255,255,0.92);
    box-shadow:0 10px 24px rgba(20, 52, 92, 0.08);
    cursor:pointer;
    transition:all 0.25s ease;
    text-align:left;
}

.demo-korak:hover{
    transform:translateY(-2px);
}

.demo-korak.active{
    background:linear-gradient(135deg, #0e49bf 0%, #2f75ef 100%);
    color:#fff;
    box-shadow:0 18px 34px rgba(20, 68, 170, 0.22);
}

.demo-broj{
    width:52px;
    height:52px;
    min-width:52px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    font-weight:800;
    background:#d9e4f5;
    color:#56709c;
}

.demo-korak.active .demo-broj{
    background:rgba(255,255,255,0.16);
    color:#fff;
}

.demo-tekst{
    font-family: "oswald", Helvetica, sans-serif;
    display:flex;
    flex-direction:column;
    gap:4px;
    flex:1;
}

.demo-tekst strong{
    font-size:19px;
    line-height:1.2;
}

.demo-tekst small{
    font-size:14px;
    line-height:1.4;
    opacity:0.95;
}

.demo-korak:not(.active) .demo-tekst strong{
    color:#203656;
}

.demo-korak:not(.active) .demo-tekst small{
    color:#60708f;
}

.demo-strelica{
    font-size:30px;
    line-height:1;
    opacity:0.8;
}

.demo-browser{
    background:#fff;
    border-radius:26px;
    overflow:hidden;
    box-shadow:0 22px 50px rgba(18, 37, 76, 0.14);
    border:1px solid rgba(180, 202, 235, 0.7);
}

.demo-browser-top{
    height:50px;
    display:flex;
    align-items:center;
    gap:9px;
    padding:0 18px;
    background:#f8f9fc;
    border-bottom:1px solid #e9eef8;
}

.demo-browser-top span{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#c7d4ea;
}

.demo-slika-wrap{
    background:#eef4fb;
    padding:18px;
    border-radius:0 0 26px 26px;
    overflow:hidden;
}

.demo-slika-wrap img{
    width:100%;
    display:block;
    object-fit:cover;
    border-radius:16px;
    transition:transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
    box-shadow:0 12px 28px rgba(18, 37, 76, 0.10);
}

@media (hover: hover){
    .demo-slika-wrap:hover img{
        transform:scale(1.04);
        box-shadow:0 20px 38px rgba(18, 37, 76, 0.18);
        filter:brightness(1.02);
    }
}

.demo-opis{
    max-width:88%;
    margin:-38px auto 0;
    background:#ffffff;
    border-radius:24px;
    padding:26px 28px;
    box-shadow:0 16px 38px rgba(22, 43, 86, 0.11);
    position:relative;
    z-index:2;
    text-align:left;
}

.demo-opis h3{
    margin:0 0 12px;
    color:#123f93;
    font-size:26px;
    font-weight:800;
}

.demo-opis h3::after{
    display:none;
}

.demo-opis p{
    margin:0;
    color:#44516f;
    font-size:17px;
    line-height:1.75;
}

/* Footer */

footer{
    color:#05142d;
    margin-top:70px;
    padding:30px 20px 40px;
    font-size:17px;
}

/* Fontovi - stilovi teksta*/

        @font-face {
            font-family: "amble";
            src: url("nc_assets/fonts/amble_regular_macroman/Amble-Regular-webfont.woff");
        }

        @font-face {
            font-family: "oswald";
            src: url("nc_assets/fonts/Oswald/Oswald-VariableFont_wght.ttf");
        }

        @font-face {
            font-family: "fahim";
            src: url("nc_assets/fonts/fahim-sans/FahimSans-Regular.otf");
        }

        @font-face {
            font-family: "aego";
            src: url("nc_assets/fonts/aeogo-pxltd-serif/AeogoPxltdSerif-Regular.ttf");
        }

        @font-face {
            font-family: "bedafutr";
            src: url("nc_assets/fonts/bedafutr/Bedafutr-Regular.otf");
        }

        @font-face {
            font-family: "Quadrillion";
            src: url("nc_assets/fonts/quadrillion/Quadrillion\ Sb.otf");
        }

/* Tablet */

@media (max-width:992px){
    h1{
        font-size:40px;
    }

    h2{
        font-size:29px;
    }

    .menu-link{
        background-color: #072250;
        border-color: #072250;
    }

    .section-box{
        padding:30px 24px;
    }

    .cards{
        gap:22px;
    }

    .card2:nth-child(1),
    .card2:nth-child(2),
    .card2:nth-child(3){
        transform:none;
    }

    .demo-grid{
        grid-template-columns:1fr;
    }

    .demo-naslov-wrap h2{
        font-size:31px;
    }

    .demo-opis{
        max-width:92%;
    }
}

/* Mobitel */

@media (max-width:768px){

    html, body {
    overflow-x: hidden;
    }

    .menu{
        width:100%;
        left:-800px;
    }

    .menu.open{
        left:0;
    }

    .menu-button{
        top:12px;
        left:12px;
        font-size:26px;
        padding:7px 12px;
    }

    .menu-link{
        background-color: #072250;
        border-color: #072250;
    }

    .content{
        padding:60px 14px 40px;
    }

    h1{
        font-size:32px;
    }

    h2{
        font-size:26px;
        margin-top:52px;
    }

    h3{
        font-size:22px;
    }

    p{
        font-size:16px;
        line-height:1.75;
    }

    .intro-box{
        padding:200px 80px 400px;
    }

    .section-box{
        margin:24px auto;
        padding:24px 18px;
        border-radius:18px;
    }

    .cards{
        gap:18px;
        margin:28px auto;
    }

    .card1, .card2{
        padding:22px 18px;
        border-radius:18px;
    }

    .card-link{
        width:100%;
        max-width:240px;
        padding:12px 18px;
    }

    .bg-icon{
        font-size:24px;
        opacity:0.045;
    }

    .blob1{
        width:180px;
        height:180px;
        top:140px;
        left:-70px;
    }

    .blob2{
        width:200px;
        height:200px;
        right:-80px;
        top:980px;
    }

    .blob3{
        width:160px;
        height:160px;
        top:1600px;
        left:5%;
    }

    .demo-sekcija{
        margin:34px auto 10px;
        padding:24px 14px 20px;
        border-radius:22px;
    }

    .demo-naslov-wrap h2{
        font-size:26px;
    }

    .demo-korak{
        padding:15px;
        gap:12px;
    }

    .demo-broj{
        width:46px;
        height:46px;
        min-width:46px;
        font-size:18px;
    }

    .demo-tekst strong{
        font-size:17px;
    }

    .demo-tekst small{
        font-size:13px;
    }

    .demo-slika-wrap{
        padding:12px;
    }

    .demo-opis{
        max-width:94%;
        margin:-24px auto 0;
        padding:20px 18px;
    }

    .demo-opis h3{
        font-size:22px;
    }

    .demo-opis p{
        font-size:15px;
    }
}

@media (max-width:480px){

    html, body {
    overflow-x: hidden;
    }

    h1{
        font-size:28px;
    }

    h2{
        font-size:23px;
    }

    p{
        font-size:15px;
    }

    .section-box{
        padding:20px 16px;
    }

    .card1, .card2{
        padding:20px 16px;
    }

    .menu{
        width:100%;
        left:-450px;
    }

    .face{
        display: flex;
    }

    .menu a:last-child{
        margin-top:12px;
        border-top:1px solid rgba(255,255,255,0.12);
    }

    .demo-naslov-wrap h2{
        font-size:23px;
    }

    .demo-opis h3{
        font-size:20px;
    }
    
    /* DEMO NARUDŽBE - mala vizualna razlika */

.demo-narudzbe-sekcija{
    margin-top:70px;
    background:rgba(255,255,255,0.72);
}

.demo-narudzbe-sekcija .demo-mini-tag{
    background:rgba(255, 153, 0, 0.16);
    color:#b56a00;
}

.demo-narudzbe-sekcija .demo-korak.active{
    background:linear-gradient(135deg, #b85f13 0%, #f08a24 100%);
    box-shadow:0 18px 34px rgba(184, 95, 19, 0.24);
}

.demo-narudzbe-sekcija .demo-opis h3{
    color:#9a4d0d;
}

.demo-narudzbe-sekcija h2::after{
    background:linear-gradient(90deg, #f08a24, #b85f13);
}
}