/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navbar Container */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    height: 120px;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.5); /* Transparentan tamni sloj */
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Navbar Lists (Left and Right) */
.nav-left,
.nav-right {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-left li,
.nav-right li {
    margin: 0 10px;
}

/* Linkovi u Navigaciji */
.nav-left a {
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    padding: 5px 10px;
    font-family: 'Playfair Display', serif; /* Elegant font */
    display: inline-block; /* Ensures hover scaling works */
    transition: transform 0.3s ease, color 0.3s ease; /* Dodato skaliranje */
}

.nav-left a:hover {
    color: #c90393; /* Promena boje na hover */
    transform: scale(1.1); /* Efekat skaliranja */
}

.nav-right a {
    text-decoration: none;
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.nav-right li i:hover {
    color: #c90393;
    transform: scale(1.2);
}

/* Centriranje loga */
.nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.nav-logo img {
    max-width: 150px;
    height: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.nav-logo img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

/* Animacija loga */
.logo-wrapper {
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeIn 1s ease forwards;
}

/* Keyframes za animaciju */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 15;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 4px 0;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    z-index: 10;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu ul {
    list-style: none;
}

/* Linkovi u Mobilnom Meniju */
.mobile-menu a {
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    padding: 10px 15px;
    font-family: 'Playfair Display', serif;
    transition: transform 0.3s ease, color 0.3s ease;
    text-align: center;
}

.mobile-menu a:hover {
    color: #c90393;
    transform: scale(1.1);
}

/* Social Media Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    font-size: 1.5rem;
    color: #fff;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
    color: #c90393;
}

/* Responsive Design za tablet i mobilne uređaje */
@media (max-width: 1024px) {
    .nav-left,
    .nav-right {
        display: none; /* Sakrij horizontalne stavke na tabletima i mobilnim uređajima */
    }

    .hamburger-menu {
        display: flex; /* Prikaži hamburger meni */
    }

    .mobile-menu {
        display: none;
    }

    .mobile-menu.active {
        display: flex; /* Prikaži mobilni meni na klik */
    }

    .nav-logo img {
        max-width: 130px; /* Veći logo za tablet uređaje */
    }

    /* Mobilni i tablet meni - stavke */
    .mobile-menu a {
        font-size: 1.8rem; /* Veći font za stavke menija na tabletima */
        padding: 20px 25px; /* Veći razmak između stavki na tabletima */
    }

    .mobile-menu ul {
        gap: 25px; /* Veći razmak između stavki menija na tabletima */
        margin: 0;
        padding: 0;
    }
}





/* Hero Section with Darkened Background */
.hero {
    position: relative;
    background: url('slike/hero.webp') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    overflow: hidden;
}

/* Darkening Layer on Background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Adjust darkness here */
    z-index: 1;
}

/* Hero Content Above the Background */
.hero-content {
    position: relative;
    z-index: 2; /* Ensures content is above the dark layer */
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 20px;
    opacity: 0; /* Initially hidden */
    transform: translateY(30px); /* Initially moved down */
    animation: fadeInHero 1.2s ease-out forwards; /* Fade-in animation */
}

/* Animation for Hero Content */
@keyframes fadeInHero {
    from {
        opacity: 0;
        transform: translateY(30px); /* Starting point: off-screen */
    }
    to {
        opacity: 1;
        transform: translateY(0); /* Ending point: fully visible */
    }
}

/* Headline Styling */
.hero-content h1 {
    font-size: 3rem; /* Default for larger screens */
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif; /* Elegant font for the headline */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7); /* Shadow for better visibility */
    line-height: 1.2;
}

/* Paragraph Styling */
.hero-content p {
    font-size: 1.2rem; /* Default font size for paragraph */
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif; /* Clean, readable font for paragraphs */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7); /* Shadow for better visibility */
    line-height: 1.5;
}

/* Call-to-Action Button Styling */
.cta-button {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1.2rem;
    font-family: 'Roboto', sans-serif; /* Button font */
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    border: 2px solid #c90393; /* Transparent border */
    border-radius: 5px;
    background: transparent; /* Transparent button */
    transition: all 0.4s ease; /* Smooth transition for hover effect */
}

/* Button Hover Effect with Fill Animation */
.cta-button:hover {
    background: #c90393; /* Bright purpple background on hover */
    color: white; /* Text changes to black */
    box-shadow: 0 4px 8px rgba(235, 148, 212, 0.4); /* Glow effect */
    transform: scale(1.05); /* Slight scale-up on hover */
}

