* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    caret-color: transparent;
    user-select: none;
    font-family: 'Inter', sans-serif;
}

/* GLOBAL */
body {
    background: #111111 !important;
    color: #ddd;
    padding-top:65px;
    font-family: 'Inter', sans-serif;
    z-index: 4 !important;
}

body::before {
    content: "";
    display: block;
    height: 100vh;
}

/* === POPRAVLJENO: Svi naslovi sada koriste Manrope (konzistentno sa ostatkom stranice) === */
h1, h2, h3, h4, h5, .section-title, .navbar-brand {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
}


section:not(.hero) {
    background: #111111;
    position: relative;
    z-index: 2;
}

/* HERO */
.hero {
    position: fixed !important;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 80vh;
    margin-top: 65px;
    background: url("images/Front.webp") center/cover no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 5 !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: none !important;
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    letter-spacing: 8px;
    margin-bottom: 40px;
}

.hero-text{
    font-family: 'Inter', sans-serif;
    font-size: clamp(18px, 1.4vw, 12px);
    line-height: 1.9;
    letter-spacing: 0.4px;
    color: #dcdcdc;
}
.hero-text b {
    font-weight: 600;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .hero-text {
        font-size: 16px;
        line-height: 1.6;
        padding: 0 20px;
    }
}


/* SERVICES */
.service-card {
    padding: 80px 0px !important;
    text-align: center;
    transition: transform .4s ease, background .4s ease;
    position: relative;     
    overflow: hidden;         
    cursor: pointer;
    height: 505px;
    background-size: cover;
    background-position: center;
}

.content h2 {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    z-index: 3;
}

@media (max-width: 1200px) {
    .service-card {
        height: 500px !important;
    }
}


/* overlay preko slike */
.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);  
    transition: 0.4s ease;
    z-index: 1;
}

/* hover overlay */
.service-card:hover::after {
    background: rgba(0,0,0,0.6);
}

.service-card img {
    width: 70px;
    margin-bottom: 25px;
}

.service-card h5 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* da tekst bude iznad overlay-a */
.service-card h5,
.service-card p {
    position: relative;
    z-index: 2;
}


.service-card h5{
    position: relative;
    padding: 47.5px 0;
}



.service-card p {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s ease;
    margin-bottom: 10px;
}



.service-card:hover p {
    opacity: 1;
    transform: translateY(0);
}




.coverImg {
    background: url("images/DSC_0114.JPG") center/cover no-repeat;
    background-size: cover;
    height: 315px;
}


.msg {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);

    text-align: center;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
}


.icon-invert {
    filter: invert(1);        /* invertuje boje: crno postaje belo */
    transition: filter 0.3s ease; /* za glatku promenu ako treba */
}


.section-title {
    font-weight: 700;
    font-size: 2rem;
    text-align: center;
    color: #fff;
    margin-bottom: 3rem;
    position: relative;
}

.section-title span {
    display: inline-block;
    padding: 0 1rem;
    position: relative;
}






/* GALERIJA */

.gallery-preview {
    background: #0b0b0b;
    padding: 100px 0;
    text-align: center;
}

.gallery-preview h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #e5e5e5;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.preview-grid img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    filter: grayscale(10%);
    transition: transform 0.4s ease, filter 0.4s ease;
}

.preview-grid img:hover {
    transform: scale(1.03);
    filter: grayscale(0);
}

.btn-more {
    color: #b08968;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 2px;
}

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

    .preview-grid img {
        height: 300px;
    }
}





/* GALERIJA */

.full-gallery {
    background: #0b0b0b;
    padding: 220px 0;
}

.full-gallery h1 {
    text-align: center;
    margin-bottom: 80px;
    font-size: 2.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: flex-end;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.overlay p {
    font-size: 0.9rem;
    color: #e5e5e5;
}

@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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



.gallery-title{
    text-align:center;
    margin:60px 0;
    font-weight:700;
    letter-spacing:2px;
}


/* slika */

.image-wrapper img{
    width:100%;
    height:450px;
    object-fit:cover;
    display:block;
}


.product-code{
    font-weight:200;
    color:#f8f8f8;
    text-align:left;
    padding: 13px;
}



.zoom-container{
position:relative;
overflow:hidden;
cursor:zoom-in;
}

.zoom-image{
width:100%;
max-height:80vh;
object-fit:contain;
transition:transform 0.1s ease;
}






/* KONTAKT FORMA */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: none;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 1rem;
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaa;
}

.contact-form button {
    background: #b08968;
    color: #111;
    font-weight: 600;
    padding: 16px 35px;
    border-radius: 50px;
    border: none;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #d4a373;
}

/* RESPONSIVE KONTAKT */
@media (max-width: 768px) {
    .contact .col-md-6,
    .contact .col-md-4 {
        text-align: center;
    }
}

/* GALERIJA MOBILE */
@media (max-width: 768px) {
    .gallery-track img {
        height: 150px;
    }
}

/* ICONS FIX MOBILE */
@media (max-width: 992px) {
    .navbar-icons {
        order: -1; /* prikazuje se iznad linkova */
        margin-bottom: 15px;
    }
}



/* Naslov */
.hero-content h1 {
    font-size: clamp(3rem, 2vw, 6rem);
    letter-spacing: 8px;
    color: #fff;
}

/* Ikonice desno */
.hero-icons {
    position: absolute;
    right: 0px;
    top: 40vh;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1;
}

.hero-icons a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.hero-icons a:hover {
    color: #b08968;
}




@media (max-width: 992px) {
    .hero-icons {
        position: absolute;
        left: 50%;
        right: auto;
        top: auto;
        bottom: 40vh;

        transform: translateX(-50%);
        
        flex-direction: row;
        justify-content: center;
        width: max-content;
        gap: 20px;
    }
}