/*
Theme Name: GHD Planina 2026
Theme URI: https://ghd-planina.si
Author: GHD Planina
Description: Custom theme for GHD Planina 2026 Hillclimb Racing Event - Bilingual (SI/EN)
Version: 1.0.0
Text Domain: ghd-planina-2026
*/

/* ========================================
   CSS Custom Properties (Design Tokens)
   ======================================== */
:root {
    /* Colors from logo */
    --color-primary: #1a365d;
    --color-primary-light: #2d4a7c;
    --color-primary-dark: #0f2340;

    --color-secondary: #dc2626;
    --color-secondary-light: #ef4444;
    --color-secondary-dark: #b91c1c;

    --color-accent: #166534;
    --color-accent-light: #22c55e;

    /* Backgrounds */
    --color-bg-dark: #0a0a0a;
    --color-bg-darker: #050505;
    --color-bg-light: #f5f5f5;
    --color-bg-card: rgba(255, 255, 255, 0.05);

    /* Text */
    --color-text-light: #ffffff;
    --color-text-muted: #a0a0a0;
    --color-text-dark: #1a1a1a;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Outfit', var(--font-primary);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 5rem;

    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(220, 38, 38, 0.3);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;

    /* Z-index layers */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-countdown: 500;
}

/* ========================================
   Page Loader
   ======================================== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg-dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loader__content {
    text-align: center;
}

.page-loader__logo {
    margin-bottom: var(--spacing-md);
    animation: pulse 1.5s ease-in-out infinite;
}

.page-loader__logo img {
    max-width: 150px;
    height: auto;
}

.page-loader__spinner {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--color-secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

/* ========================================
   Reset & Base Styles
   ======================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-secondary);
}

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

ul,
ol {
    list-style: none;
}

/* ========================================
   Typography
   ======================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
    margin-bottom: var(--spacing-sm);
}

/* ========================================
   Layout Utilities
   ======================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-2xl) 0;
}

.section--dark {
    background-color: var(--color-bg-darker);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
    color: var(--color-text-light);
    box-shadow: var(--shadow-glow);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.5);
}

.btn--secondary {
    background: transparent;
    color: var(--color-text-light);
    border: 2px solid var(--color-text-light);
}

.btn--secondary:hover {
    background: var(--color-text-light);
    color: var(--color-bg-dark);
}

.btn--large {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.1rem;
}

/* ========================================
   Header & Navigation
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-bar .site-header {
    top: 32px;
}

.admin-bar .hero {
    padding-top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }

    .admin-bar .hero {
        padding-top: 46px;
    }
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
}

.site-logo img {
    height: 50px;
    width: auto;
}

.main-nav ul {
    display: flex;
    gap: var(--spacing-xl);
    align-items: center;
}

.main-nav a {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 1rem;
    position: relative;
    padding: var(--spacing-xs) 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: width var(--transition-base);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: var(--spacing-xs);
    margin-left: var(--spacing-lg);
}

.lang-switcher a {
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.6;
    transition: all var(--transition-fast);
}

.lang-switcher a.active,
.lang-switcher a:hover {
    opacity: 1;
    background: var(--color-secondary);
}

/* Header Right (Social + Language) */
.header-icons {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text-light);
    transition: all var(--transition-base);
    text-decoration: none;
}

.header-icon:hover {
    background: var(--color-secondary);
    transform: scale(1.1);
}

.header-icon svg {
    width: 18px;
    height: 18px;
}

.header-icon--flag {
    font-size: 1.3rem;
    opacity: 0.7;
    background: transparent;
}

.header-icon--flag:hover,
.header-icon--flag.active {
    opacity: 1;
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.15);
}

.header-icons-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 var(--spacing-xs);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-text-light);
    transition: all var(--transition-base);
}

/* ========================================
   Persistent Countdown Timer
   ======================================== */
.countdown-fixed {
    position: fixed;
    bottom: var(--spacing-md);
    right: var(--spacing-md);
    z-index: var(--z-countdown);
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown-fixed__label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.countdown-fixed__timer {
    display: flex;
    gap: var(--spacing-sm);
}

.countdown-fixed__item {
    text-align: center;
}

.countdown-fixed__number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary-light);
    line-height: 1;
}

.countdown-fixed__unit {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(10, 10, 10, 0.4) 0%,
            rgba(10, 10, 10, 0.6) 50%,
            rgba(10, 10, 10, 0.95) 100%);
}

.hero__content {
    text-align: center;
    padding: var(--spacing-xl);
    max-width: 800px;
}

.hero__logo {
    max-width: 300px;
    margin: 0 auto var(--spacing-lg);
    animation: fadeInUp 1s ease-out;
}