/* Responsive Styling */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem; /* Slightly smaller for tablets */
    }

    .hero-content p {
        font-size: 1rem; /* Smaller text for tablets */
    }

    .cta-button {
        font-size: 1rem; /* Adjust button size */
        padding: 10px 25px; /* Adjust padding for smaller screens */
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem; /* Smaller headline for mobile */
    }

    .hero-content p {
        font-size: 0.9rem; /* Smaller paragraph text for mobile */
    }

    .cta-button {
        font-size: 0.9rem; /* Smaller button for mobile */
        padding: 8px 20px; /* Adjust padding for mobile */
    }
}



/* Services Section */
.services {
    padding: 50px 20px;
    text-align: center;
    background: #f9f9f9;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
    color: #c90393;
}

/* Services Container */
.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* Individual Service Item */
.service-item {
    text-decoration: none; /* Uklanja podvlačenje linkova */
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: inherit; /* Zadržava originalne boje teksta */
}

/* Service Image */
.service-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    margin-bottom: 15px;
}

/* Service Title */
.service-item h3 {
    margin-bottom: 10px;
    color: #c90393;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

/* Service Description */
.service-item p {
    text-align: justify;
    line-height: 1.6;
    color: #555;
    font-size: 1rem;
    margin-top: 10px;
}

/* Hover Effect */
.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Styling */
@media (max-width: 768px) {
    .services-container {
        gap: 20px;
    }

    .service-item {
        width: 100%;
    }

    .service-item img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .services h2 {
        font-size: 2rem;
    }

    .service-item p {
        font-size: 0.9rem;
    }
}



/* O Nama Section */
.offer {
    padding: 50px 20px;
    background: #f9f9f9;
}

.offer h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #c90393;
    text-transform: uppercase;
    text-align: center; /* Centriran naslov */
    width: 100%;
}

/* Introductory Text Above Columns */
.intro-text {
    max-width: 900px;
    margin: 0 auto 30px; /* Centriran i razmak ispod */
    text-align: justify;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.intro-text .highlighted {
    font-size: 1.5rem;
    font-weight: bold;
    color: #c90393;
}

/* Offer Container with Image and List */
.offer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.offer-image {
    flex: 1;
    max-width: 500px;
}

.offer-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.offer-text {
    flex: 1;
    max-width: 500px;
    text-align: left;
    line-height: 1.6;
    color: #555;
}

.offer-text p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.offer-text ul {
    list-style: none;
    padding: 0;
}

.offer-text li {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #555;
    position: relative;
    padding-left: 30px;
}

.offer-text li::before {
    content: "✔";
    color: #c90393;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0;
}

/* Responzivni dizajn */
@media (max-width: 1024px) {
    .offer-container {
        flex-direction: column;
    }

    .offer-image, .offer-text {
        text-align: center;
    }

    .offer-text {
        text-align: justify;
    }

    .offer h2 {
        font-size: 2rem;
    }

    .intro-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .offer h2 {
        font-size: 1.8rem;
    }

    .intro-text .highlighted {
        font-size: 1.3rem;
    }

    .offer-image img {
        border-radius: 8px;
    }

    .offer-text ul {
        padding: 0 20px;
    }
}




/* Contact Section */
.contact {
    padding: 50px 20px;
    background: #c90393;
    color: #fff;
    text-align: center;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

/* Contact Container: Two Columns */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centriraj sadržaj */
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Support Information Column */
.support-info {
    flex: 1;
    width: 100%; /* Početna širina za sve uređaje */
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    text-align: left;
}

/* Stil za Support Text */
.support-info h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #c90393;
}

.support-info p {
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.6;
    color: #111;
}

/* Contact Form Column */
.contact-form {
    flex: 1;
    width: 100%; /* Početna širina za sve uređaje */
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    text-align: left;
}

/* Form Fields */
.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-size: 1rem;
    color: #111;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #c90393;
    border-radius: 5px;
    background: #e1dfdf;
    color: #111;
}

.contact-form .submit-button {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1.2rem;
    font-family: 'Roboto', sans-serif; /* Button font */
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    border: 2px solid #c90393; /* Transparent border */
    border-radius: 5px;
    background: #c90393; /* Transparent button */
    transition: all 0.4s ease; /* Smooth transition for hover effect */
}

