:root {
    --main:#1f2937;
    --accent:#f59e0b;
    --light:#f9fafb;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}

body {
    margin:0;
    font-family: 'Inter', sans-serif;
    color: #1f2937;
    
    background: url("https://www.transparenttextures.com/patterns/concrete-wall.png");
    
    background-repeat: repeat;
    background-size: auto;
    overflow-x: hidden;
}





/* HEADER */
header {
    position: fixed;
    width: 100%;
    top:0;
    z-index:1000;
    background: var(--main);
    transition:0.3s;
}

header.scrolled {
    box-shadow:0 4px 12px rgba(0,0,0,0.3);
}

.nav {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 20px;
    max-width:1100px;
    margin:auto;
}

.logo {
    display: flex;
    align-items: center;
     max-width: 180px;
}

.logo-svg {
    
    
    display: block;
    width: 100%;
    height: auto;
}


.logo-svg {
    height: 65px;
    width: auto;
    display: block;
}

/* ulazak loga */
.logo-svg rect,
.logo-svg text {
    opacity: 0;
    transform: translateY(10px);
    animation: logoIn 1.4s ease forwards; /* 🔥 sporije */
}

/* kašnjenje za slojeve */
.logo-svg rect:nth-child(1) { animation-delay: 0.2s; }
.logo-svg rect:nth-child(2) { animation-delay: 0.4s; }
.logo-svg rect:nth-child(3) { animation-delay: 0.6s; }
.logo-svg rect:nth-child(4) { animation-delay: 0.8s; }

.logo-svg text:nth-child(5) { animation-delay: 1s; }
.logo-svg text:nth-child(6) { animation-delay: 1.2s; }

@keyframes logoIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* mali hover “premium” efekat */
.logo-svg {
    transition: transform 0.3s ease;
}

.logo:hover .logo-svg {
    transform: scale(1.05);
}

@keyframes logoIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo img {
    transition: 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}




/* NAV LINKS */
.nav-links {
    display:flex;
    list-style:none;
    padding: 0;
    margin: 0;
}

.nav-links li {
    margin-left:20px;
    
    
}

.nav-links a {
    color:white;
    text-decoration:none;
    font-weight:500;
}



/* HAMBURGER */
.hamburger {
    display:none;
    flex-direction:column;
    justify-content:center;
    cursor:pointer;
    
}

.hamburger span {
    height:3px;
    width:25px;
    background:white;
    margin:4px 0;
    transition:0.3s;
}

/* HAMBURGER ANIMACIJA U X */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('pozadina.jpg') center center / cover no-repeat;
    z-index: -1;
}
.hero h1 {
    font-size:48px;
}

.btn {
    background:#FFD600;
    padding:12px 25px;
    display:inline-block;
    margin-top:15px;
    text-decoration:none;
    color:black;
    border-radius:5px;
}

/* SECTIONS */
section {
    padding:80px 20px;
    max-width:1100px;
    margin:auto;
}

h2 {
    text-align:center;
    margin-bottom:40px;
}

/* GRID */
.grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

#services .card {
    display: flex;
    align-items: center;
    justify-content: center;
}

.card img {
    width:100%;
    height:180px;
    object-fit:cover;
}

.card:hover {
    
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);

}

.card-content {
    padding:15px;
}

.card button {
    margin-top:10px;
    background:#FFD600;
    border:none;
    padding:10px;
    cursor:pointer;
    border-radius:5px;
}

/* FORM */
/* ===== KONTAKT FORMA FINAL ===== */

.form {
    display:flex;
    flex-direction:column;
    max-width:520px;
    margin:40px auto;
    padding:30px;
    
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    
    border-radius:16px;
    border:1px solid rgba(0,0,0,0.08);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    
    transition: 0.3s;
}

.form:hover {
    transform: translateY(-4px);
}

