/*
Theme Name: Aktiva Tuzla
Theme URI: https://aktiva.ba
Author: Aktiva Tuzla
Author URI: https://aktiva.ba
Description: Moderna WordPress tema za agencije za računovodstvo i finansijski konsalting. Tirkizno-plava paleta sa zlatnim akcentima, responzivan dizajn, prilagodljive sekcije. Dizajnirana specijalno za Aktiva Tuzla.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aktiva-tuzla
Tags: business, finance, accounting, responsive, custom-colors, custom-logo, custom-menu, featured-images, translation-ready
*/

/* ==========================================================================
   Reset & Base
   ========================================================================== */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Turquoise — Primary */
    --turq-50: #e6fcfb;
    --turq-100: #c2f7f4;
    --turq-200: #8aefea;
    --turq-300: #4ae0d9;
    --turq-400: #1bc9c2;
    --turq-500: #0bafb0;
    --turq-600: #069094;
    --turq-700: #0a7378;
    --turq-800: #0e5d62;
    --turq-900: #114d52;
    --turq-950: #043033;

    /* Gold — Secondary accent */
    --gold-300: #f5e090;
    --gold-400: #ebb530;
    --gold-500: #e2991a;

    /* Ink — Neutrals */
    --ink-50: #f7f9fb;
    --ink-100: #eef2f7;
    --ink-200: #dbe3ec;
    --ink-300: #bcc8d6;
    --ink-400: #94a3b8;
    --ink-500: #6b7a90;
    --ink-600: #525f74;
    --ink-700: #424d5f;
    --ink-800: #394150;
    --ink-900: #0f172a;
    --ink-950: #080d17;

    --font-sans: 'Poppins', system-ui, -apple-system, sans-serif;
    --container-max: 1200px;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink-900);
    background: var(--ink-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--turq-600);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--turq-500);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--ink-900);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: 1.5rem; }

p { margin-bottom: 1rem; }

ul, ol { margin-bottom: 1rem; padding-left: 1.5rem; }

/* ==========================================================================
   Layout
   ========================================================================== */

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
    .container { padding: 0 2rem; }
}

section { padding: 5rem 0; }

@media (min-width: 1024px) {
    section { padding: 7rem 0; }
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid var(--ink-200);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-logo-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, var(--turq-500), var(--turq-700));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 4px 6px rgba(6, 144, 148, 0.2);
}

.site-title {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1;
    color: var(--ink-900);
    margin: 0;
}

.site-header:not(.scrolled) .site-title { color: #fff; }

.site-tagline {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--turq-600);
    margin-top: 0.25rem;
}

.site-header:not(.scrolled) .site-tagline { color: var(--turq-300); }

/* Nav */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 0.25rem;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    display: block;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ink-600);
    transition: all 0.2s ease;
}

.site-header:not(.scrolled) .nav-menu li a {
    color: var(--ink-100);
}

.nav-menu li a:hover {
    color: var(--turq-600);
    background: var(--turq-50);
}

.site-header:not(.scrolled) .nav-menu li a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    background: var(--turq-600);
    color: #fff;
    transition: background 0.2s ease;
}

.header-cta:hover {
    background: var(--turq-700);
    color: #fff;
}

.site-header:not(.scrolled) .header-cta {
    background: var(--gold-400);
    color: var(--ink-900);
}

.site-header:not(.scrolled) .header-cta:hover {
    background: var(--gold-300);
}

/* Mobile toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--ink-700);
}

.site-header:not(.scrolled) .menu-toggle { color: #fff; }

@media (max-width: 1023px) {
    .nav-menu, .header-cta { display: none; }
    .menu-toggle { display: block; }

    .mobile-nav {
        display: none;
        background: #fff;
        border-top: 1px solid var(--ink-200);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 1rem;
    }

    .mobile-nav.open { display: block; }

    .mobile-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-nav li a {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: 0.5rem;
        font-weight: 500;
        color: var(--ink-700);
    }

    .mobile-nav li a:hover {
        color: var(--turq-600);
        background: var(--turq-50);
    }

    .mobile-nav .header-cta {
        display: block;
        text-align: center;
        margin-top: 0.5rem;
        background: var(--turq-600);
        color: #fff;
    }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
    position: relative;
    padding: 8rem 0 5rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--turq-800), var(--turq-700) 50%, var(--turq-950));
}

@media (min-width: 1024px) {
    .hero { padding: 10rem 0 7rem; }
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.3;
    background:
        radial-gradient(circle at 20% 30%, rgba(27, 201, 194, 0.5) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(235, 181, 48, 0.15) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    max-width: 48rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}

.hero-badge .dashicons {
    color: var(--gold-400);
    font-size: 1rem;
    width: 1rem;
    height: 1rem;
}

.hero h1 {
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.hero h1 .accent { color: var(--gold-400); }

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--turq-100);
    line-height: 1.6;
    max-width: 36rem;
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .hero-subtitle { font-size: 1.25rem; }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons { flex-direction: row; }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-gold {
    background: var(--gold-400);
    color: var(--ink-900);
    box-shadow: 0 4px 12px rgba(235, 181, 48, 0.25);
}

.btn-gold:hover {
    background: var(--gold-300);
    color: var(--ink-900);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.btn-turq {
    background: var(--turq-600);
    color: #fff;
    box-shadow: 0 4px 12px rgba(6, 144, 148, 0.2);
}

.btn-turq:hover {
    background: var(--turq-700);
    color: #fff;
}

.btn-dark {
    background: var(--ink-900);
    color: #fff;
}

.btn-dark:hover {
    background: var(--ink-800);
    color: #fff;
}

/* Wave divider */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.wave-divider svg {
    width: 100%;
    height: 3rem;
}