.contact-form .submit-button:hover {
    background: #740356;
    box-shadow: 0 4px 8px rgba(201, 3, 147, 0.4); /* Glow effect */
    transform: scale(1.05); /* Slight scale-up on hover */
    cursor: pointer;
}
.contact-message {
    text-align: center;
    font-weight: bold;
    padding: 10px;
    margin-top: 10px;
    color: white;
    background-color: #c90393; /* Boja poruke */
    border-radius: 5px;
}
/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column; /* Kolone postaju vertikalne */
        gap: 20px;
    }

    .support-info,
    .contact-form {
        width: 100%; /* Kolone sada zauzimaju punu širinu */
        padding: 20px; /* Lagani padding za bolji izgled */
        margin: 0 auto;
    }
    .contact-form .submit-button {
        font-size: 1rem; /* Smanjenje veličine fonta */
        padding: 12px 20px; /* Manje margine za mobilne uređaje */
        width: 100%; /* Dugme zauzima punu širinu */
        box-sizing: border-box; /* Uključivanje paddinga u širinu */
    }
}

@media (max-width: 480px) {
    .contact-container {
        gap: 15px; /* Smanjen razmak između kolona */
    }

    .support-info,
    .contact-form {
        width: calc(100% - 30px); /* Kolone su gotovo pune širine sa razmakom sa strane */
        margin: 0 auto;
    }

    .support-info h3 {
        font-size: 1.3rem; /* Manji naslov u support sekciji */
    }

    .support-info p {
        font-size: 0.9rem; /* Smanjen font opisa */
    }

    .contact h2 {
        font-size: 1.8rem; /* Prilagodba veličine naslova */
        margin-bottom: 20px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 0.9rem; /* Manji font unosa */
        padding: 8px; /* Manji padding za kompaktan izgled */
    }

    .contact-form .submit-button {
        font-size: 1.1rem; /* Lagano povećanje za bolje čitanje */
        padding: 15px 20px; /* Prostranije dugme */
    }
}

/* Footer Styles */
.footer {
    background: #000;
    color: #fff;
    padding: 40px 20px;
    font-size: 0.9rem;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-about,
.footer-nav,
.footer-social {
    flex: 1;
    min-width: 200px;
}

.footer h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #c90393;
}

.footer p {
    line-height: 1.5;
    margin-bottom: 15px;
}

.footer-nav ul,
.footer-social ul {
    list-style: none;
    padding: 0;
}

.footer-nav ul li,
.footer-social ul li {
    margin-bottom: 10px;
}

.footer-nav ul li a,
.footer-social ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover,
.footer-social ul li a:hover {
    color: #c90393;
}

/* Social Media Icons */
.footer-social ul li {
    display: inline-block;
    margin-right: 10px;
    font-size: 1.5rem;
}

.footer-social ul li a img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.footer-social ul li a img:hover {
    transform: scale(1.1);
}

/* Footer Bottom Section */
.footer-bottom {
    margin-top: 30px;
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 15px;
    font-size: 0.8rem;
}
/* Footer Styles */
.footer-bottom a {
    color: #c90393;
    text-decoration: none;
    margin: 0 5px;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #c27c00;
}

/* Sekcija za uslove koriscenja i politiku privatnosti */
.page-content {
    padding-top: 120px; /* Razmak ispod navigacije */
    margin: 0 auto;
    max-width: 1200px; /* Širina sadržaja */
}

.page-content h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.page-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify; /* Poravnanje za bolju čitljivost */
}

.container {
    padding: 0 20px; /* Dodatni unutrašnji razmak za mobilne uređaje */
}

/* Sekcija za video za drustvene mreze */
/* Omotač za glavni sadržaj */
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Roboto', sans-serif; /* Modern i čitljiv font */
    line-height: 1.8;
    color: #333; /* Neutralna boja za čitanje */
}
/* Hero sekcija za sekundarne stranice */
.hero-secondary {
    position: relative;
    background-image: url('slike/SocialMediaVideo.webp'); /* Putanja do slike */
    background-size: cover;
    background-position: center;
    height: 50vh; /* Pola visine ekrana */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

/* Zatamnjenje preko hero slike za sekundarne stranice */
.hero-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Crni overlay sa prozirnošću */
    z-index: 1;
}

