* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --font-heading: 'Zilla Slab', serif;
    --font-body: 'Noto Sans', sans-serif;
    --color-text: #1a1a1a;
    --bg-color: #f9f9f9; /* Ovo je boja koju si tražio */
}

body { 
    font-family: var(--font-body); 
    background-color: var(--bg-color); 
    color: var(--color-text);
    scroll-behavior: smooth;
}

/* HERO */
.hero-section { height: 100vh; display: flex; justify-content: center; align-items: center; overflow: hidden; position: relative; }
.hero-container { width: 90%; max-width: 900px; text-align: center; }
.hero-label { font-family: var(--font-body); font-size: 13px; letter-spacing: 0.25em; text-transform: uppercase; color: #888; margin-bottom: 40px; }

.text-slider { position: relative; height: 250px; }
.slide { position: absolute; top: 0; left: 0; width: 100%; font-family: var(--font-heading); font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.1; font-weight: 600; opacity: 0; transform: translateY(20px); transition: opacity 1s ease, transform 1s ease; pointer-events: none; }
.slide.active { opacity: 1; transform: translateY(0); }
.slide span { font-style: italic; color: #000; }

/* AVATARI (Minimalizam) */
.team-avatars { display: flex; justify-content: center; gap: 15px; margin-top: 30px; }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: #e0e0e0; border: 2px solid #fff; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }

/* Animacija pulsa */
.pulse-1 { animation: pulse 3s infinite ease-in-out; }
.pulse-2 { animation: pulse 3s infinite ease-in-out 1.5s; }

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 0.5; }
    100% { transform: scale(1); opacity: 0.8; }
}

/* WORKSHOPS */
.content-section { padding: 100px 0; background: var(--bg-color); }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-title { font-family: var(--font-heading); font-size: 3rem; margin-bottom: 40px; }

.workshops-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.workshop-card { display: block; position: relative; border: 1px solid #000; padding: 30px; text-decoration: none; color: inherit; height: 350px; overflow: hidden; transition: 0.3s; }
.workshop-card.dark { background: #000; color: #fff; }

.media-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 0.4s ease; z-index: 0; }
.media-overlay img, .media-overlay video { width: 100%; height: 100%; object-fit: cover; }
.workshop-card:hover .media-overlay { opacity: 1; }

@media (max-width: 900px) { .workshops-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .workshops-grid { grid-template-columns: 1fr; } }