@media (min-width: 1024px) {
    .wave-divider svg { height: 5rem; }
}

/* ==========================================================================
   Stats
   ========================================================================== */

.stats-bar {
    background: var(--ink-50);
    padding: 2rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}

.stat-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--ink-200);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: box-shadow 0.2s ease;
}

.stat-card:hover { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); }

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ink-900);
}

@media (min-width: 1024px) {
    .stat-value { font-size: 1.875rem; }
}

.stat-label {
    font-size: 0.875rem;
    color: var(--ink-500);
    margin-top: 0.25rem;
}

/* ==========================================================================
   Section headers
   ========================================================================== */

.section-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--turq-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    margin-top: 0.75rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--ink-600);
    line-height: 1.6;
    max-width: 42rem;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ==========================================================================
   About
   ========================================================================== */

.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.about-text p { color: var(--ink-600); line-height: 1.7; margin-bottom: 1rem; }

.about-quote {
    margin-top: 2rem;
    padding: 1.25rem;
    border-radius: 0.75rem;
    background: var(--turq-50);
    border: 1px solid var(--turq-100);
}

.about-quote p {
    color: var(--ink-700);
    font-weight: 600;
    margin: 0;
}

.values-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .values-grid { grid-template-columns: 1fr 1fr; }
}

.value-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--ink-200);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
}

.value-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.value-card h3 { font-size: 1.125rem; }
.value-card p { font-size: 0.875rem; color: var(--ink-500); margin-top: 0.5rem; line-height: 1.5; margin-bottom: 0; }

/* ==========================================================================
   Services (dark section)
   ========================================================================== */

.services-section {
    background: var(--turq-900);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.3;
    background: radial-gradient(circle at 50% 0%, rgba(27, 201, 194, 0.3) 0%, transparent 60%);
}

.services-section .section-label { color: var(--gold-400); }
.services-section .section-title { color: #fff; }
.services-section .section-subtitle { color: var(--turq-200); }

.services-grid {
    position: relative;
    display: grid;
    gap: 1.5rem;
    margin-top: 3.5rem;
}

@media (min-width: 768px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.service-card {
    background: rgba(14, 93, 98, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: 1.75rem;
    border: 1px solid rgba(11, 175, 176, 0.4);
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: rgba(235, 181, 48, 0.5);
    background: var(--turq-800);
}

.service-card h3 { color: #fff; font-size: 1.25rem; }
.service-card p { color: var(--turq-200); font-size: 0.875rem; line-height: 1.6; margin-top: 0.75rem; }

.service-features {
    list-style: none;
    padding: 0;
    margin-top: 1.25rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: var(--turq-100);
    padding: 0.25rem 0;
}

.service-features li::before {
    content: '✓';
    color: var(--gold-400);
    font-weight: 700;
    flex-shrink: 0;
}

/* ==========================================================================
   CTA strip
   ========================================================================== */

.cta-strip {
    background: var(--gold-400);
    padding: 3rem 0;
}

.cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .cta-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

.cta-strip h3 { font-size: 1.5rem; color: var(--ink-900); }
@media (min-width: 1024px) { .cta-strip h3 { font-size: 2rem; } }

.cta-strip p { color: rgba(15, 23, 42, 0.8); margin: 0; }

/* ==========================================================================
   References
   ========================================================================== */

.ref-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 3.5rem;
}

@media (min-width: 768px) { .ref-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .ref-grid { grid-template-columns: repeat(5, 1fr); } }

.ref-card {
    background: #fff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--ink-200);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
}

.ref-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: var(--turq-300);
}

.ref-num {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, var(--turq-400), var(--turq-600));
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    box-shadow: 0 2px 4px rgba(6, 144, 148, 0.2);
}

.ref-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ink-800);
    line-height: 1.3;
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact-section { background: var(--ink-100); }

.contact-grid {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    background: #fff;
    border: 1px solid var(--ink-200);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.2s ease;
    margin-bottom: 1rem;
}

.contact-info-card:hover { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); }

.contact-info-card .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink-400);
    font-weight: 500;
}

.contact-info-card .value {
    font-weight: 600;
    color: var(--ink-800);
}

/* Working hours */
.hours-card {
    background: #fff;
    border-radius: 0.75rem;
    padding: 1.25rem;
    border: 1px solid var(--ink-200);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    margin-top: 1.5rem;
}

.hours-card h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.hours-list { list-style: none; padding: 0; margin: 0; }

.hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    padding: 0.375rem 0;
    border-bottom: 1px solid var(--ink-100);
}

.hours-list li:last-child { border-bottom: none; }

.hours-list .day { color: var(--ink-600); font-weight: 500; }
.hours-list .time { font-weight: 600; color: var(--ink-800); }
.hours-list .closed { color: var(--ink-400); }

/* Contact form */
.contact-form-wrapper {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--ink-200);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-form-wrapper h3 { font-size: 1.25rem; }
.contact-form-wrapper .form-desc { font-size: 0.875rem; color: var(--ink-500); margin-top: 0.5rem; }
.form-success,
.form-error { font-size: 0.875rem; margin-top: 1rem; }
.form-success { color: var(--turq-700); }
.form-error { color: #b42318; }

.aktiva-form { margin-top: 1.5rem; }

.form-group { margin-bottom: 1rem; }

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ink-700);
    margin-bottom: 0.375rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid var(--ink-300);
    color: var(--ink-800);
    font-family: inherit;
    font-size: 0.9375rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--turq-500);
    box-shadow: 0 0 0 2px rgba(11, 175, 176, 0.2);
}

.form-group textarea { resize: none; }

.aktiva-form .btn { width: 100%; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background: var(--ink-950);
    color: var(--ink-400);
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

.footer-branding { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }

.footer-branding .site-logo-icon { width: 2.5rem; height: 2.5rem; font-size: 1rem; }

.footer-branding .site-title { color: #fff; font-size: 1.125rem; }
.footer-branding .site-tagline { color: var(--turq-400); }

.footer-widget-title {
    color: #fff;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li { padding: 0.25rem 0; }
.footer-widget ul li a { color: var(--ink-400); font-size: 0.875rem; }
.footer-widget ul li a:hover { color: var(--turq-400); }

.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li {
    font-size: 0.875rem;
    padding: 0.25rem 0;
}

.footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--ink-800);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .footer-bottom { flex-direction: row; justify-content: space-between; }
}

.footer-social a {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    background: var(--ink-800);
    color: var(--ink-400);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: var(--turq-700);
    color: #fff;
}

/* ==========================================================================
   Blog / Archive
   ========================================================================== */

.page-header-section {
    padding: 8rem 0 3rem;
    background: linear-gradient(135deg, var(--turq-800), var(--turq-700));
    color: #fff;
}

.page-header-section h1 { color: #fff; margin: 0; }

.blog-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

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

@media (min-width: 1024px) {
    .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

.post-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--ink-200);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
}

.post-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.post-card-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-card-body { padding: 1.5rem; }

.post-card-meta {
    font-size: 0.75rem;
    color: var(--ink-400);
    margin-bottom: 0.5rem;
}

.post-card h2 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.post-card h2 a { color: var(--ink-900); }
.post-card h2 a:hover { color: var(--turq-600); }

.post-card .excerpt {
    font-size: 0.875rem;
    color: var(--ink-600);
    line-height: 1.6;
}

.post-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--turq-600);
    margin-top: 0.75rem;
}

/* Single post */
.single-post-content {
    background: #fff;
    border-radius: 1rem;
    padding: 2.5rem;
    border: 1px solid var(--ink-200);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.single-post-content h1, .single-post-content h2, .single-post-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.single-post-content p { color: var(--ink-600); line-height: 1.7; }

.single-post-content img {
    border-radius: 0.75rem;
    margin: 1.5rem 0;
}

/* Pagination */
.pagination {
    display: flex;
    gap: 0.5rem;
    margin-top: 3rem;
    justify-content: center;
}

.pagination a, .pagination span {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid var(--ink-200);
    background: #fff;
    color: var(--ink-600);
}

.pagination .current {
    background: var(--turq-600);
    color: #fff;
    border-color: var(--turq-600);
}

.pagination a:hover {
    border-color: var(--turq-400);
    color: var(--turq-600);
}

/* ==========================================================================
   404
   ========================================================================== */

.error404 .content-area {
    text-align: center;
    padding: 10rem 0 5rem;
}

.error404 h1 {
    font-size: 6rem;
    color: var(--turq-600);
    line-height: 1;
}

.error404 .page-content p {
    color: var(--ink-600);
    font-size: 1.125rem;
}

/* ==========================================================================
   Utilities
   ========================================================================== */

.mt-8 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.text-white { color: #fff; }

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 9999;
    padding: 0.5rem 1rem;
    background: var(--turq-600);
    color: #fff;
    border-radius: 0 0 0.5rem 0;
}

.skip-link:focus {
    left: 0;
    color: #fff;
}

/* Sakriva dupli mobilni meni na kompjuteru/desktopu */
@media screen and (min-width: 992px) {
    #mobile-nav,
    .menu-toggle {
        display: none !important;
    }
}

/* Na mobilnim i tabletima sakriva standardni desktop meni i prikazuje samo mobilni */
@media screen and (max-width: 991px) {
    #site-navigation,
    .header-inner .header-cta {
        display: none !important;
    }
    #mobile-nav {
        display: block;
    }
}