/* H1 stilizacija za sekundarne stranice */
.hero-secondary h1 {
    position: relative;
    z-index: 2;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7); /* Senka za bolju vidljivost */
    margin: 0;
}

/* Stilizacija za glavne naslove (h2) */
.content-container h2 {
    font-family: 'Playfair Display', serif; /* Elegantan font za naslove */
    font-size: 2.5rem;
    color: #c90393; /* Ključna boja brenda */
    margin-bottom: 20px;
    text-align: center;
}

/* Stilizacija za podnaslove (h3) */
.content-container h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #740356; /* Tamnija nijansa brenda */
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Paragrafi */
.content-container p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #444; /* Malo tamnija za bolji kontrast */
}

/* Liste */
.content-container ul {
    margin-left: 20px;
    padding-left: 20px;
    list-style-type: disc;
    color: #444;
}

.content-container ul li {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* CTA dugme */
.cta-buttonItem {
    display: inline-block;
    padding: 12px 25px;
    background-color: #c90393;
    color: #fff;
    font-size: 1.2rem;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.4s ease;
    text-align: center;
}

.cta-buttonItem:hover {
    background-color: #740356;
    box-shadow: 0 4px 8px rgba(201, 3, 147, 0.4); /* Dodaje lagani sjaj */
    transform: scale(1.05); /* Lagano povećanje na hover */
}

/* Tekstualni sadržaj centriran */
.content-container h2,
.content-container h3,
.content-container p,
.content-container ul {
    text-align: justify;
}

/* Responsivni omotač */
@media (max-width: 768px) {
    .content-container {
        padding: 10px;
    }
    .hero-secondary {
        height: 40vh; /* Smanjuje visinu hero sekcije na manjim ekranima */
    }

    .hero-secondary h1 {
        font-size: 2rem; /* Manji font za naslov na mobilnim uređajima */
    }

    .content-container h2 {
        font-size: 2rem;
    }

    .content-container h3 {
        font-size: 1.5rem;
    }

    .content-container p {
        font-size: 1rem;
    }

    .cta-buttonItem {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

/* Hero sekcija za Komercijalne reklmae, ona vuce vecinu dizajna iz pprethodne sekcjie video za drustvene mreze */
.hero-third {
    position: relative;
    background-image: url('slike/Advertising.webp'); /* Putanja do slike */
    background-size: cover;
    background-position: center;
    height: 50vh; /* Pola visine ekrana */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

/* Zatamnjenje preko hero slike za sekundarne stranice */
.hero-third::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Crni overlay sa prozirnošću */
    z-index: 1;
}
/* H1 stilizacija za sekundarne stranice */
.hero-third h1 {
    position: relative;
    z-index: 2;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7); /* Senka za bolju vidljivost */
    margin: 0;
}
@media (max-width: 768px) {
    
    .hero-third {
        height: 40vh; /* Smanjuje visinu hero sekcije na manjim ekranima */
    }

    .hero-third h1 {
        font-size: 2rem; /* Manji font za naslov na mobilnim uređajima */
    }

}

/* Hero sekcija za marketing na drustvenim mrezama, ona vuce vecinu dizajna iz pprethodne sekcjie video za drustvene mreze */
.hero-fourth {
    position: relative;
    background-image: url('slike/SocialMediaMarketing.webp'); /* Putanja do slike */
    background-size: cover;
    background-position: center;
    height: 50vh; /* Pola visine ekrana */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

/* Zatamnjenje preko hero slike za sekundarne stranice */
.hero-fourth::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Crni overlay sa prozirnošću */
    z-index: 1;
}
/* H1 stilizacija za sekundarne stranice */
.hero-fourth h1 {
    position: relative;
    z-index: 2;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7); /* Senka za bolju vidljivost */
    margin: 0;
}
@media (max-width: 768px) {
    
    .hero-fourth {
        height: 40vh; /* Smanjuje visinu hero sekcije na manjim ekranima */
    }

    .hero-fourth h1 {
        font-size: 2rem; /* Manji font za naslov na mobilnim uređajima */
    }

}
/* Hero sekcija za privacy-policy, ona vuce vecinu dizajna iz pprethodne sekcjie video za drustvene mreze */
.hero-fifth {
    position: relative;
    background-image: url('slike/privacy-policy.webp'); /* Putanja do slike */
    background-size: cover;
    background-position: center;
    height: 50vh; /* Pola visine ekrana */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

/* Zatamnjenje preko hero slike za sekundarne stranice */
.hero-fifth::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Crni overlay sa prozirnošću */
    z-index: 1;
}
/* H1 stilizacija za sekundarne stranice */
.hero-fifth h1 {
    position: relative;
    z-index: 2;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7); /* Senka za bolju vidljivost */
    margin: 0;
}
@media (max-width: 768px) {
    
    .hero-fifth {
        height: 40vh; /* Smanjuje visinu hero sekcije na manjim ekranima */
    }

    .hero-fifth h1 {
        font-size: 2rem; /* Manji font za naslov na mobilnim uređajima */
    }

}
/* Hero sekcija za uslovi koriscenja, ona vuce vecinu dizajna iz pprethodne sekcjie video za drustvene mreze */
.hero-sixth {
    position: relative;
    background-image: url('slike/uslovi-koriscenja.webp'); /* Putanja do slike */
    background-size: cover;
    background-position: center;
    height: 50vh; /* Pola visine ekrana */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

/* Zatamnjenje preko hero slike za sekundarne stranice */
.hero-sixth::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Crni overlay sa prozirnošću */
    z-index: 1;
}
/* H1 stilizacija za sekundarne stranice */
.hero-sixth h1 {
    position: relative;
    z-index: 2;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7); /* Senka za bolju vidljivost */
    margin: 0;
}
@media (max-width: 768px) {
    
    .hero-sixth {
        height: 40vh; /* Smanjuje visinu hero sekcije na manjim ekranima */
    }

    .hero-sixth h1 {
        font-size: 2rem; /* Manji font za naslov na mobilnim uređajima */
    }

}
/* ------- BLOG stranica za posetioce ----- */
/* Hero sekcija za uslovi koriscenja, ona vuce vecinu dizajna iz pprethodne sekcjie video za drustvene mreze */
.hero-blog {
    position: relative;
    background-image: url('slike/blog.webp'); /* Putanja do slike */
    background-size: cover;
    background-position: center;
    height: 50vh; /* Pola visine ekrana */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

/* Zatamnjenje preko hero slike za sekundarne stranice */
.hero-blog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Crni overlay sa prozirnošću */
    z-index: 1;
}
/* H1 stilizacija za sekundarne stranice */
.hero-blog h1 {
    position: relative;
    z-index: 2;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7); /* Senka za bolju vidljivost */
    margin: 0;
}