/* INPUTI */
.form input,
.form textarea {
    margin-bottom:15px;
    padding:14px;
    
    border-radius:8px;
    border:1px solid #ddd;
    
    background: #ffffff; /* 🔥 čisto bijelo */
    color: #1f2937;     /* 🔥 tvoja glavna boja */
    
    font-size:14px;
    transition:0.25s;
}

/* PLACEHOLDER */
.form input::placeholder,
.form textarea::placeholder {
    color: #9ca3af;
}

/* FOCUS */
.form input:focus,
.form textarea:focus {
    outline:none;
    border-color:#FFD600;
    box-shadow: 0 0 0 3px rgba(255,214,0,0.25);
}

/* TEXTAREA */
.form textarea {
    min-height:130px;
    resize: vertical;
}

/* BUTTON */
.form button {
    margin-top:10px;
    
    background: #FFD600;
    color: #000;
    
    padding:14px;
    border:none;
    cursor:pointer;
    font-weight:600;
    
    border-radius:8px;
    transition:0.3s;
}

/* BUTTON HOVER */
.form button:hover {
    background:#e6c200;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(255,214,0,0.3);
}

/* ===== INPUT GROUP (ikone) ===== */

.input-group {
    position: relative;
    margin-bottom: 15px;
}

/* IKONA */
.input-group i {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 14px;
    transition: 0.3s;
}

/* INPUT + TEXTAREA */
.input-group input,
.input-group textarea {
    width: 100%;
    padding: 14px 14px 14px 40px; /* 🔥 mjesto za ikonu */
    
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #fff;
    color: #1f2937;
    
    font-size: 14px;
    transition: 0.25s;
}

/* TEXTAREA FIX */
.input-group.textarea i {
    top: 18px;
    transform: none;
}

/* FOCUS EFEKT */
.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: #FFD600;
    box-shadow: 0 0 0 3px rgba(255,214,0,0.25);
}

/* IKONA NA FOCUS */
.input-group:focus-within i {
    color: #FFD600;
}

/* FOOTER */
footer {
    background:var(--main);
    color:white;
    text-align:center;
    padding:20px;
    
}
.foter{
    text-decoration: none;
    color:white;
    
}

/* WHATSAPP */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: #1ebe5d;
    color: white;
    border-radius: 50%;
    
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 26px;
    text-decoration: none;

    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* hover */
.whatsapp:hover {
    background: #1ebe5d;
}



/* MOBILE */
@media(max-width:768px){

    .nav-links {
        position:absolute;
        top:60px;
        left:0;
        width:100%;
        background:#FFD600;
        flex-direction:column;
        align-items:center;
        display:none;
    }
    
    .nav-links i {
    margin-right: 8px;
    display: inline-block;
}

    .nav-links.active {
        display:flex;
    }

    .nav-links li {
        margin:15px 0;
    }
   

    .hamburger {
        display:flex;
         
    }

    .hero h1 {
        font-size:32px;
    }
    


    
}

#services .card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    text-align: center;
}


.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 10px;
    transition: 0.3s;
}

.gallery img:hover {
    transform: scale(1.03);
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.9);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

.lightbox img {
    max-width:90%;
    max-height:80%;
    border-radius:10px;
}

.lightbox span {
    position:absolute;
    top:20px;
    right:30px;
    font-size:40px;
    color:white;
    cursor:pointer;
}

.card h3 {
    margin: 0;
    font-size: 18px;
}

.card p {
    color: #555;
    font-size: 14px;
}

.card {
    background:white;
    border-radius:10px;
    overflow:hidden;
    transition:0.3s;

    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px; /* da kvadrati budu ujednačeni */
}

.card-content {
    padding:15px;
    text-align: center;
}



#about {
    text-align: center;
    padding: 80px 20px;
}

.about-text {
    max-width: 850px;
    margin: auto;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    text-align: center;
}

/* ===== LOCATION MODERN ===== */

/* ===== LOCATION CENTER MODERN ===== */

.location {
    text-align: center;
    margin-top: 80px;
}

.location h3 {
    font-size: 26px;
    margin-bottom: 30px;
}

