/* Osnovno */

        *{
            box-sizing: border-box;
        }

        html{
            scroll-behavior:smooth;
        }




        body{
            font-family: "oswald", Helvetica, sans-serif;
            background-color: rgb(2, 42, 108);
            background-repeat: no-repeat;
            background-position: center -200px;
            background: #022A6C;
            background: linear-gradient(180deg,rgb(30, 47, 108) 35%,
                 #793515 90%);
            
            margin:0;
            text-align:center;
            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:820px;
            right:-100px;
        }

        .blob3{
            width:220px;
            height:220px;
            background:#d5f3ff;
            top:1500px;
            left:15%;
        }

        /* Sve iznad pozadine */

        .menu-button,
        .menu,
        .banner,
        .content,
        .reviews,
        .contact-box,
        footer{
            position:relative;
            z-index:1;
        }

        /* Naslovi */

        h1{
            font-family: "Quadrillion", Helvetica, sans-serif;
            font-size:48px;
            color:#0a2f6b;
            margin:0 0 18px;
            line-height:1.15;
        }

        h2{
            font-size:32px;
            color:#0b3d91;
            margin-top:20px;
            margin-bottom:140px;
        }

        #mail {
            font-size: 200%;
            margin-bottom: 100px;
        }

        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{
            color:#0b3d91;
            margin:0 0 14px;
            font-size:24px;
        }

        /* Tekst */

        p{
            color:#243447;
            line-height:1.8;
            font-size:17px;
            margin:0;
        }

        /* Linkovi */

        a{
            color:#0b3d91;
            text-decoration:none;
            font-weight:bold;
            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: 75px;
        }

        .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;
        }

        /* Banner */

        .banner{
            min-height:440px;
            width:100%;
            background-size:cover;
            background-position:center;
            display:flex;
            justify-content:center;
            position:relative;
        }

        .banner-vid{
            width: 100%;
        }

        .banner::before{
            content:"";
            position:absolute;
            top:0;
            left:0;
            width:100%;
            height:100%;
            
        }


        .banner-content{
            position:relative;
            max-width:850px;
            padding:20px;
            isolation: isolate;
        }


        .banner-content h1{
            margin-bottom: 120px;
        }


        /* Sekcije */

        .content{
            padding:70px 20px 40px;
            max-width:1100px;
            margin:auto;
        }

        /* Recenzije */

        .reviews{
            padding:70px 20px 30px;
        }

        .reviews-container{
            max-width:1100px;
            margin:0 auto;
        }

        .subtitle{
            color:#506175;
            margin-bottom:40px;
            font-size:17px;
        }

        .reviews-grid{
            display:grid;
            grid-template-columns:repeat(3, minmax(0, 1fr));
            gap:25px;
        }

        .review-card{
            background:rgba(255,255,255,0.78);
            backdrop-filter:blur(10px);
            padding:25px;
            border-radius:22px;
            box-shadow:0 10px 28px rgba(20,52,92,0.10);
            transition:transform 0.3s ease, box-shadow 0.3s ease;
            border:1px solid rgba(255,255,255,0.6);
            text-align:left;
        }

        .review-card:hover{
            transform:translateY(-5px) scale(1.01);
            box-shadow:0 16px 34px rgba(0,0,0,0.14);
        }

        .review-top{
            display:flex;
            align-items:center;
            gap:15px;
            margin-bottom:15px;
        }

        .review-top img{
            width:60px;
            height:60px;
            border-radius:50%;
            object-fit:cover;
        }

        .review-top h4{
            margin:0 0 4px;
            color:#0b3d91;
            font-size:18px;
        }

        .stars{
            color:gold;
            font-size:18px;
        }

        .review-card p{
            color:#4b5e73;
            line-height:1.7;
        }

        /* Kontakt box */

        .contact-box{
            background:rgba(255,255,255,0.88);
            backdrop-filter:blur(8px);
            max-width:800px;
            margin:40px auto 0;
            padding:36px 28px;
            border-radius:22px;
            box-shadow:0 10px 30px rgba(31,63,104,0.10);
            border:1px solid rgba(255,255,255,0.55);
        }

        .contact-box p{
            font-size: 110%;
            margin-bottom:100px;
        }

        /* Gumbi */

        .button-wrap{
            margin-top:90px;
        }

        .button{
            display:inline-block;
            padding:15px 30px;
            background:linear-gradient(135deg, #0b3d91, #1f67d2);
            color:white;
            border-radius:14px;
            text-decoration:none;
            box-shadow:0 10px 24px rgba(11,61,145,0.22);
            transition:all 0.3s ease;
        }

        .button:hover{
            background:linear-gradient(135deg, #082d6c, #1552b0);
            transform:translateY(-3px);
            text-decoration:none;
        }

        .social-link{
            margin-bottom: 250px;
        }

        /* 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;
            }

            .reviews-grid{
                grid-template-columns:1fr;
                max-width:720px;
                margin:0 auto;
            }
        }

        /* 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;
            }

            .banner{
                width: 100%;
            }

            .banner-vid{
                display: flex;
                max-width: 100%;
                justify-content: center;
            }

            #vid{
                width: 1000px;
                height: auto;
            }

            

            h1{
                font-size:32px;
            }

            h2{
                font-size:26px;
            }

            h3{
                font-size:22px;
            }


            p,
            .subtitle{
                font-size:16px;
                line-height:1.75;
            }

            .content{
                padding:45px 14px 30px;
            }

            .reviews{
                padding:45px 14px 20px;
            }

            .review-card{
                padding:22px 18px;
                border-radius:18px;
                text-align:center;
            }

            .review-top{
                justify-content:center;
                text-align:left;
            }

            .contact-box{
                margin:30px auto 0;
                padding:24px 18px;
                border-radius:18px;
            }

            .button{
                width:100%;
                max-width:280px;
                padding:14px 20px;
            }

            .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%;
            }
        }

        @media (max-width:480px){

            html, body {
                overflow-x: hidden;
            }

            h1{
                font-size:28px;
            }

            h2{
                font-size:23px;
            }

            .menu{
                width:100%;
                left:-450px;
            }

            .face{
                display: flex;
            }

            .banner-vid{
                margin-bottom: 150px;
                display: flex;
                max-width: 100%;
                justify-content: center;
            }

            #vid{
                width: 1000px;
                height: auto;
            }

            .banner{
                min-height:280px;
            }

            .banner{
                width: 100%;
            }

            


            .review-top{
                flex-direction:column;
                text-align:center;
            }

            .menu a:last-child{
            margin-top:12px;
            border-top:1px solid rgba(255,255,255,0.12);
        }
        }