
    /* RESET */
    *,
    *::before,
    *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    html,
    body {
    height: 100%;
    margin: 0;
    padding: 0;
    }

    /* BODY LAYOUT */
    body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: "Roboto", sans-serif;
    background: #f5f5f5;
    color: #333;
    line-height: 1.6;
    padding-top: 60px; /* mora odgovarati visini headera */
    }

    /* HEADER & NAV (mobile-first) */
    header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #204080;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* logo lijevo, hamburger gura desno */
    padding-left: 16px; /* samo lijevi padding */
    padding-right: 0; /* hamburger će doći do ruba */
    z-index: 1000;
    }

    .logo img {
    max-height: 40px;
    width: auto;
    display: block;
    }

    .hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    margin-left: auto; /* gura hamburger na desni rub */
    margin-right: 0;
    }

    .hamburger span {
    display: block;
    width: 24px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
    }
    .hamburger.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
    }
    .hamburger.open span:nth-child(2) {
    opacity: 0;
    }
    .hamburger.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
    }

    /* nav wrapper */
    nav {
    display: block;
    }

    /* MOBILE NAV LIST */
    nav ul {
    display: none;
    position: absolute;
    top: 100%; /* odmah ispod headera */
    left: 0;
    right: 0;
    flex-direction: column;
    background: #204080;
    padding: 12px 16px;
    gap: 12px;
    list-style: none;
    }
    nav ul.open {
    display: flex;
    }
    nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    padding: 6px 0;
    transition: background 0.3s;
    }
    nav ul li a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    }

    /* MAIN & HERO */
    main {
    flex: 1;
    display: flex;
    flex-direction: column;
    }
    .hero {
    position: relative;
    height: 50vh;
    background: url("/img/moja-slika.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    }
    .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
    }
    .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 0 15px;
    }
    .hero-content h1 {
    font-size: 2em;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    }
    .hero-content p {
    font-size: 1em;
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    }
    .cta {
    display: inline-block;
    background: #ff5722;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s;
    }
    .cta:hover {
    background: #e04e1d;
    }

    /* CONTAINER & SECTIONS */
    .container {
    flex: 1;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px 30px;
    }
    section {
    background: #fff;
    border-radius: 6px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }
    section h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    text-align: center;
    color: #204080;
    }

    /* PROGRAMS */
    .programs {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center; /* centriramo kartice */
    }
    .program-card {
    background: #f9f9f9;
    border-radius: 6px;
    padding: 16px; /* smanjeni padding */
    max-width: 300px; /* suženi maksimum na mobitelu */
    width: 100%;
    margin: 0 auto; /* centriraj na mobilnom */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    }
    .program-card:hover {
    transform: translateY(-4px);
    }
    .program-card img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 15px;
    }
    .program-card h3 {
    color: #204080;
    font-size: 1.3em;
    margin-bottom: 8px;
    }
    .program-card p {
    color: #555;
    font-size: 0.95em;
    }

    /* NEWS */
    .news-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    }
    .news-article {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }
    .news-article p {
    color: #555;
    font-size: 0.95em;
    margin-bottom: 10px;
    }
    .news-article span {
    font-weight: bold;
    color: #204080;
    }

    /* O NAMA */
    #o-nama .about-us {
    background: #f9f9f9;
    border-radius: 6px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }
    #o-nama .about-us p {
    color: #555;
    font-size: 0.95em;
    text-align: justify;
    line-height: 1.6;
    }

    /* KONTAKT */
    #kontakt .contact-info {
    background: #f9f9f9;
    border-radius: 6px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }
    #kontakt .contact-info h3 {
    color: #204080;
    margin-bottom: 12px;
    font-size: 1.4em;
    }
    #kontakt .contact-info p {
    color: #555;
    font-size: 0.95em;
    margin-bottom: 8px;
    }
    #kontakt .map {
    margin-top: 20px;
    }

    /* FOOTER */
    footer {
    background: #204080;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
    margin-top: auto;
    }

    /* EXTRA SMALL (MOBILE) */
    @media (max-width: 480px) {
    header {
        height: 52px;
        padding-left: 12px;
    }
    body {
        padding-top: 52px;
    }
    .logo img {
        max-height: 32px;
    }
    .hamburger span {
        width: 20px;
        height: 2px;
    }
    nav ul {
        padding: 10px 12px;
    }
    nav ul li a {
        font-size: 0.95em;
    }
    }

    /* DESKTOP (>=768px) */
    @media (min-width: 768px) {
    .hamburger {
        display: none;
    }

    header {
        justify-content: space-between; /* logo lijevo, nav centriran */
        padding-left: 16px;
        padding-right: 16px; /* dodaj padding na desktopu ako želiš */
    }

    nav {
        flex: 1;
        display: flex;
        justify-content: center; /* centriramo UL */
    }

    nav ul {
        display: flex !important;
        position: static;
        flex-direction: row;
        gap: 40px;
        background: transparent;
        padding: 0;
    }

    nav ul li a {
        font-size: 1.4em; /* veća slova */
        padding: 10px 15px;
    }

    .programs {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start; /* poravnaj kartice odozdo */
        gap: 20px; /* razmak između kartica */
    }
    .program-card {
        width: 200px; /* ili koliko već želiš */
    }

    .news-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .news-article {
        max-width: 400px;
    }

    #o-nama .about-us {
        max-width: 800px;
        margin: 0 auto;
    }
    #kontakt .contact-info {
        max-width: 600px;
        margin: 0 auto;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
    }
    .logo img {
        height: 50px;
    }
    }