/* GLAVNA KARTICA */
.location {
    background: 
        linear-gradient(rgba(31,41,55,0.9), rgba(31,41,55,0.9)),
        url("https://www.transparenttextures.com/patterns/concrete-wall.png");
    
    color: white;
    padding: 80px 20px;
}



/* NASLOV */
.location-box h4 {
    margin-bottom: 20px;
    font-size: 18px;
}



/* REDOVI */
.loc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 12px 0;
    font-size: 15px;
}

.loc-item i {
    width: 22px;
    text-align: center;
    color: #FFD600;
    flex-shrink: 0;
    font-size: 16px;
}

.loc-item span {
    line-height: 1.4;
}

/* MAPA */
.map {
    max-width: 800px;
    margin: auto;
    height: 380px; /* 🔥 VEĆA VISINA */
}

.map iframe {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}
/* MOBILE */
@media (max-width: 768px) {
    .location-wrapper {
        grid-template-columns: 1fr;
    }
}
.top-socials {
    display: flex;
    gap: 5px;
    margin-right: 15px;
}

.top-socials a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 6px 10px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 5px;
    transition: 0.3s;
     
    
}

.top-socials a:hover {
    background: #FFD600;
    border-color: #FFD600;
    color: black;
}


@media(max-width:768px){

    .nav-links {
        position: fixed;
        top: 80px; /* 🔥 POVEĆANO (bitno) */
        left: 0;
        width: 100%;
        background: var(--main);

        flex-direction: column;
        align-items: center;

        display: none;

        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .hamburger {
        display: flex;
        z-index: 1000; /* da ostane klikabilan */
    }

    .hero h1 {
        font-size: 32px;
    }
    
}



.mobile-socials {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.mobile-socials a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.nav-links i,
.mobile-socials i {
    display: none;
}

.catalog-card {
    display: block; /* 🔥 VRATI normalan layout */
    padding: 0;
}

.catalog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.catalog-card .card-content {
    text-align: left; /* 🔥 ljepše za katalog */
    padding: 20px;
}

.catalog-card h3 {
    margin-bottom: 10px;
}

.catalog-card p {
    margin-bottom: 15px;
}

.catalog-card button {
    width: 100%;
}

.catalog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.catalog-card .card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.catalog-card button {
    margin-top: auto; /* 🔥 ovo je ključ */
   
}
@media(max-width:768px){

    .nav-links i {
        display: inline-block;
        margin-right: 8px;
    }
    .top-socials{
        display: none;
    }
    
     
}


.info-section {
    padding: 80px 20px;
    max-width: 1100px;
    margin: auto;
}

.info-section h2 {
    font-size: 34px;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.info-section h2::after {
    content: "";
    width: 80px;
    height: 3px;
    background: #FFD600;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

.about-text {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 14px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    line-height: 1.7;
    font-size: 17px;
    color: #fff;
}
#why-us h3 i {
    color: #FFD600;
}
.info-section.alt {
     background: rgba(255, 255, 255, 0.03);
}

.card i {
    font-size: 40px;
    color: #FFD600; /* ista boja kao logo */
    margin-bottom: 15px;
    display: block;
}
.card:hover i {
    transform: scale(1.2);
    transition: 0.3s;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.why-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.why-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.why-card p {
    font-size: 14px;
    color: #555;
}


.catalog-card {
    transition: 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.catalog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.catalog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-content {
    padding: 18px;
}

.card-content h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.desc {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 10px;
    line-height: 1.4;
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 8px 0;
}

.badge {
    background: #1f2937;
    color: white;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 6px;
}

.badge.yellow {
    background: #FFD600;
    color: #000;
}

.card-content ul {
    padding-left: 18px;
    font-size: 13px;
    margin: 10px 0;
}

.card-content button {
    margin-top: 10px;
    padding: 10px 14px;
    border: none;
    background: #FFD600;
    color: white;
    border-radius: 6px;
    cursor: pointer;
}

.card-content button:hover {
    background:#111;
    color: white;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.offer-card {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 14px;
    overflow: hidden;
    min-height: 220px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 20px;
    color: white;

    transition: transform 0.4s ease;
}

/* 🔥 background zoom efekt */
.offer-card {
    background-size: 110%;
    transition: background-size 0.5s ease, transform 0.4s ease;
}

.offer-card:hover {
    transform: translateY(-6px);
    background-size: 120%;
}
.offer-card h3,
.offer-card p {
    position: relative;
    z-index: 2;
}

.offer-card h3 {
    display: inline-block;
    background: rgba(0,0,0,0.45);
    padding: 6px 10px;
    border-radius: 8px;
    backdrop-filter: blur(6px);
}

.offer-card p {
    background: rgba(0,0,0,0.35);
    padding: 6px 10px;
    border-radius: 8px;
    margin-top: 5px;
    backdrop-filter: blur(6px);
}
.offer-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
}

.offer-card:nth-child(1) { animation-delay: 0.1s; }
.offer-card:nth-child(2) { animation-delay: 0.2s; }
.offer-card:nth-child(3) { animation-delay: 0.3s; }
.offer-card:nth-child(4) { animation-delay: 0.4s; }
.offer-card:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.offer-card::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.15),
        transparent
    );
    transform: rotate(25deg);
    transition: 0.6s;
}

.offer-card:hover::after {
    left: 120%;
}
/* TAMNI OVERLAY */
.offer-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.2)
    );
    z-index: 0;
}