.blog-container {
    width: 90%;
    max-width: 1000px;
    margin: 20px auto;
}
.blog-container h2{
    font-family: 'Playfair Display', serif; /* Elegantan font za naslove */
    font-size: 2.5rem;
    color: #c90393; /* Ključna boja brenda */
    margin-bottom: 20px;
    text-align: center;
}
/* Ovo su naslovi blogova na stranici h2 SEO*/
.blog-post h2 {
    font-family: 'Playfair Display', serif; /* Elegantan font za naslove */
    font-size: 1.8rem;
    color: #c90393; /* Ključna boja brenda */
    margin-bottom: 20px;
    text-align: left;
}
.blog-post {
    background: white;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(201, 3, 147, 0.4);
}

.blog-post img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

.blog-meta {
    font-size: 14px;
    color: gray;
    margin-bottom: 10px;
}

.read-more {
    display: inline-block;
    padding: 12px 30px;
    font-size: 0.8rem;
    font-family: 'Roboto', sans-serif; /* Button font */
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    border: 2px solid #c90393; /* Transparent border */
    border-radius: 5px;
    background: #c90393; /* Transparent button */
    transition: all 0.4s ease; /* Smooth transition for hover effect */
}

.read-more:hover {
    background: #740356;
    box-shadow: 0 4px 8px rgba(201, 3, 147, 0.4); /* Glow effect */
    transform: scale(1.05); /* Slight scale-up on hover */
    cursor: pointer;
}

