* {
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body {
    font-family:'Inter',sans-serif;
    background:#fff;
    color:#111;
    line-height:1.5;
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    width:100%;
    display:block;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

.text-center{
    text-align:center;
}

.font-weight-100{
    font-weight:100;
}

.font-weight-200{
    font-weight:200;
}

.font-weight-300{
    font-weight:300;
}

.font-weight-400{
    font-weight:400;
}

.font-weight-500{
    font-weight:500;
}

.font-weight-600{
    font-weight:600;
}

.font-weight-700{
    font-weight:700;
}

.font-weight-800{
    font-weight:800;
}

.p-stranice {
    font-size: 1rem;
    line-height: 2rem;
    text-indent: 2rem;
    margin-bottom: 2rem;
}

/* HEADER */
header{
    position:sticky;
    top:0;
    z-index:1000;
    background:#fff;
    border-bottom:1px solid #eee;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 0;
}

.logo{
    width:120px;
    font-size:36px;
    font-weight:800;
    letter-spacing:-2px;
}

.logo span{
    font-weight:300;
}

nav{
    display:flex;
    gap:30px;
    align-items:center;
}

nav a{
    font-size:16px;
    font-weight:400;
    transition:.3s;
}

nav a:hover{
    color:#00a3ff;
}

.btn{
    background:#000;
    color:#fff;
    padding:14px 24px;
    display:inline-block;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    background:#00a3ff;
}

/* HERO */
.hero{
    padding:80px 0;
    background-image:url('https://ugprint.rs/public/images/hero-images-large.png');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.hero-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.hero h1{
    font-size:64px;
    line-height:1;
    margin:20px 0;
    font-weight:400;
}

.hero h1 span{
    background:linear-gradient(90deg,#00a3ff,#ff00a8,#ffd500);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero p{
    color:#666;
    max-width:500px;
    margin-bottom:30px;
    font-size:20px;
    font-weight:600;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn-outline{
    border:1px solid #000;
    padding:14px 24px;
    font-weight:600;
}

.hero-image img{
    border-radius:12px;
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

/* BANNER WEB SHOP */
.webshop-banner{
    display:grid;
    grid-template-columns: 1fr 3fr;
    gap:40px;
    align-items:center;
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    padding:30px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.banner-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:12px;
    display:block;
}

.banner-content h2{
    font-size:1rem; /* clamp(28px, 3vw, 54px) */
    line-height:1.2;
    color:#111827;
    margin-bottom:30px;
    font-weight:700;
}

.btn{
    display:inline-block;
    padding:14px 28px;
    background:#111827;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    transform:translateY(-2px);
}

@media (max-width:768px){
    .webshop-banner{
        grid-template-columns:1fr;
    }

    .banner-content{
        text-align:center;
    }
}

/* CLIENTS */
.clients{
    padding:40px 0;
    border-top:1px solid #eee;
    border-bottom:1px solid #eee;
}

.clients-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:30px;
    align-items:center;
    text-align:center;
    color:#888;
    font-weight:700;
}


/* TWO GRID TEMPLATE */
.two-column-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.image-holder img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}


/* SERVICES */
section{
    padding:90px 0;
}

.section-title{
    margin-bottom:50px;
}

.section-title h2{
    font-size:48px;
    margin-bottom:10px;
}

.section-title p{
    color:#666;
}

.services-grid{
    max-width:1400px;
    margin:50px auto;
    padding:0 20px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.service-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.1);
    transition:.3s;
    display:flex;
    flex-direction:column;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.service-card-content{
    padding:25px;
}

.service-card h3{
    margin-bottom:10px;
    font-size:22px;
}

.service-card p{
    color:#666;
    font-size:15px;
}

.service-card-view-more{
    display:block;
    background:#000;
    color:#fff;
    padding:14px 24px;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}



.cards{
    max-width:1400px;
    margin:50px auto;
    padding:0 20px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.1);
    transition:.3s;
    display:flex;
    flex-direction:column;
}

.card:hover{
    transform:translateY(-8px);
}

.card img{
    width:100%;
    object-fit:cover;
}

.card-content{
    padding:25px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.card h3{
    margin-bottom:15px;
    color:#222;
    font-size:24px;
}

.card p{
    color:#666;
    line-height:1.7;
    margin-bottom:25px;
    flex:1;
}

.card a{
    text-decoration:none;
    color:#007bff;
    font-weight:600;
    margin-top:auto;
}

.card a:hover{
    color:#0056b3;
}


/* PROCESS */
.process{
    background:#fafafa;
}
.steps{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap: 10px;
    text-align:center;
}
.step{
    position:relative;
}
.step-number{
    width:70px;
    height:70px;
    border-radius:50%;
    color:#fff;
    margin:auto;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    font-weight:700;
    margin-bottom:20px;
}
.step h4{
    margin-bottom:10px;
}
.step p{
    color:#666;
    font-size:14px;
}
.step-bg-yellow{
    background-color: #FFFF00;
}
.step-bg-cyan{
    background-color: #00FFFF;
}
.step-bg-magenta{
    background-color: #FF00FF;
}
.step-bg-black{
    background-color: #000000;
}



    /* PORTFOLIO */



    .portfolio-grid{

      display:grid;

      grid-template-columns:repeat(5,1fr);

      gap:20px;

    }



    .portfolio-grid img{

      border-radius:10px;

      height:320px;

      object-fit:cover;

      transition:.3s;

    }



    .portfolio-grid img:hover{

      transform:scale(1.03);

    }



    /* MATERIALS */



    .materials-grid{

      display:grid;

      grid-template-columns:repeat(6,1fr);

      gap:20px;

    }



    .material{

      text-align:center;

    }



    .material img{

      border-radius:10px;

      margin-bottom:12px;

      height:170px;

      object-fit:cover;

    }



    /* FEATURES */



    .features-grid{

      display:grid;

      grid-template-columns:repeat(5,1fr);

      gap:30px;

      text-align:center;

    }



    .feature{

      padding:30px;

      border:1px solid #eee;

      border-radius:12px;

    }



    .feature h4{

      margin:15px 0 10px;

    }



    .feature p{

      color:#666;

      font-size:14px;

    }



    /* CTA */



    .cta{

      background:#111;

      color:#fff;

      border-radius:20px;

      padding:70px;

      display:flex;

      justify-content:space-between;

      align-items:center;

      gap:30px;

      flex-wrap:wrap;

    }



    .cta h2{

      font-size:54px;

      line-height:1.1;

    }



    .cta span{

      color:#ffd500;

    }





/* FOOTER */

    footer{

        background:#0f0f0f;

        color:#fff;

        padding:70px 0 40px;

        margin-top:80px;

    }

    .footer-grid{

        display:grid;

        grid-template-columns:1fr 1fr 1fr 1fr;

        gap:50px;

    }

    footer h4{

        margin-bottom:20px;

    }

    footer ul{

        list-style:none;

    }

    footer li{

        margin-bottom:12px;

        color:#bbb;

    }

    footer p{

        color:#bbb;

    }

    .copyright{

        border-top:1px solid #333;

        margin-top:50px;

        padding-top:30px;

        text-align:center;

        color:#777;

    }

















.card-grid {

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 20px;

    padding: 20px;

}



.card {

    background: #fff;

    border-radius: 12px;

    overflow: hidden;

    box-shadow: 0 4px 12px rgba(0,0,0,0.1);

    transition: transform 0.3s ease;

}



.card:hover {

    transform: translateY(-5px);

}



.card img {

    width: 100%;

    height: 220px;

    object-fit: cover;

    display: block;

}



.card-content {

    padding: 15px;

}



.card-content h3 {

    margin-bottom: 10px;

    font-size: 18px;

}



.card-content p {

    font-size: 14px;

    color: #666;

    line-height: 1.5;

}



/* Tablet */

@media (max-width: 1200px) {

    .card-grid {

        grid-template-columns: repeat(3, 1fr);

    }

}



/* Small Tablet */

@media (max-width: 768px) {

    .card-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}



/* Mobile */

@media (max-width: 480px) {
    .card-grid {
        grid-template-columns: 1fr;
    }
}









    /* MOBILE */



    @media(max-width:1100px){



      .services-grid,

      .portfolio-grid,

      .features-grid,

      .materials-grid,

      .clients-grid,

      .steps{

        grid-template-columns:repeat(2,1fr);

      }



      .hero-wrapper{

        grid-template-columns:1fr;

      }



      .hero h1{

        font-size:54px;

      }



      .footer-grid{

        grid-template-columns:1fr 1fr;

      }

    }



    @media(max-width:768px){



      nav{

        display:none;

      }



      .hero{

        padding:50px 0;

      }



      .hero h1{

        font-size:42px;

      }



      .section-title h2{

        font-size:36px;

      }



      .services-grid,

      .portfolio-grid,

      .features-grid,

      .materials-grid,

      .clients-grid,

      .steps,

      .footer-grid{

        grid-template-columns:1fr;

      }



      .cta{

        padding:40px 30px;

      }



      .cta h2{

        font-size:38px;

      }

    }