/* TEKST ISPRED OVERLAYA */
.offer-card h3,
.offer-card p {
    position: relative;
    z-index: 1;
}

/* HOVER EFEKT */
.offer-card:hover {
    transform: translateY(-6px) scale(1.02);
}

.offer-card:hover::before {
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.25)
    );
}

/* TEKST */
.offer-card h3 {
    font-size: 18px;
    margin-bottom: 6px;
    color: #fff;
}

.offer-card p {
    font-size: 13px;
    opacity: 0.9;
    color: #fff;
}

.offer-card h3 {
    margin-bottom: 8px;
}

.offer-card p {
    font-size: 13px;
    opacity: 0.8;
    line-height: 1.4;
}

.offer-card:hover {
    transform: translateY(-6px);
    
    border-color: #FFD600;
}

/* GLAVNA KARTICA */
.offer-card.main {
    grid-column: span 2;
    min-height: 260px;
}

.partners-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.partner-card {
    
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s;
}

.partner-card img,
.partner-card svg {
    max-width: 180px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: 0.3s;
}

.partner-card:hover img,
.partner-card:hover svg {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 768px) {

    /* SPRJEČAVA SVE HORIZONTALNE GREŠKE */
    html, body {
        overflow-x: hidden;
    }

    /* NAV FIX */
    .nav {
        padding: 12px 15px;
        flex-wrap: nowrap;
    }

    /* LOGO NE SMIJE BJEŽATI */
    .logo {
        max-width: 240px;
        flex-shrink: 0;
    }

    .logo-svg {
        max-height: 90px;
        width: 100%;
    }

    /* HAMBURGER SIGURNO DESNO */
    .hamburger {
        display: flex;
        margin-left: auto;
        z-index: 9999;
    }

    /* MENU FULL WIDTH ISPOD HEADERA */
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--main);
        display: none;
        flex-direction: column;
        align-items: center;
        z-index: 9998;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 15px 0;
    }

    /* HERO DA SE NE REŽE */
    .hero {
        min-height: 100vh;
        height: auto;
        padding-top: 100px;
        background-position: center;
        background-size: cover;
    }

    /* TEKST MANJI */
    .hero h1 {
        font-size: 28px;
    }

    /* GRID NA 1 KOLONU */
    .grid,
    .offer-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    /* SLIKE DA SE NE RAZBIJU */
    .gallery img {
        height: auto;
    }
}