.hero__title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-sm);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero__subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero__date {
    display: inline-block;
    background: transparent;
    padding: var(--spacing-sm) 0;
    border-radius: 0;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero__cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* ========================================
   Sponsor Carousel
   ======================================== */
.sponsors-bar {
    background: rgba(255, 255, 255, 0.03);
    padding: var(--spacing-md) 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sponsors-bar__title {
    text-align: center;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-sm);
}

.sponsors-track {
    display: flex;
    animation: scroll 30s linear infinite;
}

.sponsors-track:hover {
    animation-play-state: paused;
}

.sponsor-item {
    flex-shrink: 0;
    padding: 0 var(--spacing-xl);
}

.sponsor-item img {
    height: 50px;
    width: auto;
    opacity: 1;
    transition: all var(--transition-base);
}

.sponsor-item:hover img {
    transform: scale(1.1);
    opacity: 0.9;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ========================================
   Quick Links Section
   ======================================== */
.quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    padding: var(--spacing-xl) 0;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.quick-link:hover {
    transform: translateY(-4px);
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-glow);
}

.quick-link__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
    border-radius: var(--radius-md);
    font-size: 1.5rem;
}

.quick-link__text h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.quick-link__text p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* ========================================
   News Cards
   ======================================== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
}

.news-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary-light);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(220, 38, 38, 0.1);
}

.news-card__image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.news-card:hover .news-card__image img {
    transform: scale(1.05);
}

.news-card__content {
    padding: var(--spacing-xl);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-card__date {
    font-size: 0.9rem;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.news-card__title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.news-card__title a {
    color: white;
}

.news-card__title a:hover {
    color: var(--color-secondary);
}

.news-card__excerpt {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 0;
    flex-grow: 1;
}

/* Highlighted news card */
.news-card--highlighted {
    border-color: var(--color-secondary);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.2);
}

.news-card__image {
    position: relative;
}

.news-card__badge {
    position: absolute;
    top: var(--spacing-sm);
    left: var(--spacing-sm);
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.news-card__link-indicator {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: var(--spacing-sm);
    font-size: 0.8rem;
    color: var(--color-primary-light);
}

.news-card__link-indicator .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
}

/* ========================================
   Category Filters
   ======================================== */
.category-filters {
    background: var(--color-bg-dark);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.category-filters__list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    justify-content: center;
}

.category-filter {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-md);
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: all var(--transition-base);
}

.category-filter:hover {
    border-color: var(--color-secondary);
    color: var(--color-text-light);
    background: rgba(220, 38, 38, 0.1);
}

.category-filter--active {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-text-light);
}

.category-filter--active:hover {
    background: var(--color-secondary-light);
    border-color: var(--color-secondary-light);
}

.category-filter__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.category-filter--active .category-filter__count {
    background: rgba(255, 255, 255, 0.3);
}

/* News Card Categories */
.news-card__categories {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: var(--spacing-sm);
}

.news-card__category {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========================================
   Timeline
   ======================================== */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: var(--spacing-xl);
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--color-secondary), var(--color-primary));
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    padding-bottom: var(--spacing-xl);
    padding-left: var(--spacing-lg);
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: calc(-1 * var(--spacing-xl) - 8px);
    top: 5px;
    width: 18px;
    height: 18px;
    background: var(--color-secondary);
    border-radius: 50%;
    border: 3px solid var(--color-bg-dark);
    box-shadow: 0 0 0 3px var(--color-secondary);
}

.timeline-item--highlight::before {
    background: var(--color-accent);
    box-shadow: 0 0 0 3px var(--color-accent), 0 0 20px rgba(59, 130, 246, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 3px var(--color-accent), 0 0 20px rgba(59, 130, 246, 0.3);
    }

    50% {
        box-shadow: 0 0 0 6px var(--color-accent), 0 0 30px rgba(59, 130, 246, 0.5);
    }
}

.timeline-year {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-xs);
}

.timeline-item--highlight .timeline-year {
    color: var(--color-accent-light);
}

.timeline-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.timeline-description {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
    background: var(--color-bg-darker);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-col h4 {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
}

.footer-col ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-col a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-bg-dark);
        padding: var(--spacing-md);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .menu-toggle {
        display: flex;
    }

    .hero__cta {
        flex-direction: column;
        align-items: center;
    }

    .countdown-fixed {
        bottom: var(--spacing-sm);
        right: var(--spacing-sm);
        left: var(--spacing-sm);
    }

    .countdown-fixed__timer {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero__logo {
        max-width: 200px;
    }

    .quick-links {
        grid-template-columns: 1fr;
    }

    /* Very compact countdown on mobile */
    .countdown-fixed {
        padding: 6px 10px;
        border-radius: 8px;
        right: 8px;
        bottom: 8px;
        left: auto;
    }

    .countdown-fixed__label {
        font-size: 0.6rem;
        margin-bottom: 2px;
    }

    .countdown-fixed__number {
        font-size: 1.1rem;
    }

    .countdown-fixed__unit {
        font-size: 0.5rem;
    }

    .countdown-fixed__timer {
        gap: 8px;
    }

    /* Mobile track specs - 2 columns instead of 4 */
    .track-specs {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .ghd-stats {
        grid-template-columns: 1fr !important;
    }
}

/* Mobile Hero Padding Fix */
@media (max-width: 768px) {
    .site-main > section:first-child {
        padding-top: 80px;
    }
}

.mobile-title { display: none; }

@media (max-width: 768px) {
  .desktop-title { display: none; }
  .mobile-title { display: block; }
}

/* Reditelji banner - mobile */
@media (max-width: 768px) {
  .reditelji-banner-grid {
    grid-template-columns: 1fr !important;
  }
  .reditelji-banner-grid > div:first-child {
    min-height: 220px !important;
  }
}