:root {
    --orange: #ff6400;
    --orange-hover: #ff8c00;
    --navy: #02203d;
    --gray-bg: #f8f9fa;
    --gray-light: #f8f9fa;
    --section-padding: 4rem 0;
}
body {
    font-family: system-ui, Helvetica, Arial, sans-serif;
    background: var(--gray-bg) url('/slike/web-slike/rezultati-bg.svg') center/280px repeat;
    position: relative;
    margin: 0;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: -1;
}


.hero {
    background: url('/slike/NZ8_2749.JPG') center/cover no-repeat;
    min-height: 85vh;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
}
.hero .content {
    position: relative;
    z-index: 1;
}
.btn-hero {
    background: var(--orange);
    border: none;
    color: #fff;
    font-weight: 600;
}
.btn-hero:hover {
    background: var(--orange-hover);
}
.btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

/*  O NAMA  */
.about {
    background: #fff;
    padding: var(--section-padding);
}
.about .row {
    align-items: center;
}
.about-img {
    width: 90%;
    max-width: 400px;
    border-radius: 0.5rem;
    display: block;
    margin: auto;
}
.about-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
}
.about-text p {
    margin-top: 1rem;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/*  RASPORED (originalni) */
.schedule {
    background: var(--gray-light);
    padding: var(--section-padding);
}
.schedule .section-title {
    font-weight: 700;
    color: var(--navy);
}
.timeline-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--orange);
}
.schedule .list-group-item {
    border: none;
    border-bottom: 1px solid #dee2e6;
}
.schedule .list-group-item:last-child {
    border-bottom: none;
}

/* ========= TIM I OSOBLJE ========== */
.team {
    background: #fff;
    padding: var(--section-padding);
}
.team .sub-title {
    text-align: center;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}
.team h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2rem;
}
.team .member-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.team .member-name {
    margin-top: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    color: var(--navy);
}
.team .member-role {
    text-align: center;
    color: var(--orange);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.team .social-links {
    text-align: center;
    margin-top: 0.25rem;
}
.team .social-links a {
    color: #212529;
    font-size: 1.2rem;
    margin: 0 0.25rem;
}
.team .social-links a:hover {
    color: var(--orange);
}

/* ========= DRUŠTVENE MREŽE (sekcija) ========== */
.social-section {
    background: var(--gray-light);
    padding: 2rem 0;
    text-align: center;
}
.social-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}
.social-icons a {
    color: var(--navy);

    font-size: 2rem;
    margin: 0 0.75rem;
    transition: color 0.2s;
}
.social-icons a:hover {
    color: var(--orange);
}

/* ========= BLOG ========== */
.blog-section {
    background: var(--gray-light);
    padding: var(--section-padding);
}
.blog-section .sub-title {
    text-align: center;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}
.blog-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}
.blog-section p.quote {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-bottom: 2rem;
}
.blog-section .card {
    border: none;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.blog-section .card-img-top {
    height: 180px;
    object-fit: cover;
}
.blog-section .card-body {
    padding: 1rem;
}
.blog-section .card-title {
    font-size: 1.2rem;
    font-weight: 700;
}
.blog-section .card-text {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1rem;
}
.blog-section .btn-blog {
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 0.3rem;
    padding: 0.5rem 1rem;
}
.blog-section .btn-blog:hover {
    background: var(--orange-hover);
}

/* ========= TABELE ========== */
.tables-section {
    background: #fff;
    padding: var(--section-padding);
}
.tables-section .sub-title {
    text-align: center;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}
.tables-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}
.tables-section p.subtitle {
    text-align: center;
    color: #444;
    margin-bottom: 2rem;
    font-size: 1rem;
}
.tables-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}
.table-item {
    text-align: center;
    max-width: 160px;
}
.table-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 0.75rem;
}
.table-item .table-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 0.5rem;
}
.table-item .table-desc {
    font-size: 0.9rem;
    color: #555;
}


.cta-join {
    background: var(--navy);
    color: #fff;
    padding: var(--section-padding);
    text-align: center;
}
.cta-join h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.cta-join p {
    color: #eee;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}
.cta-join .btn-hero {
    background: var(--orange);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.3rem;
    transition: background 0.2s;
}
.cta-join .btn-hero:hover {
    background: var(--orange-hover);
}


.partners {
    background: #f1f3f5;
    padding: var(--section-padding);
}
.partners .partner-logo {
    max-width: 100px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    transition: transform 0.2s;
    padding: 5px;
}
.partners .partner-logo:hover {
    transform: scale(1.05);
}
.partners .partner-name {
    margin-top: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    text-align: center;
}

@media (max-width: 767.98px) {
    .about .row { flex-direction: column; }
    .team .row .col-6 { 
        margin-bottom: 2.5rem;
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 10px;
    }
    .team .member-img {
        width: 120px;
        height: 120px;
    }
    .team .member-name {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    .team .member-role {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    .team .social-links a {
        font-size: 1.25rem;
        margin: 0 0.5rem;
    }
    .partners .row {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 15px;
    }
    .partners .row .col-6 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
        padding: 0 5px;
    }
    .partners .partner-name {
        font-size: 0.8rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.follow-icon{width:60px;height:60px;object-fit:contain;transition:transform .2s}
.follow-icon:hover{transform:scale(1.1)}
@media(max-width:575.98px){.follow-icon{width:48px;height:48px}}