/* FIX ZA IKONU U TEXTAREA */
.input-group.textarea i {
    top: 16px;
    transform: none;
}

#catalog .catalog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

#catalog .catalog-card .card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

#catalog .catalog-card button {
    margin-top: auto;
}

.hero {
    max-width: none !important;
    width: 100vw;
    margin: 0;
    padding: 0;
}
.hero {
    padding: 0 !important;
}
@media (max-width: 768px) {
    .hero::before {
        background: url("zamobpozadina.jpg") center  / cover no-repeat;
        background-size: contain;
    }
}
/* CENTRIRANJE TEKSTA U LOCATION SEKCIJI (bez mape) */
/* CENTRIRANJE SAMO BOXA, NE CIJELE SEKCIJE */
.location {
    text-align: center;
}

/* KARTICA OSTANE CENTRIRANA */
.location-box {
    display: inline-block;
    text-align: left;
    margin: 0 auto;
}

/* IKONE PORAVNANE */
.loc-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* SVE IKONE U ISTOJ LINIJI */
.loc-item i {
    width: 22px;
    text-align: center;
    flex-shrink: 0;
}

/* MAPA OSTAJЕ FULL WIDTH */
.map {
    width: 100%;
    max-width: 800px;
    margin: auto;
    height: 380px;
}

.checkbox-group {
    margin-top: 15px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #007bff;
    cursor: pointer;
}
.map-btn {
    background: #FFD600;
    color: #111;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.map-btn:hover {
    background: #ffca00;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.map-btn i {
    font-size: 16px;
}

.gdpr-check a{
    color:#FFD600;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.gdpr-check a:hover{
    color:#ffffff;
    text-decoration:none;
}

.gdpr-check{
    color:#ddd;
    font-size:14px;
}



.lang-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.lang-current {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.lang-current img {
  width: 18px;
  height: 12px;
  border-radius: 2px;
}

.lang-menu {
  position: absolute;
  top: 110%;
  right: 0;
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
  display: none;
  min-width: 150px;
  z-index: 9999;
}

.lang-menu div {
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: white;
  font-size: 13px;
}

.lang-menu div:hover {
  background: rgba(255,255,255,0.1);
}

.lang-menu img {
  width: 18px;
  height: 12px;
  border-radius: 2px;
}

/* MOBILE */
@media (max-width: 768px) {
  .lang-current {
    font-size: 11px;
    padding: 4px 8px;
  }

  .lang-menu {
    right: -10px;
  }
}
.lang-menu.show {
  display: block;
}

@media (max-width: 768px) {

    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
    }

    .nav {
        padding: 10px 15px;
        height: 70px; /* 🔥 KLJUČNO */
        display: flex;
        align-items: center;
    }

    .logo {
        max-width: 160px;
        display: flex;
        align-items: center;
    }

    .logo-svg {
        height: 45px; /* smanji logo na mobitelu */
    }

    /* MENU OTVARANJE ISPOD HEADERA */
    .nav-links {
        position: fixed;
        top: 70px; /* ISTA visina kao nav */
        left: 0;
        width: 100%;
        background: var(--main);
        flex-direction: column;
        align-items: center;
        display: none;
        z-index: 9998;
    }

    .nav-links.active {
        display: flex;
    }
}

/* ===== NAŠA PONUDA RESPONSIVE FIX ===== */

@media (max-width: 768px) {

    #offer {
        padding-left: 15px;
        padding-right: 15px;
    }

    .offer-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* GLAVNA KARTICA */
    .offer-card.main {
        grid-column: span 1;
        min-height: 260px;
    }

    .offer-card {
        min-height: 220px;
        border-radius: 16px;

        background-size: cover !important;
        background-position: center;

        padding: 18px;

        justify-content: flex-end;
    }

    .offer-card h3 {
        font-size: 18px;
        line-height: 1.3;

        width: fit-content;
        max-width: 100%;
    }

    .offer-card p {
        font-size: 13px;
        line-height: 1.5;

        width: fit-content;
        max-width: 100%;
    }

    /* UKLANJA PREVELIKI ZOOM NA MOB */
    .offer-card:hover {
        transform: none;
        background-size: cover !important;
    }

    .offer-card::after {
        display: none;
    }
}


