body {
    font-family: 'Poppins', sans-serif;
    background-color: #000;
    color: #fff;
    margin: 0;
    padding: 0;
}

.custom-navbar {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.navbar-brand {
    font-size: 1.4rem;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: rgb(169, 209, 252) !important;
}

.brand-color {
    color: white;
}

.navbar-logo {
    height: 35px;
    width: auto;
    transition: transform 0.3s ease;
    filter: contrast(0.67);
}

.navbar-logo:hover {
    transform: scale(1.05);
}

/* HERO */
#hero .carousel-item img {
    height: 100vh;
    object-fit: cover;
    filter: brightness(0.5);
}

.carousel-caption {
    bottom: 30%;
    text-align: left;
    max-width: 600px;
}

.carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 0 0 20px black;
}

.hero-btn {
    background-color: rgb(115, 137, 160);
    color: white;
}

/* FILTER */
/* hero */
.scale-x {
    transform: scaleX(-1);
}

/* telefoni ikonice */
#contactWrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 1000;
}

#contactToggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgb(115, 137, 160);
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

#contactButtons {
    display: none;
    flex-direction: column;
    gap: 15px;
}

#contactButtons.active {
    display: flex;
}

.contact-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

.contact-btn svg {
    width: 45px;
    height: 45px;
}

.contact-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.contact-btn.viber {
    background-color: #b6b6b6;
}

.contact-btn.whatsapp {
    background-color: #b6b6b6;
}

@media (max-width: 767px) {
    #contactToggle {
        width: 40px;
        height: 40px;
    }
}

/* SEKCIJE OPŠTE */
section {
    padding: 60px 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: rgb(169, 209, 252);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: rgb(169, 209, 252);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* USLUGE */
#usluge .card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

#usluge .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgb(169, 209, 252);
    border-color: rgb(115, 137, 160);
}

#usluge h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
}

#usluge p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

.usluga {
    box-shadow: 0 0 30px rgb(161, 192, 226);
}

/* GALERIJA RADOVA */
#galerija {
    background-color: #0a0a0a;
}

#galerija .card-film {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#galerija .card-film:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgb(161, 192, 226);
}

#galerija img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

#galerija .card-film:hover img {
    transform: scale(1.05);
}

#galerija .card-body {
    padding: 20px;
}

#galerija .card-title {
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
}

.btn-margin-auto {
    display: block;
    margin: 0 auto;
    width: 25%;
}

@media (max-width: 767px) {
    .btn-margin-auto {
        width: 60%;
    }
}


/* KONTAKT */
#kontakt {
    background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
}

#kontakt h3 {
    color: rgb(169, 209, 252);
    margin-bottom: 25px;
    font-weight: 700;
}

#kontakt p {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 8px;
}

#kontakt strong {
    color: #fff;
}

#kontakt iframe {
    border-radius: 10px;
    box-shadow: 0 0 20px rgb(161, 192, 226);
    transition: box-shadow 0.3s ease;
}

#kontakt iframe:hover {
    box-shadow: 0 0 25px rgb(161, 192, 226);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    #galerija img {
        height: 200px;
    }

    .logo-text {
        display: none;
    }

    .carousel-caption h1 {
        font-size: 2rem;
    }

    .hero-btn {
        font-size: 1rem;
    }

    .nav-link {
        text-align: center;
    }

    section {
        padding: 40px 0;
    }

    .o-nama-mob {
        margin-top: 25px;
    }

    .p-section {
        text-align: left !important;
        margin: 0 0 45px 0!important;
        width: 100% !important;
    }

    .footer {
        font-size: 0.9rem;
    }
}

/* SEKCIJA - O nama */
/* O NAMA */
#onama img {
    border: 2px solid rgba(169, 209, 252, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

#onama img:hover {
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(169, 209, 252, 0.3);
}

#onama p {
    color: #ddd;
    line-height: 1.7;
}

#onama .highlight-text {
    color: rgb(169, 209, 252);
    font-weight: 500;
    margin-top: 10px;
}

#onama .btn-outline-light {
    border-color: rgb(169, 209, 252);
    color: rgb(169, 209, 252);
    transition: all 0.3s ease;
}

#onama .btn-outline-light:hover {
    background-color: rgb(169, 209, 252);
    color: #000;
}

/* opisni paragrafi u sekcijama */
.p-section {
    width: 70%;
    text-align: center;
    margin: 0 auto;
    font-size: 19px !important;
    margin-bottom: 25px;
}

/* FOOTER */
.footer {
    background-color: black;
    color: white;
    padding: 20px 0;
    text-align: center;
    font-family: "Rubik", sans-serif;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer p {
    font-size: 1em;
    margin: 0;
}

.footer a {
    color: rgb(169, 209, 252);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* usluge - slike */
.usluga img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.usluga h5 {
    color: #003366;
}

.usluga p {
    font-size: 0.95rem;
    color: #333;
}

/* dekorativne tehnike sekcija */
.dekorativna-card {
    max-width: 700px;
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.dekorativna-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dekorativna-card .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 51, 102, 0.65);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding: 1rem 2rem;
}

.dekorativna-card:hover .overlay {
    opacity: 1;
}

.dekorativna-card h5 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.dekorativna-card p {
    font-size: 1rem;
    line-height: 1.4;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(100%);
}

.dekorativna-card .overlay.show {
    opacity: 1 !important;
}

.dekorativna-p-napomena {
    font-size: medium !important;
}