/* Pagination */
.pagination {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.pagination a {
    padding: 10px 15px;
    margin: 5px;
    background: #c90393;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.pagination a:hover {
    background: #740356;
    box-shadow: 0 4px 8px rgba(201, 3, 147, 0.4); /* Glow effect */
    transform: scale(1.05); /* Slight scale-up on hover */
    cursor: pointer;
}
@media (max-width: 768px) {
    
    .hero-blog {
        height: 40vh; /* Smanjuje visinu hero sekcije na manjim ekranima */
    }

    .hero-blog h1 {
        font-size: 2rem; /* Manji font za naslov na mobilnim uređajima */
    }
    .read-more{
        font-size: 1rem; /* Smanjenje veličine fonta */
        padding: 12px 20px; /* Manje margine za mobilne uređaje */
        width: 100%; /* Dugme zauzima punu širinu */
        box-sizing: border-box; /* Uključivanje paddinga u širinu */
        text-align: center;
    }
    .blog-container h2 {
        font-size: 2rem;
    }
    .blog-container h3{
        font-size: 1.4rem;
    }
}

/* Blog details page */


/* Navbar Container Blog details */
.navbar1 {
    position: absolute;
    top: 0;
    left: 0;
    height: 120px;
    width: 100%;
    z-index: 1000;
    background: rgba(180, 10, 126, 0.5); /* Transparentan tamni sloj */
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* Kontejner za ceo blog post */
.blog-details-container {
    width: 90%;
    max-width: 1000px;
    margin: 130px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(201, 3, 147, 0.4);
    text-align: center;
}

/* Naslov blog posta */
.blog-details-container h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #c90393;
    margin-bottom: 15px;
}

/* Meta podaci (autor, datum) */
.blog-details-meta {
    font-size: 14px;
    color: gray;
    margin-bottom: 15px;
}

/* Slika blog posta */
.blog-details-container img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    margin: 0 auto 20px;
}

/* Sadržaj blog posta */
.full-blog-content {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    text-align: justify;
    padding: 0 10px;
}

/* Dugme za povratak na blogove */
.blog-details-back {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    background: #c90393;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.blog-details-back:hover {
    background: #740356;
    box-shadow: 0 4px 8px rgba(201, 3, 147, 0.4);
    transform: scale(1.05);
}


/* Buttoni za deljenje na drustvenim mrezama */
.share-buttons {
    margin-top: 20px;
    text-align: center;
}

.share-buttons h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.share-btn {
    display: inline-block;
    margin: 5px;
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: 0.3s;
}

.fb-btn { background: #3b5998; }
.twitter-btn { background: #1da1f2; }
.linkedin-btn { background: #0077b5; }
.whatsapp-btn { background: #25d366; }

.share-btn:hover {
    opacity: 0.8;
}

/* Responsivnost */
@media (max-width: 768px) {
    .blog-details-container h2 {
        font-size: 2rem;
    }

    .full-blog-content {
        font-size: 1rem;
    }

    .blog-details-back {
        font-size: 0.9rem;
        padding: 10px 25px;
    }
    .full-blog-content h2 {
        font-size: 20px; /* Manja veličina fonta */
        line-height: 1.4; /* Poboljšana čitljivost */
        margin: 20px 0; /* Razmak iznad i ispod podnaslova */
        font-weight: bold; /* Podebljan tekst */
        text-align: left; /* Poravnanje ulevo */
    }
    .share-buttons {
        text-align: center; /* Centriranje dugmića */
        padding: 10px 0; /* Dodatni razmak iznad i ispod */
    }

    .share-buttons h3 {
        font-size: 18px; /* Manji naslov "Podeli ovaj blog:" */
        margin-bottom: 10px; /* Razmak ispod naslova */
    }

    .share-btn {
        display: inline-block; /* Prikazivanje u liniji */
        margin: 5px; /* Razmak između dugmića */
        padding: 8px 12px; /* Unutrašnji razmak */
        font-size: 14px; /* Manji tekst */
        border-radius: 8px; /* Zaobljeni uglovi */
        text-decoration: none; /* Uklanjanje podvlačenja */
        transition: background 0.3s ease; /* Glatka animacija */
    }

    /* Prilagođavanje boja za različite platforme */
    .fb-btn { background: #1877F2; color: white; }
    .twitter-btn { background: #1DA1F2; color: white; }
    .linkedin-btn { background: #0077B5; color: white; }
    .whatsapp-btn { background: #25D366; color: white; }

    /* Hover efekti */
    .share-btn:hover {
        opacity: 0.85; /* Blago zatamnjenje na hover */
    }

    /* Ikonice malo veće za bolju vidljivost */
    .share-btn i {
        margin-right: 5px; /* Razmak između ikone i teksta */
        font-size: 16px; /* Povećana veličina ikone */
    }

}