/* ===== TABLET ===== */

@media (min-width: 769px) and (max-width: 1024px) {

    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .offer-card.main {
        grid-column: span 2;
    }

    .offer-card {
        min-height: 240px;
    }
}

.equipment-slider {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.equipment-track {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 10px;
}

/* sakrij scrollbar */
.equipment-track::-webkit-scrollbar {
    display: none;
}

.equipment-track img {
    flex: 0 0 auto;
    height: 180px;
    width: auto;
    border-radius: 12px;
    scroll-snap-align: center;
    object-fit: contain;
    cursor: pointer;
}

/* STRELICA */
.slider-btn {
    background: rgba(0,0,0,0.6);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: 0.2s;
}

.slider-btn:hover {
    background: rgba(0,0,0,0.85);
}

.slider-btn.prev {
    margin-right: 5px;
}

.slider-btn.next {
    margin-left: 5px;
}

@media (max-width: 768px) {
    .equipment-track img {
        height: 140px;
    }

    .slider-btn {
        width: 34px;
        height: 34px;
    }
}
:root {
    --header-h: 70px;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: var(--main);
    padding: 12px 0; /* 🔥 više prostora gore/dolje */
}

.hero {
    padding-top: var(--header-h);
}

/* ===== MINI GALERIJA ===== */

/* ===== MODERN SLIDER ===== */
.catalog-slider {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: auto;
    overflow: hidden;
    border-radius: 12px;
}

.catalog-track {
    display: flex;
    transition: transform 0.5s ease;
}

.catalog-track img {
    width: 100%;
    flex-shrink: 0;
    object-fit: contain;   /* 🔥 ne reže sliku */
    display: block;
    background: white;     /* da ne izgleda prazno */
    padding: 10px;
    height: 300px;         /* kontrola visine */
}

/* strelice */


.cat-arrow.left { left: 10px; }
.cat-arrow.right { right: 10px; }


/* ===== KATALOG STRELICE - SAMO IKONA ===== */
.catalog-slider .cat-arrow {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;

    color: #fff; /* ili #FFD600 ako želiš žutu */
    font-size: 28px;

    width: auto;
    height: auto;

    padding: 0 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.2s ease;
}

/* hover lagano pojačanje */
.catalog-slider .cat-arrow:hover {
    transform: translateY(-50%) scale(1.15);
    opacity: 0.8;
}
/* ===== KATALOG STRELICE - CENTRIRANE + CRNE ===== */
.catalog-slider .cat-arrow {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;

    color: #000; /* crna boja */
    font-size: 30px;

    width: 50px;
    height: 100%;

    display: flex;
    align-items: center;      /* vertikalno centriranje */
    justify-content: center;  /* horizontalno centriranje */

    position: absolute;
    top: 0;

    transform: none; /* skida prethodni translate */
}

/* lijeva i desna pozicija */
.catalog-slider .cat-arrow.left {
    left: 0;
}

.catalog-slider .cat-arrow.right {
    right: 0;
}

/* hover */
.catalog-slider .cat-arrow:hover {
    opacity: 0.6;
}
/* ===== FIX KATALOG STRELICE (FINAL CLEAN) ===== */
.catalog-slider .cat-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: transparent !important;
    border: none !important;
    box-shadow: none !important;

    color: #000;
    font-size: 28px;

    cursor: pointer;
    z-index: 10;

    transition: 0.2s ease;
}

/* lijeva */
.catalog-slider .cat-arrow.left {
    left: 8px;
}

/* desna */
.catalog-slider .cat-arrow.right {
    right: 8px;
}

/* hover */
.catalog-slider .cat-arrow:hover {
    opacity: 0.6;
    transform: translateY(-50%) scale(1.1);
}


