diff --git a/code_export.txt b/code_export.txt new file mode 100644 index 0000000..6f759e7 --- /dev/null +++ b/code_export.txt @@ -0,0 +1,8584 @@ +"./css/base/_base.css" : +""" +/* ========================================================================== + Base Styles + ========================================================================== */ + +/** + * 1. Temeljni stili za celotno stran (box-sizing, osnovna pisava, barve). + * 2. Definicija glavnega `.container` razreda za omejitev širine vsebine. + * 3. Pravilo za preprečevanje drsenja strani, ko je mobilni meni odprt. + */ + +/* 1. Temeljni stili */ + +html, body { + overflow-x: hidden; /* Preprečuje horizontalno drsenje na najvišji ravni */ +} + +body { + font-family: 'Inter', sans-serif; + margin: 0; + background-color: #FFFFFF; + color: #101828; +} + +/* Prepreči drsenje strani, ko je mobilni meni odprt */ +body.nav-open { + overflow: hidden; +} + +/* 2. Glavni container */ + +.container { + width: 1280px; + margin: 0 auto; + display: flex; + justify-content: space-between; + align-items: center; + padding: 0 32px; + box-sizing: border-box; +} + + +/* ========================================================================== + Mobile Base Styles + ========================================================================== */ + +@media (max-width: 768px) { + + body { + /* Odmik na vrhu telesa strani zaradi fiksne glave na mobilnih napravah. + Ta stil je tukaj, ker vpliva na celotno stran. */ + padding-top: 60px; + } + + .container { + width: 100%; + padding: 0 24px; + } + +}""" + + +"./css/base/_typography.css" : +""" +""" + + +"./css/components/_buttons.css" : +""" +/* ========================================================================== + Buttons Styles + ========================================================================== */ + +/** + * Ta datoteka vsebuje stile za vse ponovno uporabljive gumbe na spletni strani. + * + * 1. Osnovni stil za gumbe (.btn) + * 2. Različice gumbov (.btn-primary, .btn-primary-orange, .btn-secondary) + * 3. Gumbi z ikonami (.social-icon-btn) + * 4. Posebni gumbi (.play-button) + * 5. Stili za gumbe na mobilnih napravah + */ + +/* 1. Osnovni stil za gumbe */ + +.btn { + padding: 10px 18px; + border-radius: 8px; + font-weight: 600; + font-size: 16px; + line-height: 24px; + cursor: pointer; + border: 1px solid transparent; + box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05); + text-decoration: none; + display: inline-block; + text-align: center; +} + +/* 2. Različice gumbov */ + +.btn-primary { + background-color: #2D738C; + color: #FFFFFF; + border-color: #2D738C; +} + +.btn-primary-orange { + background: #FA7850; + color: #FFFFFF; + padding: 16px 28px; + font-size: 18px; + line-height: 28px; +} + +.btn-secondary { + background-color: #FFFFFF; + color: #344054; + border: 1px solid #D0D5DD; +} + +/* 3. Gumbi z ikonami */ + +.social-icon-btn { + display: flex; + justify-content: center; + align-items: center; + width: 40px; + height: 40px; + border: 1px solid #D0D5DD; + border-radius: 8px; + box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05); + color: #98A2B3; + font-size: 18px; + text-decoration: none; +} + +/* 4. Posebni gumbi */ + +.play-button { + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + width: 80px; + height: 80px; + background: rgba(255, 255, 255, 0.56); + border-radius: 50%; + border: none; + cursor: pointer; + display: flex; + justify-content: center; + align-items: center; +} + +.play-button::after { + content: ''; + width: 0; + height: 0; + border-left: 24px solid white; + border-top: 14px solid transparent; + border-bottom: 14px solid transparent; + margin-left: 5px; +} + + +/* ========================================================================== + Mobile Buttons Styles + ========================================================================== */ + +@media (max-width: 768px) { + + .btn-primary-orange { + width: auto; + padding: 16px 28px; + border-radius: 12px; + font-size: 16px; + } + + .play-button { + width: 42px; + height: 42px; + } + + .play-button::after { + border-left-width: 14px; + border-top-width: 8px; + border-bottom-width: 8px; + } + +}""" + + +"./css/components/_cards.css" : +""" +/* ========================================================================== + Cards Styles + ========================================================================== */ + +/** + * Ta datoteka vsebuje stile za vse ponovno uporabljive komponente v obliki kartic. + * + * 1. Kartice z novicami (.news-card) + * 2. Kartice s pričevanji (.testimonial-card) + * 3. Kartice s projekti/objavami (.post-card) + * 4. Stili za kartice na mobilnih napravah + */ + +/* 1. Kartice z novicami (.news-card) */ + +.news-card { + width: 405.33px; + background: transparent; + text-align: left; +} + +.news-card img { + width: 100%; + height: 240px; + object-fit: cover; + border-radius: 8px; + margin-bottom: 32px; +} + +.news-card .card-content { + color: #FFFFFF; +} + +.news-card .author { + font-size: 14px; + font-weight: 600; + margin-bottom: 12px; +} + +.news-card h3 { + font-size: 24px; + font-weight: 600; + line-height: 32px; + margin-bottom: 12px; +} + +.news-card p { + font-size: 16px; + line-height: 24px; +} + +/* 2. Kartice s pričevanji (.testimonial-card) */ + +.testimonial-card { + padding: 24px 24px 40px; + border: 1px solid #D0D5DD; + border-radius: 16px; +} + +.testimonial-column .testimonial-card:nth-child(even) { + background: #F9FAFB; +} + +.testimonial-card h3 { + font-size: 24px; + font-weight: 600; + line-height: 1.2; + color: #000000; + margin-bottom: 24px; +} + +.testimonial-card p { + font-size: 16px; + line-height: 1.2; + color: #646E82; + margin-bottom: 24px; +} + +.author-info { + display: flex; + align-items: center; + gap: 16px; +} + +.author-info img { + width: 48px; + height: 48px; + border-radius: 50%; + object-fit: cover; +} + +.author-info h4 { + font-size: 18px; + font-weight: 600; + margin: 0 0 6px 0; + color: #000000; +} + +.author-info p { + font-size: 16px; + margin: 0; + color: #2D738C; +} + +/* Specifična pravila za barve znotraj pričevanj */ +.testimonial-card:nth-child(3) .author-info h4, +.testimonial-card:nth-child(3) .author-info p { + color: #2D738C; +} + +.testimonial-column:nth-child(1) .testimonial-card:nth-child(2) .author-info h4, +.testimonial-column:nth-child(2) .testimonial-card:nth-child(2) .author-info h4, +.testimonial-column:nth-child(1) .testimonial-card:nth-child(2) .author-info p, +.testimonial-column:nth-child(2) .testimonial-card:nth-child(2) .author-info p { + color: #646E82; +} + +/* 3. Kartice s projekti/objavami (.post-card) */ + +.post-card { + display: flex; + flex-direction: column; +} + +.post-link { + text-decoration: none; + color: inherit; +} + +.post-image { + width: 100%; + height: 240px; + object-fit: cover; + border-radius: 8px; + margin-bottom: 32px; +} + +.post-meta { + font-size: 14px; + font-weight: 600; + color: #FA7850; + margin: 0 0 12px; +} + +.post-title { + font-size: 24px; + font-weight: 600; + line-height: 32px; + color: #101828; + margin: 0 0 12px; +} + +.post-excerpt { + font-size: 16px; + line-height: 24px; + color: #667085; + margin: 0; +} + + +/* ========================================================================== + Mobile Cards Styles + ========================================================================== */ + +@media (max-width: 768px) { + + /* Kartice z novicami */ + .news-card { + width: 100%; + max-width: 321px; + } + + /* Kartice s pričevanji */ + .testimonial-card { + flex: 0 0 291px; + scroll-snap-align: start; + margin-right: 24px; + } +}""" + + +"./css/layout/_footer.css" : +""" +/* ========================================================================== + Footer Styles + ========================================================================== */ + +/** + * Ta datoteka vsebuje stile za nogo (footer) spletne strani. + * + * 1. Glavni kontejner za nogo + * 2. Vsebina noge (informacije, logotip, socialne ikone) + * 3. Povezave v nogi + * 4. Spodnji del noge (copyright, pravne povezave) + * 5. Stili za nogo na mobilnih napravah + */ + +/* 1. Glavni kontejner za nogo */ + +footer { + background: #2D738C; + color: #FFFFFF; + padding: 64px 0 88px; +} + +.footer-container { + width: 1280px; + margin: 0 auto; +} + +.footer-main { + display: flex; + justify-content: space-between; + margin-bottom: 64px; +} + +/* 2. Vsebina noge (informacije, logotip, socialne ikone) */ + +.footer-info { + width: 302px; +} + +.footer-logo { + margin-bottom: 48px; +} + +.footer-logo img { + height: auto; + width: 200px; + object-fit: contain; +} + +.footer-info p { + font-size: 16px; + line-height: 1.5; + margin-bottom: 24px; +} + +.social-icons { + display: flex; + gap: 24px; +} + +.social-icons a { + color: #FFFFFF; + font-size: 24px; + text-decoration: none; +} + +/* 3. Povezave v nogi */ + +.footer-links { + display: flex; + gap: 32px; +} + +.links-column { + width: 192px; +} + +.links-column h4 { + font-size: 18px; + font-weight: 600; + margin: 0 0 24px 0; +} + +.links-column a { + display: block; + color: #FFFFFF; + text-decoration: none; + font-size: 16px; + margin-bottom: 16px; +} + +/* 4. Spodnji del noge (copyright, pravne povezave) */ + +footer hr { + border: 0; + border-top: 1px solid rgba(255, 255, 255, 0.5); + margin: 0 0 24px 0; +} + +.footer-bottom { + display: flex; + justify-content: space-between; + align-items: center; + font-size: 14px; +} + +.legal-links { + display: flex; + gap: 24px; +} + +.legal-links a { + color: #FFFFFF; + text-decoration: none; +} + + +/* ========================================================================== + Mobile Footer Styles + ========================================================================== */ + +@media (max-width: 768px) { + + footer { + padding: 0; + } + + .footer-container { + width: 100%; + padding: 0 24px; + } + + .footer-main { + flex-direction: column; + align-items: flex-start; + padding: 48px 0; + gap: 48px; + margin-bottom: 0; + border-bottom: 1px solid rgba(255, 255, 255, 0.5); + } + + .footer-info { + width: 100%; + } + + .footer-logo img { + max-width: 161px; + height: auto; + } + + .footer-links { + flex-direction: column; + gap: 40px; + width: 100%; + } + + .links-column { + width: 100%; + } + + footer hr { + display: none; + } + + .footer-bottom { + flex-direction: column; + gap: 32px; + padding: 40px 0; + align-items: flex-start; + } + + .legal-links { + flex-direction: column; + gap: 16px; + align-items: flex-start; + } +}""" + + +"./css/layout/_header.css" : +""" +/* ========================================================================== + Header Styles + ========================================================================== */ + +/** + * Ta datoteka vsebuje stile za glavo (header) spletne strani. + * + * 1. Glavni kontejner za glavo + * 2. Vsebina glave (logotip, namizna navigacija) + * 3. Gumbi in akcije v glavi (vključno z izbiro jezika) + * 4. Stili za mobilno glavo in navigacijo + */ + +/* 1. Glavni kontejner za glavo */ + +.dropdown-header-navigation { + position: absolute; + width: 100%; + height: 80px; + background: #FFFFFF; + border-bottom: 1px solid #F2F4F7; + display: flex; + justify-content: center; + align-items: center; + z-index: 1000; +} + +/* 2. Vsebina glave (logotip, namizna navigacija) */ + +.header-content { + display: flex; + align-items: center; + gap: 40px; +} + +.logo-link .logo-img { + height: 32px; + width: auto; +} + +.navigation.desktop-nav { + display: flex; + gap: 32px; +} + +.navigation a { + text-decoration: none; + color: #667085; + font-weight: 600; + font-size: 16px; + padding: 4px 0; +} + +/* 3. Gumbi in akcije v glavi */ + +.navigation-actions { + display: flex; + align-items: center; + gap: 24px; +} + +/* Stili za izbiro jezika */ +.language-selector { + position: relative; + cursor: pointer; +} + +.current-lang { + display: flex; + align-items: center; + gap: 8px; + color: #646E82; + padding: 8px; /* Dodan enakomeren padding za lažji klik */ + border-radius: 6px; /* Rahlo zaobljeni robovi za lepši videz */ + transition: background-color 0.2s ease-in-out; +} + +.current-lang:hover { + background-color: #F9FAFB; /* Svetlo ozadje ob prehodu z miško */ +} + +.current-lang span { + font-weight: 600; +} + +.current-lang .fa-chevron-down { + transition: transform 0.3s ease-in-out; /* Animacija puščice */ +} + +.lang-dropdown { + display: block; /* Meni je vedno v DOM-u, vidnost nadzorujemo drugače */ + position: absolute; + top: calc(100% + 8px); /* Postavi se pod sprožilec z majhnim odmikom */ + right: 0; + background-color: #FFFFFF; + border: 1px solid #EAECF0; + border-radius: 8px; + box-shadow: 0 8px 16px rgba(0,0,0,0.08); + padding: 8px; + z-index: 1001; + min-width: 180px; + /* Tranzicije za gladek prikaz in izginotje */ + opacity: 0; + visibility: hidden; + transform: translateY(10px); + transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s; +} + +/* Stanje, ko je menjalnik jezika odprt (aktiven) */ +.language-selector.active .lang-dropdown { + opacity: 1; + visibility: visible; + transform: translateY(0); +} + +.language-selector.active .current-lang .fa-chevron-down { + transform: rotate(180deg); /* Zasuka puščico navzgor */ +} + +.lang-dropdown a { + display: block; + padding: 10px 12px; + color: #344054; + text-decoration: none; + font-weight: 500; + font-size: 16px; + white-space: nowrap; + border-radius: 6px; +} + +.lang-dropdown a:hover { + background-color: #F9FAFB; +} + + +/* 4. Skrivanje mobilnih elementov na namizju */ + +.mobile-menu-icon { + display: none; +} + +.mobile-nav-panel { + display: none; +} + + +/* ========================================================================== + Mobile Header Styles + ========================================================================== */ + +@media (max-width: 768px) { + + .dropdown-header-navigation { + position: fixed; + top: 0; + left: 0; + right: 0; + height: 60px; + box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.06); + border-bottom: none; + z-index: 1002; /* Biti mora nad panelom, ki ima 1001 */ + } + + /* Skrij namizne elemente */ + .navigation.desktop-nav { + display: none; + } + .dropdown-header-navigation .container > .navigation-actions { + display: none; + } + + /* Prikaži mobilno ikono */ + .mobile-menu-icon { + display: block; + font-size: 24px; + color: #101828; + cursor: pointer; + z-index: 1002; + } + + .mobile-menu-icon .fa-times { + display: none; + } + + body.nav-open .mobile-menu-icon .fa-bars { + display: none; + } + + body.nav-open .mobile-menu-icon .fa-times { + display: block; + } + + /* Stiliziraj mobilni panel */ + .mobile-nav-panel { + display: flex; + flex-direction: column; + align-items: center; + justify-content: flex-start; + gap: 48px; + position: fixed; + top: 60px; /* Začne se pod glavo */ + left: 0; + width: 100%; + height: calc(100vh - 60px); + background: #FFFFFF; + padding: 40px 24px; + box-sizing: border-box; + transform: translateX(100%); + transition: transform 0.3s ease-in-out; + z-index: 1001; /* Pod glavo, a nad vsebino strani */ + overflow-y: auto; + } + + /* Logika za odpiranje panela */ + body.nav-open .mobile-nav-panel { + transform: translateX(0); + } + + .mobile-nav-panel .navigation.mobile-nav { + display: flex; + flex-direction: column; + align-items: center; + gap: 24px; + } + + .mobile-nav-panel .navigation a { + font-size: 20px; + color: #101828; + } + + .mobile-nav-panel .navigation-actions { + display: flex; /* Mora biti flex za prikaz vsebine */ + flex-direction: column; + align-items: center; + gap: 16px; + width: 100%; + } + + .mobile-nav-panel .navigation-actions .btn { + width: 100%; + max-width: 300px; + } + + .mobile-nav-panel .language-selector { + margin-top: 16px; + text-align: center; /* Poskrbi za poravnavo dropdown menija */ + } + + /* Na mobilnih napravah dropdown meni potrebuje malo drugačno pozicijo */ + .mobile-nav-panel .lang-dropdown { + left: 50%; + transform: translateX(-50%); /* Centriranje menija pod ikono */ + right: auto; + /* Tranzicije so podedovane iz namizne različice */ + } +}""" + + +"./css/main.css" : +""" +/* ========================================================================== + Main Stylesheet + ========================================================================== */ + +/** + * Ta datoteka deluje kot glavna vstopna točka in uvaža vse ostale CSS + * datoteke v pravilnem vrstnem redu. Ne dodajajte stilov neposredno sem, + * ampak v ustrezne pod-datoteke. + * + * VRSTNI RED UVAŽANJA: + * 1. Base - Osnovni stili (reset, tipografija, itd.) + * 2. Layout - Strukturni elementi strani (glava, noga) + * 3. Components- Ponovno uporabljivi elementi (gumbi, kartice) + * 4. Pages - Stili, specifični za posamezne strani + */ + +/* 1. Base Styles */ +@import 'base/_base.css'; +@import 'base/_typography.css'; + +/* 2. Layout Components */ +@import 'layout/_header.css'; +@import 'layout/_footer.css'; + +/* 3. Reusable Components */ +@import 'components/_buttons.css'; +@import 'components/_cards.css'; + +/* 4. Page-specific Styles */ +@import 'pages/_home.css'; +@import 'pages/_projects.css'; +@import 'pages/_article.css';""" + + +"./css/pages/_article.css" : +""" +/* ========================================================================== + Single Article/Project Page Specific Styles + ========================================================================== */ + +/** + * Ta datoteka vsebuje stile, ki se uporabljajo izključno na strani s + * posameznim člankom ali projektom. + * + * 1. Glavna postavitev strani članka + * 2. Glava članka (naslov, podnaslov, datum) + * 3. Glavna slika in slike v vsebini + * 4. Telo članka (vsebina, tipografija, citati) + * 5. Noga članka (avtor, deljenje) + * 6. Poziv k prijavi na novice (CTA) + * 7. Stili za stran s člankom na mobilnih napravah + */ + +/* 1. Glavna postavitev strani članka */ + +.article-page { + padding-top: 80px; + background: #FFFFFF; +} + +.article-container { + max-width: 1024px; + margin: 0 auto; + padding: 96px 32px; +} + +/* 2. Glava članka */ + +.article-header { + text-align: center; + margin-bottom: 64px; +} + +.article-publish-date { + font-size: 16px; + font-weight: 600; + color: #FA7850; + margin-bottom: 12px; +} + +.article-header h1 { + font-size: 48px; + font-weight: 600; + line-height: 60px; + letter-spacing: -0.02em; + color: #101828; + margin: 0; +} + +.article-subtitle { + font-size: 20px; + line-height: 30px; + color: #667085; + margin-top: 24px; + max-width: 960px; + margin-left: auto; + margin-right: auto; +} + +/* 3. Glavna slika in slike v vsebini */ + +.article-main-image { + margin: 0 0 64px 0; +} + +.article-main-image img { + width: 100%; + height: auto; + max-height: 516px; + object-fit: cover; + border-radius: 24px; + display: block; + margin: 0 auto; +} + +.article-inline-image { + margin: 16px 0; + display: flex; + flex-direction: column; + gap: 16px; +} + +.article-inline-image img { + width: 100%; + border-radius: 16px; +} + +.article-inline-image figcaption { + font-size: 14px; + color: #667085; + text-align: center; +} + +/* 4. Telo članka */ + +.article-body { + max-width: 720px; + margin: 0 auto; + display: flex; + flex-direction: column; + gap: 32px; +} + +.article-body p, .article-body ol li { + font-size: 18px; + line-height: 28px; + color: #667085; + margin: 0; +} + +.article-body h2 { + font-size: 30px; + font-weight: 600; + line-height: 38px; + color: #101828; + margin: 16px 0; +} + +.article-body ol { + padding-left: 24px; + display: flex; + flex-direction: column; + gap: 12px; +} + +/* Stil za citat */ +.article-quote { + margin: 16px 0; + padding-left: 20px; + border-left: 2px solid #D0D5DD; + display: flex; + flex-direction: column; + gap: 32px; + background: transparent; +} + +.article-quote p { + font-family: 'Inter', sans-serif; + font-style: italic; + font-weight: 500; + font-size: 24px; + line-height: 36px; + color: #101828; + margin: 0; +} + +.article-quote footer { + font-style: normal; + font-weight: 400; + font-size: 16px; + line-height: 24px; + color: #FA7850; + background: transparent; +} + +/* 5. Noga članka */ + +.article-footer { + max-width: 720px; + margin: 48px auto 0; + background: transparent; +} +.article-footer hr { + border: 0; + height: 1px; + background-color: #EAECF0; + margin: 0 0 24px 0; +} + +.author-share-section { + display: flex; + justify-content: space-between; + align-items: center; +} + +.author-details { + display: flex; + align-items: center; + gap: 16px; +} + +.author-details img { + width: 56px; + height: 56px; + border-radius: 50%; + object-fit: cover; +} + +.author-name { + font-size: 18px; + font-weight: 600; + color: #101828; + margin: 0; +} + +.author-title { + font-size: 16px; + color: #667085; + margin: 0; +} + +.share-buttons { + display: flex; + align-items: center; + gap: 12px; +} + +/* 6. Poziv k prijavi na novice (CTA) */ + +.newsletter-cta { + padding: 0 32px 96px 32px; +} + +.newsletter-cta .container { + padding: 64px; + background: #F9FAFB; + border-radius: 16px; + display: flex; + justify-content: space-between; + align-items: center; + max-width: 1216px; + gap: 32px; +} + +.newsletter-cta .cta-content { + display: flex; + flex-direction: column; + align-items: flex-start; + gap: 16px; + flex: 1; +} +.newsletter-cta h2 { + font-size: 30px; + font-weight: 600; + line-height: 38px; + color: #101828; + margin: 0; +} +.newsletter-cta p { + font-size: 20px; + line-height: 30px; + color: #667085; + margin: 0; +} +.newsletter-cta .subscribe-form-bottom { + display: flex; + gap: 16px; + align-items: flex-start; +} +.subscribe-form-bottom .input-wrapper { + display: flex; + flex-direction: column; + gap: 8px; +} + +.subscribe-form-bottom input { + width: 360px; + height: 48px; + padding: 12px 16px; + border: 1px solid #D0D5DD; + border-radius: 8px; + box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05); + font-size: 16px; + box-sizing: border-box; +} + +.subscribe-form-bottom .btn-primary-orange { + height: 48px; + padding-top: 12px; + padding-bottom: 12px; +} + + +/* ========================================================================== + Mobile Article Page Styles + ========================================================================== */ + +@media (max-width: 768px) { + + .article-page { + padding-top: 60px; + } + + .article-container { + padding: 48px 24px; + } + + .article-header { + margin-bottom: 32px; + } + + .article-header h1 { + font-size: 32px; + line-height: 40px; + } + + .article-subtitle { + font-size: 18px; + line-height: 28px; + } + + .article-main-image { + margin: 0 0 32px 0; + width: 100%; + position: static; + left: auto; + right: auto; + } + + .article-main-image img { + border-radius: 16px; + } + + .article-body { + gap: 32px; + } + + .article-body p { + font-size: 16px; + line-height: 26px; + } + + .article-body h2 { + font-size: 24px; + line-height: 32px; + } + + .article-quote p { + font-size: 20px; + line-height: 30px; + } + + .author-share-section { + flex-direction: column; + align-items: flex-start; + gap: 24px; + } + + .newsletter-cta { + padding: 0 24px 64px 24px; + } + + .newsletter-cta .container { + flex-direction: column; + padding: 32px; + gap: 32px; + } + + .newsletter-cta .cta-content, + .newsletter-cta .cta-content p { + align-items: center; + text-align: center; + } + + .newsletter-cta .subscribe-form-bottom { + flex-direction: column; + width: 100%; + align-items: stretch; + } + + .subscribe-form-bottom .input-wrapper { + width: 100%; + } + + .subscribe-form-bottom input { + width: 100%; + } + + .newsletter-cta .privacy-note { + text-align: center; + } +}""" + + +"./css/pages/_home.css" : +""" +/* ========================================================================== + Home Page Specific Styles + ========================================================================== */ + +/** + * Ta datoteka vsebuje stile, ki se uporabljajo izključno na domači strani. + * + * 1. Hero Section + * 2. Meet the Team Section + * 3. Activities Section + * 4. Latest News Section + * 5. Testimonials Section + * 6. Become Part Section (vključno z obrazcem) + * 7. FAQ Section + * 8. Stili za domačo stran na mobilnih napravah + */ + +/* 1. Hero Section */ + +.hero-section { + position: relative; + height: 880px; + width: 100%; + display: flex; + align-items: center; + overflow: hidden; +} + +.hero-background { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + z-index: 1; +} + +.hero-image-left, .hero-image-right { + position: absolute; + top: -150px; + height: 1030px; + width: 50%; + background-size: cover; + background-position: center; +} + +.hero-image-left { + left: 0; + transform: matrix(-1, 0, 0, 1, 0, 0); +} + +.hero-image-right { + right: 0; +} + +.hero-overlay { + position: absolute; + top: 79px; + left: 0; + height: 801px; + width: 56.74%; + background: linear-gradient(122.4deg, rgba(19, 49, 60, 0.92) 35.41%, rgba(39, 77, 90, 0.08) 92.92%); + border-radius: 0px 40px 40px 0px; + backdrop-filter: blur(12px); + z-index: 2; +} + +.hero-content { + position: relative; + z-index: 3; + color: #FFFFFF; + padding-left: 120px; + width: 605px; +} + +.hero-content .badge-group { + display: inline-flex; + align-items: center; + padding: 6px 16px; + gap: 12px; + background: rgba(255, 255, 255, 0.4); + border-radius: 16px; + margin-bottom: 32px; +} + +.hero-content .message { + font-weight: 500; + font-size: 14px; +} + +.hero-content h1 { + font-weight: 700; + font-size: 60px; + line-height: 72px; + letter-spacing: -0.02em; + margin: 0 0 24px 0; +} + +.hero-content p { + font-size: 20px; + line-height: 30px; + margin: 0 0 72px 0; +} + +/* 2. Meet the Team Section */ + +.meet-the-team-section { + display: flex; + justify-content: center; + align-items: center; + padding: 128px 0; + gap: 40px; + background: #FFFFFF; +} + +.video-container { + position: relative; + width: 619px; + height: 360px; +} + +.video-thumbnail { + width: 100%; + height: 100%; + object-fit: cover; + border-radius: 16px; +} + +.video-overlay { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: linear-gradient(127.76deg, rgba(19, 49, 60, 0.92) -13.16%, rgba(39, 77, 90, 0.08) 98.5%); + backdrop-filter: blur(6px); + border-radius: 16px; +} + +.team-content { + width: 619px; +} + +.team-content h2 { + font-size: 36px; + font-weight: 600; + line-height: 44px; + letter-spacing: -0.02em; + color: #101828; + margin: 0 0 20px 0; +} + +.team-content p { + font-size: 20px; + line-height: 30px; + color: #667085; + margin: 0 0 56px 0; +} + +/* 3. Activities Section */ + +.activities-section { + padding: 128px 80px; + background: #F9FAFB; +} + +.activities-header { + text-align: center; + margin-bottom: 96px; +} + +.activities-header h2 { + font-size: 36px; + font-weight: 600; + line-height: 44px; + letter-spacing: -0.02em; + color: #101828; + margin-bottom: 20px; +} + +.activities-header p { + font-size: 20px; + line-height: 30px; + color: #667085; + max-width: 768px; + margin: 0 auto; +} + +.activities-content { + display: flex; + gap: 109px; + max-width: 1232px; + margin: 0 auto; +} + +.activities-nav { + width: 302px; + display: flex; + flex-direction: column; + justify-content: space-between; +} + +.activities-nav ul { + list-style: none; + padding: 0; + margin: 0; + display: flex; + flex-direction: column; + gap: 40px; +} + +.activities-nav li { + font-size: 20px; + color: #646E82; + cursor: pointer; + position: relative; + padding-left: 48px; +} +.activities-nav li::before { + content: ''; + position: absolute; + left: 0; + top: 50%; + transform: translateY(-50%); + width: 24px; + height: 2px; + background-color: #646E82; +} + +.activities-nav li.active { + font-size: 24px; + font-weight: 600; + color: #000000; +} + +.activity-details { + width: 821px; +} + +.activity-details p { + font-size: 20px; + line-height: 30px; + color: #667085; + margin-bottom: 40px; +} + +.activity-details img { + width: 100%; + height: 400px; + object-fit: cover; + border-radius: 24px; +} + +/* 4. Latest News Section */ + +.latest-news-section { + padding: 128px 0; + background: #2D738C; + text-align: center; +} + +.news-header { + margin-bottom: 64px; +} + +.news-header h2 { + font-size: 36px; + font-weight: 600; + line-height: 44px; + letter-spacing: -0.02em; + color: #FFFFFF; + margin-bottom: 20px; +} + +.news-header p { + font-size: 20px; + line-height: 30px; + color: #FFFFFF; + max-width: 768px; + margin: 0 auto; +} + +.news-articles { + display: flex; + justify-content: center; + gap: 32px; + margin-bottom: 64px; +} + +/* 5. Testimonials Section */ + +.testimonials-section { + padding: 128px 80px; + display: flex; + justify-content: center; + align-items: center; + gap: 24px; +} + +.testimonials-intro { + width: 411px; + flex-shrink: 0; +} + +.testimonials-intro h2 { + font-size: 36px; + font-weight: 600; + line-height: 44px; + letter-spacing: -0.02em; + color: #101828; + margin-bottom: 24px; +} + +.testimonials-intro p { + font-size: 20px; + line-height: 30px; + color: #667085; +} + +.testimonials-columns { + display: flex; + gap: 24px; + width: 846px; + height: 800px; + overflow-y: scroll; + padding-right: 15px; +} +.testimonials-columns::-webkit-scrollbar { + width: 5px; +} +.testimonials-columns::-webkit-scrollbar-thumb { + background: #D0D5DD; + border-radius: 10px; +} + +.testimonial-column { + display: flex; + flex-direction: column; + gap: 48px; + width: 411px; +} +.column-offset { + margin-top: 80px; +} + +/* 6. Become Part Section */ + +.become-part-section { + padding: 128px 0; + background: #F9FAFB; + text-align: center; +} + +.become-part-header { + margin-bottom: 64px; +} + +.become-part-header h2 { + font-size: 36px; + font-weight: 600; + line-height: 44px; + letter-spacing: -0.02em; + color: #101828; + margin-bottom: 20px; +} + +.become-part-header p { + font-size: 20px; + line-height: 30px; + color: #646E82; +} + +.team-photo { + width: 1232px; + height: 400px; + object-fit: cover; + border-radius: 24px; + margin: 0 auto 96px; + display: block; +} + +/* Stili za obrazec znotraj sekcije */ +.contact-form-container { + max-width: 800px; + margin: 0 auto; +} + +.contact-form { + display: flex; + flex-direction: column; + gap: 24px; + text-align: left; +} + +.form-row { + display: flex; + gap: 32px; +} + +.form-group { + flex: 1; + display: flex; + flex-direction: column; +} + +.form-group label { + font-size: 14px; + font-weight: 500; + color: #344054; + margin-bottom: 6px; +} + +.form-group input, +.form-group textarea, +.form-group select { + padding: 12px 16px; + border: 1px solid #D0D5DD; + border-radius: 8px; + box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05); + font-size: 16px; + background: #FFFFFF; + color: #646E82; + font-family: 'Inter', sans-serif; +} +.form-group input::placeholder, +.form-group textarea::placeholder { + color: #646E82; +} + +.phone-input { + display: flex; + border: 1px solid #D0D5DD; + border-radius: 8px; + overflow: hidden; + box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05); +} +.phone-input select { + border: none; + border-right: 1px solid #D0D5DD; + border-radius: 0; + box-shadow: none; +} +.phone-input input { + border: none; + flex-grow: 1; + box-shadow: none; +} + +.checkbox-group { + flex-direction: row; + align-items: center; + gap: 12px; +} +.checkbox-group input { + width: 20px; + height: 20px; +} +.checkbox-group label { + margin: 0; + color: #646E82; +} +.checkbox-group label a { + color: #2D738C; +} + +.contact-form button { + width: 100%; + padding: 12px 20px; + font-size: 16px; +} + +/* 7. FAQ Section */ + +.faq-section { + padding: 128px 0; + text-align: center; +} + +.faq-header { + margin-bottom: 64px; +} + +.faq-header h2 { + font-size: 36px; + font-weight: 600; + line-height: 44px; + letter-spacing: -0.02em; + color: #101828; + margin-bottom: 20px; +} + +.faq-header p { + font-size: 20px; + line-height: 30px; + color: #667085; + max-width: 768px; + margin: 0 auto; +} + +.faq-grid { + display: grid; + grid-template-columns: repeat(3, 1fr); + gap: 64px 32px; + max-width: 1232px; + margin: 0 auto 64px; + text-align: left; +} + +.faq-item { + display: flex; + flex-direction: column; + gap: 20px; +} +.faq-icon-container { + width: 48px; + height: 48px; + background: rgba(39, 77, 90, 0.08); + border-radius: 24px; + display: flex; + justify-content: center; + align-items: center; + color: #2D738C; + font-size: 22px; +} + +.faq-item h3 { + font-size: 20px; + font-weight: 600; + color: #101828; + margin: 0; +} + +.faq-item p { + font-size: 16px; + line-height: 24px; + color: #667085; + margin: 0; +} + +.faq-footer { + max-width: 1232px; + margin: 0 auto; + padding: 40px 32px; + background: #F9FAFB; + border-radius: 16px; + display: flex; + flex-direction: column; + align-items: center; + gap: 8px; +} +.faq-footer h3 { + font-size: 20px; + font-weight: 500; + color: #101828; + margin: 16px 0 0 0; +} + +.faq-footer p { + font-size: 18px; + color: #667085; + margin: 0 0 32px 0; +} +.avatar-group { + display: flex; + position: relative; + width: 120px; + height: 56px; +} +.avatar { + width: 48px; + height: 48px; + border-radius: 50%; + border: 1.5px solid #FFFFFF; + position: absolute; + top: 8px; + object-fit: cover; +} +.avatar:nth-child(1) { left: 0; z-index: 3;} +.avatar:nth-child(2) { left: 50%; transform: translateX(-50%); top:0; z-index: 2;} +.avatar:nth-child(3) { right: 0; z-index: 1;} +.avatar.large { + width: 56px; + height: 56px; +} + + +/* ========================================================================== + Mobile Home Page Styles + ========================================================================== */ + +@media (max-width: 768px) { + + /* Mobile Hero Section */ + .hero-section { + height: 600px; + margin-top: 0; + align-items: flex-start; + } + + .hero-overlay, .hero-image-left, .hero-image-right { + display: none; + } + + .hero-background { + background: url('../images/2.hero.jpg') no-repeat center center/cover; + } + + .hero-background::after { + content: ''; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: linear-gradient(122.4deg, rgba(19, 49, 60, 0.92) 35.41%, rgba(39, 77, 90, 0.08) 92.92%); + } + + .hero-content { + padding: 64px 24px; + width: 100%; + box-sizing: border-box; + } + .hero-content h1 { + font-size: 40px; + line-height: 48px; + letter-spacing: -0.03em; + } + .hero-content p { + font-size: 16px; + line-height: 24px; + margin-bottom: 64px; + } + .hero-content .badge-group { + border-radius: 37px; + } + + /* Mobile Meet the Team Section */ + .meet-the-team-section { + flex-direction: column; + padding: 64px 24px; + gap: 40px; + } + .video-container, .team-content { + width: 100%; + max-width: 327px; + } + .video-container { + height: 190px; + } + + .team-content h2 { + font-size: 32px; + line-height: 40px; + text-align: center; + } + .team-content p { + font-size: 16px; + line-height: 24px; + text-align: center; + margin-bottom: 32px; + } + .team-content .btn-secondary { + margin: 0 auto; + display: block; + width: 124px; + height: 44px; + } + + /* Mobile Activities Section */ + .activities-section { + padding: 64px 0; + } + .activities-header { + padding: 0 24px; + margin-bottom: 48px; + } + .activities-header h2 { + font-size: 32px; + line-height: 40px; + } + .activities-header p { + font-size: 16px; + line-height: 24px; + } + .activities-content { + flex-direction: column; + align-items: center; + gap: 32px; + padding: 0 24px; + } + .activities-nav { + width: 100%; + max-width: 326px; + gap: 32px; + } + .activities-nav ul { + width: 100%; + gap: 16px; + } + .activities-nav li { + display: flex; + justify-content: space-between; + align-items: center; + padding: 16px; + background: rgba(208, 213, 221, 0.5); + border-radius: 8px; + font-size: 16px; + font-weight: 600; + color: #000; + } + .activities-nav li::before { + display: none; + } + .activities-nav li.active::after { + content: ' '; + display: inline-block; + border: solid black; + border-width: 0 2px 2px 0; + padding: 4px; + transform: rotate(45deg); + -webkit-transform: rotate(45deg); + } + .activities-nav .btn-primary-orange { + align-self: center; + } + .activity-details { + width: 100%; + max-width: 327px; + } + .activity-details p { + font-size: 16px; + line-height: 24px; + } + .activity-details img { + height: 300px; + border-radius: 16px; + } + + /* Mobile Latest News Section */ + .latest-news-section { + padding: 64px 24px; + } + .news-header, .news-articles { + margin-bottom: 48px; + } + .news-header h2 { + font-size: 32px; + line-height: 40px; + } + .news-header p { + font-size: 16px; + line-height: 24px; + } + .news-articles { + flex-direction: column; + align-items: center; + gap: 48px; + } + + /* Mobile Testimonials Section */ + .testimonials-section { + flex-direction: column; + padding: 64px 0; + align-items: center; + gap: 32px; + } + .testimonials-intro { + width: 100%; + padding: 0 24px; + text-align: center; + box-sizing: border-box; + } + .testimonials-intro h2 { + font-size: 32px; + line-height: 40px; + } + .testimonials-intro p { + font-size: 16px; + line-height: 24px; + } + .testimonials-columns { + display: flex; + flex-direction: row; + width: 100%; + height: auto; + overflow-x: auto; + overflow-y: hidden; + padding: 0 24px; + box-sizing: border-box; + scroll-snap-type: x mandatory; + } + .testimonials-columns::-webkit-scrollbar { + display: none; + } + .testimonial-column { + display: contents; + } + .column-offset { + margin-top: 0; + } + + /* Mobile Become Part Section */ + .become-part-section { + padding: 64px 16px; + } + .become-part-header { + margin-bottom: 48px; + } + .become-part-header h2 { + font-size: 32px; + line-height: 40px; + } + .become-part-header p { + font-size: 16px; + line-height: 24px; + } + .team-photo { + width: 100%; + height: auto; + margin-bottom: 48px; + } + .contact-form-container { + width: 100%; + padding: 0; + } + .form-row { + flex-direction: column; + gap: 24px; + } + + /* Mobile FAQ Section */ + .faq-section { + padding: 64px 16px; + } + .faq-header { + margin-bottom: 48px; + } + .faq-header h2 { + font-size: 32px; + line-height: 40px; + } + .faq-header p { + font-size: 18px; + line-height: 28px; + } + .faq-grid { + grid-template-columns: 1fr; + gap: 40px; + padding: 0 8px; + } + .faq-item { + align-items: center; + } + .faq-item h3, .faq-item p { + text-align: center; + } + .faq-footer { + width: 100%; + box-sizing: border-box; + padding: 32px 20px; + } +}""" + + +"./css/pages/_projects.css" : +""" +/* ========================================================================== + Projects Page Specific Styles (Listing Page) + ========================================================================== */ + +/** + * Ta datoteka vsebuje stile, ki se uporabljajo izključno na strani s + * seznamom vseh projektov. + * + * 1. Glava strani (naslov, opis, obrazec za prijavo) + * 2. Sekcija z vsemi objavami (mreža) + * 3. Paginacija + * 4. Stili za stran s projekti na mobilnih napravah + */ + +/* 1. Glava strani */ + +.page-content { + padding-top: 80px; /* Odmik za fiksno glavo */ +} + +.page-header-section { + padding: 96px 0; + background: #FFFFFF; + text-align: center; +} + +.page-header-section .container.text-center { + display: flex; + flex-direction: column; + align-items: center; + gap: 24px; + max-width: 960px; +} + +.page-subtitle { + font-weight: 600; + font-size: 16px; + color: #FA7850; +} + +.page-header-section h1 { + font-weight: 600; + font-size: 48px; + line-height: 60px; + letter-spacing: -0.02em; + color: #101828; + margin: 0; +} + +.page-description { + font-size: 20px; + line-height: 30px; + color: #667085; + max-width: 768px; + margin: 0; +} + +.subscribe-form { + display: flex; + gap: 16px; + margin-top: 16px; +} + +.subscribe-form input { + width: 360px; + height: 48px; + padding: 12px 16px; + border: 1px solid #D0D5DD; + border-radius: 8px; + box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05); + font-size: 16px; + box-sizing: border-box; +} + +.subscribe-form .btn { + height: 48px; +} + +.privacy-note { + font-size: 14px; + color: #667085; + margin-top: -8px; +} + +.privacy-note a { + color: #667085; + font-weight: 500; +} + +/* 2. Sekcija z vsemi objavami */ + +.all-posts-section { + padding: 0 80px 96px; +} + +.all-posts-section .container.column-layout { + flex-direction: column; + align-items: flex-start; + gap: 64px; +} + +.all-posts-section h2 { + font-size: 24px; + font-weight: 600; + line-height: 32px; + color: #101828; + margin: 0; +} + +.posts-grid { + display: grid; + grid-template-columns: repeat(3, 1fr); + gap: 48px 32px; + width: 100%; +} + +/* 3. Paginacija */ + +.pagination { + width: 100%; + display: flex; + justify-content: space-between; + align-items: center; + padding-top: 20px; + border-top: 1px solid #EAECF0; +} + +.pagination-arrow { + display: flex; + align-items: center; + gap: 8px; + font-size: 14px; + font-weight: 500; + color: #667085; + text-decoration: none; +} + +.pagination-numbers { + display: flex; + gap: 2px; +} + +.page-number { + display: flex; + justify-content: center; + align-items: center; + width: 40px; + height: 40px; + border-radius: 8px; + text-decoration: none; + font-size: 14px; + font-weight: 500; + color: #667085; +} + +.page-number.active { + background-color: rgba(102, 112, 133, 0.16); + color: #2D738C; +} + +.page-dots { + display: flex; + justify-content: center; + align-items: center; + width: 40px; + height: 40px; + color: #667085; +} + + +/* ========================================================================== + Mobile Projects Page Styles + ========================================================================== */ + +@media (max-width: 768px) { + + .page-content { + padding-top: 60px; /* Prilagoditev za fiksno glavo */ + } + + .page-header-section { + padding: 64px 24px; + } + + .page-header-section h1 { + font-size: 32px; + line-height: 40px; + } + + .page-description { + font-size: 16px; + line-height: 24px; + } + + .subscribe-form { + flex-direction: column; + width: 100%; + } + + .subscribe-form input { + width: 100%; + } + + .all-posts-section { + padding: 48px 24px; + } + + .all-posts-section .container.column-layout { + gap: 32px; + } + + .posts-grid { + grid-template-columns: 1fr; + gap: 48px; + } + + .pagination { + flex-direction: column; + gap: 24px; + } + + .pagination-numbers { + order: -1; + } +}""" + + +"./en/index.html" : +""" + + + + + + Macedonian Student Organisation in Slovenia + + + + + + + + + + + + + + + + +
+
+
+
+
+
+
+
+
+
+
+ First official MSOS +
+
+

Empowering young people with skills to change the world

+

Whether you have a team of 2 or 200, our shared team inboxes keep everyone on the same page and in the loop.

+
+ +
+
+ +
+
+ Team members collaborating +
+ +
+
+

Meet our incredible team!

+

Our philosophy is simple — hire a team of diverse, passionate people and foster a culture that empowers you to do you best work.

+ +
+
+ +
+
+

Activities

+

Our philosophy is simple — hire a team of diverse, passionate people and foster a culture that empowers you to do you best work.

+
+
+
+
    +
  • Student representation
  • +
  • Education and culture
  • +
  • Entertainment and socializing
  • +
  • Student support
  • +
+ +
+
+

Sed molestie penatibus sit bibendum pharetra purus faucibus fames aliquet. Morbi morbi ac sed tempor porta. Dui iaculis vitae fames sapien. Pellentesque urna eget habitasse arcu sed ornare. Dignissim lobortis ultrices maecenas magna ac habitant donec etiam at.

+ A group of students smiling and collaborating +
+
+
+ +
+
+

Latest news

+

Dignissim senectus ut senectus curabitur condimentum gravida cras nibh ac. Lorem scelerisque tortor rhoncus viverra pharet.

+
+
+
+ Pink and blue tinted image of a snowy mountain peak +
+

Alec Whitten • 17 Jan 2022

+

Bill Walsh leadership lessons

+

Like to know the secrets of transforming a 2-14 team into a 3x Super Bowl...

+
+
+
+ A woman presenting in front of a whiteboard with sticky notes to a team +
+

Demi Wilkinson • 16 Jan 2022

+

PM mental models

+

Mental models are simple expressions of complex processes or relationships.

+
+
+
+ A modern computer desk setup with a large monitor, keyboard, and headphones +
+

Candice Wu • 15 Jan 2022

+

What is Wireframing?

+

Introduction to Wireframing and its Principles. Learn from the best in the industry.

+
+
+
+ +
+ +
+
+

See what our partners say about us

+

Everything you need to know about the product and billing.

+
+
+
+
+

How collaboration makes us better

+

Dignissim senectus ut senectus curabitur condimentum gravida cras nibh ac. Lorem scelerisque tortor rhoncus viverra pharetra. Dignissim senectus ut senectus curabitur condimentum gravida cras nibh ac. Lorem scelerisque tortor rhoncus viverra pharetra feugiat.

+
+ Aleksandar Popovski +
+

Aleksandar Popovski

+

Graphic designer at MSOS

+
+
+
+
+

Consectetur vitae ac parturient massa

+

Dignissim senectus ut senectus curabitur condimentum gravida cras nibh ac. Lorem scelerisque tortor rhoncus viverra pharetra. Dignissim senectus ut senectus curabitur condimentum gravida cras nibh ac. Lorem scelerisque tortor rhoncus viverra pharetra feugiat. Dignissim senectus ut senectus curabitur condimentum gravida cras nibh ac. Lorem scelerisque tortor rhoncus viverra pharetra.

+
+ Another team member +
+

Aleksandar Popovski

+

Graphic designer at MSOS

+
+
+
+
+
+
+

Proud partners

+

Dignissim senectus ut senectus curabitur condimentum gravida cras nibh ac. Lorem scelerisque tortor rhoncus viverra pharetra. Dignissim senectus ut senectus curabitur condimentum gravida cras nibh ac. Lorem scelerisque tortor rhoncus viverra pharetra feugiat.

+
+ Another partner +
+

Aleksandar Popovski

+

Graphic designer at MSOS

+
+
+
+
+

Our collaboration experience

+

Dignissim senectus ut senectus curabitur condimentum gravida cras nibh ac. Lorem scelerisque tortor rhoncus viverra pharetra. Dignissim senectus ut senectus curabitur condimentum gravida cras nibh ac. Lorem scelerisque tortor rhoncus viverra. Dignissim senectus ut senectus curabitur condimentum gravida cras nibh ac. Lorem scelerisque tortor rhoncus viverra pharetra feugiat.

+
+ Another team member +
+

Aleksandar Popovski

+

Graphic designer at MSOS

+
+
+
+
+
+
+ +
+
+

Become part of our amazing team

+

We're a 100% remote team spread all across the world. Join us!

+
+ Our amazing team in a classroom setting + +
+
+
+
+ + +
+
+ + +
+
+
+ + +
+
+ +
+ + +
+
+
+ + +
+
+ + +
+ +
+
+
+ +
+
+

Frequently asked questions

+

Everything you need to know about the product and billing.

+
+
+
+
+

Is there a free trial available?

+

Yes, you can try us for free for 30 days. Our friendly team will work with you to get you up and running as soon as possible.

+
+
+
+

Can I change my plan later?

+

Of course. Our pricing scales with your company. Chat to our friendly team to find a solution that works for you.

+
+
+
+

What is your cancellation policy?

+

We understand that things change. You can cancel your plan at any time and we’ll refund you the difference already paid.

+
+
+
+

Can other info be added to an invoice?

+

Yes, you can try us for free for 30 days. Our friendly team will work with you to get you up and running as soon as possible.

+
+
+
+

How does billing work?

+

Of course. Our pricing scales with your company. Chat to our friendly team to find a solution that works for you.

+
+
+
+

How do I change my account email?

+

We understand that things change. You can cancel your plan at any time and we’ll refund you the difference.

+
+
+ +
+ +
+ + + + + +""" + + +"./en/projects/index.html" : +""" + + + + + + Projects - Macedonian Student Organisation in Slovenia + + + + + + + + + + + + + + + + +
+ +
+
+ Our projects +

Projects

+

Subscribe to learn about new product features, the latest in technology, solutions, and updates.

+ +

We care about your data in our privacy policy

+
+
+ + +
+ +
+
+ + + + + + +""" + + +"./en/projects/macedonian-student-night-in-ljubljana/index.html" : +""" + + + + + + Macedonian Student Night in Ljubljana - MSOS + + + + + + + + + + + + + + + + +
+
+
+

Published on October 8, 2022

+

Macedonian Student Night in Ljubljana

+

From an idea to a party with 500 students – that's how our story began!

+
+ +
+ Atmosphere from the Macedonian Student Night in Ljubljana +
+ +
+

On October 8, 2022, in the heart of the Student Campus in Ljubljana, the first Macedonian Student Night in Slovenia took place. Under the motto #FeelsLikeHome, more than 500 young people enjoyed Macedonian music, delicious traditional food, and an atmosphere that felt like home. This event was not just a party – it was the beginning of a new story, which would later grow into the Macedonian Student Organization in Slovenia (MSOS).

+ +

How an idea for socializing became the start of a movement

+

It all began with a simple wish – to gather, get to know each other, and feel Macedonia, even though we were far from it. Kristijan Popovski, then a student at the School of Economics and Business in Ljubljana, shared his idea with a few colleagues, and the response was incredible. In less than two weeks, over 40 students joined the organizing team. Everyone contributed their enthusiasm and time, and the shared spirit and desire to connect turned this spontaneous initiative into an event we would remember for a long time.

+ +
+ Preparations and meetings for the Macedonian Student Night +
Photos from the preparations and meetings for organizing the Macedonian Student Night.
+
+ +

From that moment on, we spent every free moment in the offices of the student organization Povezani, which gave us great support in organizing. Days and nights were spent planning, holding meetings, and writing social media posts – all with the goal of creating an event that we initially thought would attract, if we were lucky, about 100 visitors.

+

A week before the event, we posted interesting facts about Macedonia every day – its national treasures, music, and culture. Slowly but surely, we built the atmosphere and excitement, not only among Macedonian students but also among many others who wanted to feel our energy.

+ +
+ Poster where Slovenians learn the Macedonian alphabet +
Poster with Cyrillic and Latin letters. Slovenians are learning the Macedonian alphabet, while Macedonians are teaching them.
+
+ +
+

“Organizing the first MSOS party was a one-of-a-kind experience – sleepless, ambitious, and involved in everything from logistics to mopping the floor... Thank goodness for Red Bull 😉 (P.S. We drank the entire fridge supply!)”

+
— Marko - first-year student (at the time)
+
+ +

The taste and smell of Macedonia in the heart of Ljubljana

+

The party started at 8:00 PM and was designed in two parts. The first part was a real gastronomic and cultural journey through Macedonia. Students could try bread with ajvar and white cheese, Macedonian wine, tasty snacks, and traditional drinks. The tables were also filled with other authentic products that reminded everyone of home. All these flavors and aromas were made possible thanks to the support of the Macedonian products store “Makedonija Trade,” which selflessly contributed to making this part of the evening truly enjoyable.

+ +
+ Stands with Macedonian symbols, food, and drinks +
Photos of the stands with Macedonian symbols, traditional food, and drinks.
+
+ +

In addition to the food, visitors could explore interesting facts about the country, photos of famous Macedonian figures and cultural landmarks, and see traditional costumes and a gaida up close. The atmosphere was warm and full of curiosity – like a small exhibition within a large student party.

+ +
+ Mini quiz about Macedonia +
Mini quiz with questions about Macedonia, where students in one part of the club are competing.
+
+ +

Support from the Macedonian community and diplomacy

+

The evening was enriched by the presence of important guests from the Macedonian community in Slovenia. The President of the Union of Macedonian Cultural Associations in Slovenia, Mr. Blagoja Nasteski, joined the event, confirming the importance of such initiatives for preserving the Macedonian spirit and tradition in the diaspora.

+ +
+ Kristijan and Bisera with Ambassador Zelenkovska and Mr. Nasteski +
Kristijan and Bisera together with Ambassador Zelenkovska and the President of the Union of Macedonian Associations, Mr. Nasteski
+
+ +

We were especially honored to welcome the Ambassador of North Macedonia to Slovenia, Mrs. Suzana Zelenkovska, who gave warm words of encouragement and support to the youth. Her presence and interest in the event were an additional motivation to continue our mission of connecting and promoting the Macedonian student community.

+

The party had great energy spreading everywhere – at one point there was a small but controlled chaos. Even though the event ended slightly earlier than planned, the students kept singing together for another hour while we were cleaning up the place. Truly, a night to remember!

+ +
+

“I was part of the organizing team and was supposed to maintain order among the students, but when they played the song 'Biser Balkanski,' I couldn't resist – so I joined in as well... That was my special moment that night!”

+
— Hristijan - second-year student (at the time)
+
+ +

A beginning to remember

+

That night wasn't just another student party – it was the moment we realized we had started something bigger. Instead of the expected 100 guests, about 500 students came to the club, and the energy was incredible. New friendships were made, songs were sung from the heart, and Macedonian culture and tradition took center stage for the entire evening.

+

This night laid the foundation for the Macedonian Student Organization in Slovenia and showed us that with enthusiasm, unity, and a bit of courage, it's possible to create something that brings people together and gives them a sense of home – even when they are far away from it.

+ +
+ The dedicated team of volunteers after cleaning up the venue +
Photo taken at 4:00 a.m., after finishing and cleaning up the venue together with the dedicated team of volunteers
+
+
+ +
+
+
+
+ Avatar of Kristijan Popovski +
+

Kristijan Popovski

+

President and Founder

+
+
+ +
+
+
+ +
+
+
+

Join 2,000+ subscribers

+

Stay in the loop with everything you need to know.

+ +

We care about your data in our privacy policy

+
+
+
+
+ + + + + +""" + + +"./en/projects/makedonska-studentska-vecer-vo-ljubljana/index.html" : +""" + + + + + + Македонска студентска вечер во Љубљана - МСОС + + + + + + + + + + + + + + + + +
+
+
+

Објавено на 8 октомври 2022

+

Македонска студентска вечер во Љубљана

+

Од идеја до журка со 500 студенти – вака започна нашата приказна!

+
+ +
+ Атмосфера од македонската студентска вечер во Љубљана +
+ +
+

На 8 октомври 2022 година, во срцето на Студентскиот кампус во Љубљана, се одржа првата македонска студентска вечер во Словенија. Под мотото #FeelsLikeHome, повеќе од 500 млади уживаа во македонска музика, вкусна традиционална храна и атмосфера која потсетуваше на дома. Овој настан не беше само журка – беше почеток на една нова приказна, која подоцна ќе прерасне во Македонска студентска организација во Словенија (МСОС).

+ +

Како една идеја за дружење стана почеток на движење

+

Сè започна со едноставна желба – да се собереме, да се запознаеме и да ја почувствуваме Македонија, иако сме далеку од неа. Кристијан Поповски, тогаш студент на Економскиот факултет во Љубљана, ја сподели својата идеја со неколку колеги, а одговорот беше неверојатен. За помалку од две недели, преку 40 студенти се пријавија во организацискиот тим. Секој понесе дел од својот ентузијазам и време, а заедничкиот дух и желбата за поврзување ја претворија оваа спонтана иницијатива во настан што долго ќе го паметиме.

+ +
+ Подготовки и состаноци за македонската студентска вечер +
Фотографии од подготовките и состаноците за организирање на македонската студентска вечер
+
+ +

Од тој момент, секој слободен миг го поминувавме во канцелариите на студентската организација „Повезани“, кои ни дадоа голема поддршка во организирањето. Денови и ноќи правевме планови, одржувавме состаноци, пишувавме објави на социјалните мрежи – сè со цел да создадеме настан кој првично мислевме дека ќе привлече, ако имаме среќа, околу 100 посетители.

+

Една недела пред настанот, секој ден објавувавме интересни факти за Македонија, нејзините национални богатства, музика и култура. Полека, но сигурно, ја градевме атмосферата и ентузијазмот, не само кај македонските студенти, туку и кај многу други кои сакаа да ја почувствуваат нашата енергија.

+ +
+ Хамер со испишани кирилични и латинични букви +
Хамер со испишани кирилични и латинични букви. Словенците ја учат македонската азбука, додека македонците ги подучуваат.
+
+ +
+

„Организирањето на првата МСОС журка беше уникатно искуство – без сон, амбициозни и вклучени во сè, од логистика до бришење на подот... Среќа што постои Red Bull 😉 (П.с. целиот фрижидер го испивме!)“

+
— Марко – студент во прва година
+
+ +

Вкусот и мирисот на Македонија во срцето на Љубљана

+

Журката започна во 20:00 часот и беше замислена во два дела. Првиот дел беше вистинско гастрономско и културно патување низ Македонија. Студентите можеа да пробаат лебчиња со ајвар и биено сирење, македонско вино, вкусни грицки и традиционални пијалоци. На масите имаше изложени и други автентични производи што сите ги потсетуваа на дома. Сите овие вкусови и мириси беа овозможени благодарение на поддршката од продавницата за македонски производи „Македонија Трејд“, кои несебично придонесоа овој дел од вечерта да биде вистинско уживање.

+ +
+ Штандови со македонски обележја, традиционална храна и пијалаци +
Фотографии од штандовите со македонски обележја, традиционална храна и пијалаци.
+
+ +

Покрај храната, посетителите можеа да разгледаат интересни факти за државата, фотографии од познати македонски дејци и културни знаменитости, како и да видат традиционални носии и гајда одблиску. Атмосферата беше топла и полна со љубопитност – како мала изложба во рамките на една голема студентска забава.

+ +
+ Мини квиз со прашања за Македонија +
Мини квиз со прашања за Македонија, каде студентите во едниот дел од клубот се натпреваруваат
+
+ +

Поддршка од македонската заедница и дипломатијата

+

Вечерта беше збогатена и со присуството на важни гости од македонската заедница во Словенија. На настанот ни се придружи претседателот на Сојузот на македонските културни друштва во Словенија, г-н Благоја Настески, кој со своето присуство ја потврди важноста на ваквите иницијативи за одржување на македонскиот дух и традиција во дијаспората.

+ +
+ Кристијан и Бисера заедно со амбасадорката Зеленковска и претседателот г-н Настески +
Кристијан и Бисера заедно со амбасадорката Зеленковска и претседателот на Сојузот на македонски друштва, г-н Настески
+
+ +

Посебна чест ни беше да ја пречекаме и амбасадорката на Северна Македонија во Словенија, г-ѓа Сузана Зеленковска, која упати топли зборови на охрабрување и поддршка за младите. Нејзиното присуство и интерес за настанот беа дополнителен мотив да продолжиме со нашата мисија за поврзување и афирмација на македонската студентска заедница.

+

Журката беше одлична, со супер енергија што се шири насекаде. Студенти на сите страни и во еден момент владееше мал, но контролиран хаос – вистинско место каде што успеавме да се избориме и да направиме еден навистина одличен настан. Иако ја завршивме журката малку порано, студентите не престанаа уште еден час да пеат заедно со нас, како што го расчистувавме местото. Навистина, ноќ за паметење!

+ +
+

„Бев дел од тимот за организација и требаше да одржувам ред и мир меѓу студентите, ама кога ми ја пуштија песната ‘Бисер Балкански’ не издржав – па им се приклучив и јас... Тоа беше мојот специјален момент таа вечер!“

+
— Христијан – студент во втора година
+
+ +

Почеток што ќе го паметиме

+

Таа вечер не беше само уште една студентска забава – беше моментот кога сфативме дека сме започнале нешто поголемо. Наместо очекуваните 100 гости, во клубот влегоа околу 500 студенти, а енергијата беше неверојатна. Се создадоа нови пријателства, се слушаа песни што ги пеевме од срце, а македонската култура и традиција беа во прв план цела вечер.

+

Оваа ноќ го постави темелот за Македонската студентска организација во Словенија и ни покажа дека со ентузијазам, заедништво и малку храброст, може да се создаде нешто што ќе ги обедини луѓето и ќе им даде чувство на дом – дури и кога се далеку од него.

+ +
+ Посветениот тим на волонтери по завршувањето на настанот +
Фотографија направена во 4 часот наутро, по завршувањето и средувањето на просторот заедно со посветениот тим на волонтери
+
+
+ +
+
+
+
+ Аватар на Кристијан Поповски +
+

Кристијан Поповски

+

Претседател и основач

+
+
+ +
+
+
+ +
+
+
+

Придружете се на 2.000+ претплатници

+

Останете во тек со сè што треба да знаете.

+ +

Ние се грижиме за вашите податоци во нашата политика за приватност

+
+
+
+
+ + + + + +""" + + +"./en/projects/morning-coffee-in-front-of-ctk/index.html" : +""" + + + + + + Morning Coffee in front of CTK – 2024: Coffee, burek, and lots of smiles + + + + + + + + + + + + + + + + +
+
+
+

Published on June 8, 2024

+

Morning Coffee in front of CTK – 2024: Coffee, burek, and lots of smiles

+

When exams somehow become easier with Saturday morning coffee, burek, and good company in at CTK!

+
+ +
+ Students enjoying coffee and burek in front of CTK library. +
+ +
+

On June 8, 2024, from 9 to 12 AM, at the Central Technical Library of the University of Ljubljana (CTK), we organized our already traditional student break – Morning Coffee in at CTK together with the team from Skupina Povezani and CTK. This was the second year in a row that we gathered at the same place, but each time brings new moments to remember.

+ +

Beating Exam Stress with Coffee

+

The exam session always brings stress – hours and hours of studying, conversations revolving only around exams, first and second attempts, passed or not, some taking the exam for the first time, and some for the fifth time. That's why we decided to take a short break to catch our breath: to relax, to laugh, and to remind ourselves that we're in this study stress together.

+ +
+ Students lining up in front of the CTK library building. +
Hundreds of students lined up in front of CTK, waiting even before opening to secure a spot in the library on time.
+
+ +

With a cup of hot coffee in hand, and thanks to Burek Olimpija, we enjoyed delicious burek with meat and with cheese. We also tried to bring in a bit of fun – we invited students to bring their own cups, and there was a prize for the most creative ones.

+ +
+ A student smiling while eating a piece of burek. +
Free warm burek – the secret formula for solving even the toughest mathematical problems 😉
+
+ +
+ A group of students with hot coffee posing for the camera. +
A group of students with hot coffee, posing for the camera.
+
+ +

We asked two questions that revealed a whole palette of student emotions

+

For an extra dose of interaction, we set up two big boards with questions that simply make you want to answer: “How do I survive the exam session?" and "Kako bi opisal počutje med izpitnem obdobjem?” (“How would you describe your feelings during the exam period?" in Slovenian).

+

The reactions were instant – students rushed to write, and the answers were everything but boring: from "chaotic" and “We want to sleep! (not in CTK)!" to "chill", "stressed", "exhausted", "happy" and "sleepy". In other words – a whole spectrum of student emotions, honestly poured into just a few words.

+ +
+ A white board with handwritten student answers about their feelings during the exam period. +
Witty and sincere answers on the big question boards at CTK.
+
+ +

How we went from coffee to a flight simulator and 3D printing machines

+

As a bonus for students, in cooperation with the university's technical library, the program was enriched with a CTK exhibition, where a flight simulator, 3D printers, and other interesting equipment were presented. Students could try them out and then rent them for free at the CTK Creative Studio – part of their educational program.

+ +

Coffee and burek = motivation to get up every day and study for 12 hours

+

Around 150 people visited the joint stand of MSOS, Skupina Povezani, and CTK to hang out, have coffee, grab a snack, and exchange stories among books and deadlines. The event took place in an excellent atmosphere – lots of smiles, new acquaintances, and a small reminder that even in the most stressful periods, there's always time for coffee and good company.

+ +
+ Students gathered at the joint stand during the event. +
Part of the atmosphere at the joint stand
+
+ +

See you again next year – even more relaxed and with even more coffee!

+ +
+ A collage of photos showing students, coffee cups, and burek. +
Good company, lots of memories, and exam stress overcome together.
+
+
+ +
+
+
+
+ Avatar of Kristijan Popovski +
+

Kristijan Popovski

+

President and Founder

+
+
+ +
+
+
+ +
+
+
+

Join 2,000+ subscribers

+

Stay in the loop with everything you need to know.

+ +

We care about your data in our privacy policy

+
+
+
+
+ + + + + +""" + + +"./en/projects/testproject/index.html" : +""" + + + + + + Macedonian Student Night in Ljubljana - MSOS + + + + + + + + + + + + + + + + +
+
+
+

Published on October 8, 2022

+

Macedonian Student Night in Ljubljana

+

From an idea to a party with 500 students – that's how our story began!

+
+ +
+ Atmosphere from the Macedonian Student Night in Ljubljana +
+ +
+

On October 8, 2022, in the heart of the Student Campus in Ljubljana, the first Macedonian Student Night in Slovenia took place. Under the motto #FeelsLikeHome, more than 500 young people enjoyed Macedonian music, delicious traditional food, and an atmosphere that felt like home. This event was not just a party – it was the beginning of a new story, which would later grow into the Macedonian Student Organization in Slovenia (MSOS).

+ +

How an idea for socializing became the start of a movement

+

It all began with a simple wish – to gather, get to know each other, and feel Macedonia, even though we were far from it. Kristijan Popovski, then a student at the School of Economics and Business in Ljubljana, shared his idea with a few colleagues, and the response was incredible. In less than two weeks, over 40 students joined the organizing team. Everyone contributed their enthusiasm and time, and the shared spirit and desire to connect turned this spontaneous initiative into an event we would remember for a long time.

+ +
+ Preparations and meetings for the Macedonian Student Night +
Photos from the preparations and meetings for organizing the Macedonian Student Night.
+
+ +

From that moment on, we spent every free moment in the offices of the student organization Povezani, which gave us great support in organizing. Days and nights were spent planning, holding meetings, and writing social media posts – all with the goal of creating an event that we initially thought would attract, if we were lucky, about 100 visitors.

+

A week before the event, we posted interesting facts about Macedonia every day – its national treasures, music, and culture. Slowly but surely, we built the atmosphere and excitement, not only among Macedonian students but also among many others who wanted to feel our energy.

+ +
+ Poster where Slovenians learn the Macedonian alphabet +
Poster with Cyrillic and Latin letters. Slovenians are learning the Macedonian alphabet, while Macedonians are teaching them.
+
+ +
+

“Organizing the first MSOS party was a one-of-a-kind experience – sleepless, ambitious, and involved in everything from logistics to mopping the floor... Thank goodness for Red Bull 😉 (P.S. We drank the entire fridge supply!)”

+
— Marko - first-year student (at the time)
+
+ +

The taste and smell of Macedonia in the heart of Ljubljana

+

The party started at 8:00 PM and was designed in two parts. The first part was a real gastronomic and cultural journey through Macedonia. Students could try bread with ajvar and white cheese, Macedonian wine, tasty snacks, and traditional drinks. The tables were also filled with other authentic products that reminded everyone of home. All these flavors and aromas were made possible thanks to the support of the Macedonian products store “Makedonija Trade,” which selflessly contributed to making this part of the evening truly enjoyable.

+ +
+ Stands with Macedonian symbols, food, and drinks +
Photos of the stands with Macedonian symbols, traditional food, and drinks.
+
+ +

In addition to the food, visitors could explore interesting facts about the country, photos of famous Macedonian figures and cultural landmarks, and see traditional costumes and a gaida up close. The atmosphere was warm and full of curiosity – like a small exhibition within a large student party.

+ +
+ Mini quiz about Macedonia +
Mini quiz with questions about Macedonia, where students in one part of the club are competing.
+
+ +

Support from the Macedonian community and diplomacy

+

The evening was enriched by the presence of important guests from the Macedonian community in Slovenia. The President of the Union of Macedonian Cultural Associations in Slovenia, Mr. Blagoja Nasteski, joined the event, confirming the importance of such initiatives for preserving the Macedonian spirit and tradition in the diaspora.

+ +
+ Kristijan and Bisera with Ambassador Zelenkovska and Mr. Nasteski +
Kristijan and Bisera together with Ambassador Zelenkovska and the President of the Union of Macedonian Associations, Mr. Nasteski
+
+ +

We were especially honored to welcome the Ambassador of North Macedonia to Slovenia, Mrs. Suzana Zelenkovska, who gave warm words of encouragement and support to the youth. Her presence and interest in the event were an additional motivation to continue our mission of connecting and promoting the Macedonian student community.

+

The party had great energy spreading everywhere – at one point there was a small but controlled chaos. Even though the event ended slightly earlier than planned, the students kept singing together for another hour while we were cleaning up the place. Truly, a night to remember!

+ +
+

“I was part of the organizing team and was supposed to maintain order among the students, but when they played the song 'Biser Balkanski,' I couldn't resist – so I joined in as well... That was my special moment that night!”

+
— Hristijan - second-year student (at the time)
+
+ +

A beginning to remember

+

That night wasn't just another student party – it was the moment we realized we had started something bigger. Instead of the expected 100 guests, about 500 students came to the club, and the energy was incredible. New friendships were made, songs were sung from the heart, and Macedonian culture and tradition took center stage for the entire evening.

+

This night laid the foundation for the Macedonian Student Organization in Slovenia and showed us that with enthusiasm, unity, and a bit of courage, it's possible to create something that brings people together and gives them a sense of home – even when they are far away from it.

+ +
+ The dedicated team of volunteers after cleaning up the venue +
Photo taken at 4:00 a.m., after finishing and cleaning up the venue together with the dedicated team of volunteers
+
+
+ +
+
+
+
+ Avatar of Kristijan Popovski +
+

Kristijan Popovski

+

President and Founder

+
+
+ +
+
+
+ +
+
+
+

Join 2,000+ subscribers

+

Stay in the loop with everything you need to know.

+ +

We care about your data in our privacy policy

+
+
+
+
+ + + + + + +""" + + +"./main.js" : +""" +document.addEventListener('DOMContentLoaded', function() { + + // --- Mobile Menu Toggle --- + const mobileMenuIcon = document.querySelector('.mobile-menu-icon'); + const body = document.querySelector('body'); + + if (mobileMenuIcon && body) { + mobileMenuIcon.addEventListener('click', () => { + // Preklopi razred 'nav-open' na body elementu za prikaz/skrivanje menija + body.classList.toggle('nav-open'); + }); + } + + // --- Language Switcher --- + const languageSelectors = document.querySelectorAll('.language-selector'); + + if (languageSelectors.length > 0) { + languageSelectors.forEach(selector => { + const currentLang = selector.querySelector('.current-lang'); + + if (currentLang) { + currentLang.addEventListener('click', (event) => { + // Prepreči, da bi klik na sprožilec takoj zaprl meni (zaradi globalnega listenerja) + event.stopPropagation(); + + // Preklopi .active razred na trenutnem menjalniku + selector.classList.toggle('active'); + + // Zapri vse ostale odprte menjalnike jezikov + languageSelectors.forEach(otherSelector => { + if (otherSelector !== selector) { + otherSelector.classList.remove('active'); + } + }); + }); + } + }); + + // Globalni listener za zapiranje menija ob kliku izven njega + window.addEventListener('click', () => { + languageSelectors.forEach(selector => { + selector.classList.remove('active'); + }); + }); + + // Globalni listener za zapiranje menija s tipko Escape + window.addEventListener('keydown', (event) => { + if (event.key === 'Escape') { + languageSelectors.forEach(selector => { + selector.classList.remove('active'); + }); + } + }); + + // Logika za dinamično generiranje URL-jev ostaja enaka + // Ta del poskrbi, da povezave v meniju vodijo na pravo jezikovno različico strani + const path = window.location.pathname; + const pathParts = path.split('/').filter(Boolean); + + // Predpostavka: prvi del poti je vedno jezikovna koda + const currentLangCode = pathParts[0] || 'si'; // Privzeto na 'si', če ni določeno + const relativePath = path.substring(path.indexOf(currentLangCode) + currentLangCode.length); + + languageSelectors.forEach(selector => { + const langLinks = selector.querySelectorAll('.lang-dropdown a[data-lang]'); + langLinks.forEach(link => { + const targetLang = link.getAttribute('data-lang'); + const newUrl = `/${targetLang}${relativePath}`; + link.setAttribute('href', newUrl); + }); + }); + } + + + // --- FAQ Accordion --- + const faqItems = document.querySelectorAll('.faq-item'); + + if (faqItems.length > 0) { + faqItems.forEach(item => { + const header = item.querySelector('h3'); + if (header) { + header.addEventListener('click', () => { + const content = item.querySelector('p'); + if (content) { + // Preprost preklop prikaza. Za napredno harmoniko bi uporabili razrede. + if (content.style.display === "none" || content.style.display === "") { + content.style.display = "block"; + } else { + content.style.display = "none"; + } + } + }); + } + }); + } + + // --- Activities Tab --- + const activityNavItems = document.querySelectorAll('.activities-nav li'); + const activityDetailsText = document.querySelector('.activity-details p'); + const activityDetailsImage = document.querySelector('.activity-details img'); + + // Placeholder vsebina za različne aktivnosti + const activitiesData = { + // Slovenska vsebina + 'Študentsko predstavništvo': { text: 'Vsebina za študentsko predstavništvo...'}, + 'Izobraževanje in kultura': { text: 'Vsebina za izobraževanje in kulturo...'}, + 'Zabava in druženje': { text: 'Vsebina za zabavo in druženje...'}, + 'Študentska podpora': { text: 'Vsebina za študentsko podoro...'}, + // Angleška vsebina + 'Student representation': { text: 'Content for student representation...'}, + 'Education and culture': { text: 'Content for education and culture...'}, + 'Entertainment and socializing': { text: 'Content for entertainment and socializing...'}, + 'Student support': { text: 'Content for student support...'}, + // Makedonska vsebina + 'Студентско претставување': { text: 'Содржина за студентско претставување...'}, + 'Образование и култура': { text: 'Содржина за образование и култура...'}, + 'Забава и дружење': { text: 'Содржина за забава и дружење...'}, + 'Студентска поддршка': { text: 'Содржина за студентска поддршка...'} + }; + + if (activityNavItems.length > 0 && activityDetailsText) { + activityNavItems.forEach(item => { + item.addEventListener('click', () => { + // Odstrani .active razred z vseh elementov + activityNavItems.forEach(navItem => navItem.classList.remove('active')); + // Dodaj .active razred na kliknjen element + item.classList.add('active'); + + // Posodobi vsebino glede na besedilo kliknjenega elementa + const activityName = item.textContent.trim(); + if (activitiesData[activityName]) { + activityDetailsText.textContent = activitiesData[activityName].text; + // Tukaj bi lahko posodobili tudi sliko, če je potrebno + // if (activityDetailsImage) { + // activityDetailsImage.src = activitiesData[activityName].image; + // } + } + }); + }); + } +});""" + + +"./mk/index.html" : +""" + + + + + + Македонска Студентска Организација во Словенија + + + + + + + + + + + + + + + + +
+
+
+
+
+
+
+
+
+
+
+ Прва официјална МСОС +
+
+

Ги зајакнуваме младите со вештини за да го променат светот

+

Без разлика дали имате тим од 2 или 200 луѓе, нашите заеднички тимски сандачиња ги одржуваат сите на иста страна и во тек со случувањата.

+
+ +
+
+ +
+
+ Членови на тимот соработуваат +
+ +
+
+

Запознајте го нашиот неверојатен тим!

+

Нашата филозофија е едноставна — да вработиме тим од разновидни, страсни луѓе и да поттикнеме култура која ве овластува да ја вршите својата најдобра работа.

+ +
+
+ +
+
+

Активности

+

Нашата филозофија е едноставна — да вработиме тим од разновидни, страсни луѓе и да поттикнеме култура која ве овластува да ја вршите својата најдобра работа.

+
+
+
+
    +
  • Студентско претставување
  • +
  • Образование и култура
  • +
  • Забава и дружење
  • +
  • Студентска поддршка
  • +
+ +
+
+

Sed molestie penatibus sit bibendum pharetra purus faucibus fames aliquet. Morbi morbi ac sed tempor porta. Dui iaculis vitae fames sapien. Pellentesque urna eget habitasse arcu sed ornare. Dignissim lobortis ultrices maecenas magna ac habitant donec etiam at.

+ Група насмеани студенти соработуваат +
+
+
+ +
+
+

Најнови вести

+

Dignissim senectus ut senectus curabitur condimentum gravida cras nibh ac. Lorem scelerisque tortor rhoncus viverra pharet.

+
+
+
+ Слика на снежен планински врв во розови и сини нијанси +
+

Alec Whitten • 17 Јан 2022

+

Лекции за лидерство од Бил Волш

+

Сакате да ги дознаете тајните за трансформација на тим со резултат 2-14 во династија со 3x Супер Боул...

+
+
+
+ Жена презентира пред табла со лепливи белешки на тим +
+

Demi Wilkinson • 16 Јан 2022

+

ПМ ментални модели

+

Менталните модели се едноставни изрази на сложени процеси или односи.

+
+
+
+ Модерно компјутерско биро со голем монитор, тастатура и слушалки +
+

Candice Wu • 15 Јан 2022

+

Што е Wireframing?

+

Вовед во Wireframing и неговите принципи. Учете од најдобрите во индустријата.

+
+
+
+ +
+ +
+
+

Погледнете што велат нашите партнери за нас

+

Сè што треба да знаете за производот и наплатата.

+
+
+
+
+

Како соработката нè прави подобри

+

Dignissim senectus ut senectus curabitur condimentum gravida cras nibh ac. Lorem scelerisque tortor rhoncus viverra pharetra. Dignissim senectus ut senectus curabitur condimentum gravida cras nibh ac. Lorem scelerisque tortor rhoncus viverra pharetra feugiat.

+
+ Александар Поповски +
+

Александар Поповски

+

Графички дизајнер во МСОС

+
+
+
+
+

Consectetur vitae ac parturient massa

+

Dignissim senectus ut senectus curabitur condimentum gravida cras nibh ac. Lorem scelerisque tortor rhoncus viverra pharetra. Dignissim senectus ut senectus curabitur condimentum gravida cras nibh ac. Lorem scelerisque tortor rhoncus viverra pharetra feugiat. Dignissim senectus ut senectus curabitur condimentum gravida cras nibh ac. Lorem scelerisque tortor rhoncus viverra pharetra.

+
+ Друг член на тимот +
+

Александар Поповски

+

Графички дизајнер во МСОС

+
+
+
+
+
+
+

Горди партнери

+

Dignissim senectus ut senectus curabitur condimentum gravida cras nibh ac. Lorem scelerisque tortor rhoncus viverra pharetra. Dignissim senectus ut senectus curabitur condimentum gravida cras nibh ac. Lorem scelerisque tortor rhoncus viverra pharetra feugiat.

+
+ Друг партнер +
+

Александра Поповска

+

Графички дизајнер во МСОС

+
+
+
+
+

Нашето искуство со соработката

+

Dignissim senectus ut senectus curabitur condimentum gravida cras nibh ac. Lorem scelerisque tortor rhoncus viverra pharetra. Dignissim senectus ut senectus curabitur condimentum gravida cras nibh ac. Lorem scelerisque tortor rhoncus viverra. Dignissim senectus ut senectus curabitur condimentum gravida cras nibh ac. Lorem scelerisque tortor rhoncus viverra pharetra feugiat.

+
+ Друг член на тимот +
+

Ана Поповска

+

Графички дизајнер во МСОС

+
+
+
+
+
+
+ +
+
+

Станете дел од нашиот неверојатен тим

+

Ние сме 100% тим на далечина, распространет низ целиот свет. Придружете ни се!

+
+ Нашиот неверојатен тим во училница + +
+
+
+
+ + +
+
+ + +
+
+
+ + +
+
+ +
+ + +
+
+
+ + +
+
+ + +
+ +
+
+
+ +
+
+

Често поставувани прашања

+

Сè што треба да знаете за производот и наплатата.

+
+
+
+
+

Дали е достапен бесплатен пробен период?

+

Да, можете да нè пробате бесплатно 30 дена. Нашиот пријателски тим ќе работи со вас за да ве подготви што е можно поскоро.

+
+
+
+

Можам ли подоцна да го сменам мојот план?

+

Секако. Нашите цени се прилагодуваат со вашата компанија. Разговарајте со нашиот пријателски тим за да најдете решение што ви одговара.

+
+
+
+

Каква е вашата политика за откажување?

+

Разбираме дека работите се менуваат. Можете да го откажете вашиот план во секое време и ќе ви ја вратиме веќе платената разлика.

+
+
+
+

Може ли да се додадат други информации на фактурата?

+

Да, можете да нè пробате бесплатно 30 дена. Нашиот пријателски тим ќе работи со вас за да ве подготви што е можно поскоро.

+
+
+
+

Како функционира наплатата?

+

Секако. Нашите цени се прилагодуваат со вашата компанија. Разговарајте со нашиот пријателски тим за да најдете решение што ви одговара.

+
+
+
+

Како да ја сменам е-поштата на мојата сметка?

+

Разбираме дека работите се менуваат. Можете да го откажете вашиот план во секое време и ќе ви ја вратиме разликата.

+
+
+ +
+ +
+ + + + + +""" + + +"./mk/projects/index.html" : +""" + + + + + + Проекти - Македонска Студентска Организација во Словенија + + + + + + + + + + + + + + + + +
+ +
+
+ Наши проекти +

Проекти

+

Претплатете се за да дознаете за новите функции на производите, најновите технологии, решенија и ажурирања.

+ +

Ние се грижиме за вашите податоци во нашата политика за приватност

+
+
+ + +
+
+

Сите наши проекти

+
+ + + + + + + + + + + + +
+ + + +
+
+
+ + + + + + +""" + + +"./mk/projects/macedonian-student-night-in-ljubljana/index.html" : +""" + + + + + + Македонска студентска вечер во Љубљана - МСОС + + + + + + + + + + + + + + + + +
+
+
+

Објавено на 8 октомври 2022

+

Македонска студентска вечер во Љубљана

+

Од идеја до журка со 500 студенти – вака започна нашата приказна!

+
+ +
+ Атмосфера од македонската студентска вечер во Љубљана +
+ +
+

На 8 октомври 2022 година, во срцето на Студентскиот кампус во Љубљана, се одржа првата македонска студентска вечер во Словенија. Под мотото #FeelsLikeHome, повеќе од 500 млади уживаа во македонска музика, вкусна традиционална храна и атмосфера која потсетуваше на дома. Овој настан не беше само журка – беше почеток на една нова приказна, која подоцна ќе прерасне во Македонска студентска организација во Словенија (МСОС).

+ +

Како една идеја за дружење стана почеток на движење

+

Сè започна со едноставна желба – да се собереме, да се запознаеме и да ја почувствуваме Македонија, иако сме далеку од неа. Кристијан Поповски, тогаш студент на Економскиот факултет во Љубљана, ја сподели својата идеја со неколку колеги, а одговорот беше неверојатен. За помалку од две недели, преку 40 студенти се пријавија во организацискиот тим. Секој понесе дел од својот ентузијазам и време, а заедничкиот дух и желбата за поврзување ја претворија оваа спонтана иницијатива во настан што долго ќе го паметиме.

+ +
+ Подготовки и состаноци за македонската студентска вечер +
Фотографии од подготовките и состаноците за организирање на македонската студентска вечер
+
+ +

Од тој момент, секој слободен миг го поминувавме во канцелариите на студентската организација „Повезани“, кои ни дадоа голема поддршка во организирањето. Денови и ноќи правевме планови, одржувавме состаноци, пишувавме објави на социјалните мрежи – сè со цел да создадеме настан кој првично мислевме дека ќе привлече, ако имаме среќа, околу 100 посетители.

+

Една недела пред настанот, секој ден објавувавме интересни факти за Македонија, нејзините национални богатства, музика и култура. Полека, но сигурно, ја градевме атмосферата и ентузијазмот, не само кај македонските студенти, туку и кај многу други кои сакаа да ја почувствуваат нашата енергија.

+ +
+ Хамер со испишани кирилични и латинични букви +
Хамер со испишани кирилични и латинични букви. Словенците ја учат македонската азбука, додека македонците ги подучуваат.
+
+ +
+

„Организирањето на првата МСОС журка беше уникатно искуство – без сон, амбициозни и вклучени во сè, од логистика до бришење на подот... Среќа што постои Red Bull 😉 (П.с. целиот фрижидер го испивме!)“

+
— Марко – студент во прва година
+
+ +

Вкусот и мирисот на Македонија во срцето на Љубљана

+

Журката започна во 20:00 часот и беше замислена во два дела. Првиот дел беше вистинско гастрономско и културно патување низ Македонија. Студентите можеа да пробаат лебчиња со ајвар и биено сирење, македонско вино, вкусни грицки и традиционални пијалоци. На масите имаше изложени и други автентични производи што сите ги потсетуваа на дома. Сите овие вкусови и мириси беа овозможени благодарение на поддршката од продавницата за македонски производи „Македонија Трејд“, кои несебично придонесоа овој дел од вечерта да биде вистинско уживање.

+ +
+ Штандови со македонски обележја, традиционална храна и пијалаци +
Фотографии од штандовите со македонски обележја, традиционална храна и пијалаци.
+
+ +

Покрај храната, посетителите можеа да разгледаат интересни факти за државата, фотографии од познати македонски дејци и културни знаменитости, како и да видат традиционални носии и гајда одблиску. Атмосферата беше топла и полна со љубопитност – како мала изложба во рамките на една голема студентска забава.

+ +
+ Мини квиз со прашања за Македонија +
Мини квиз со прашања за Македонија, каде студентите во едниот дел од клубот се натпреваруваат
+
+ +

Поддршка од македонската заедница и дипломатијата

+

Вечерта беше збогатена и со присуството на важни гости од македонската заедница во Словенија. На настанот ни се придружи претседателот на Сојузот на македонските културни друштва во Словенија, г-н Благоја Настески, кој со своето присуство ја потврди важноста на ваквите иницијативи за одржување на македонскиот дух и традиција во дијаспората.

+ +
+ Кристијан и Бисера заедно со амбасадорката Зеленковска и претседателот г-н Настески +
Кристијан и Бисера заедно со амбасадорката Зеленковска и претседателот на Сојузот на македонски друштва, г-н Настески
+
+ +

Посебна чест ни беше да ја пречекаме и амбасадорката на Северна Македонија во Словенија, г-ѓа Сузана Зеленковска, која упати топли зборови на охрабрување и поддршка за младите. Нејзиното присуство и интерес за настанот беа дополнителен мотив да продолжиме со нашата мисија за поврзување и афирмација на македонската студентска заедница.

+

Журката беше одлична, со супер енергија што се шири насекаде. Студенти на сите страни и во еден момент владееше мал, но контролиран хаос – вистинско место каде што успеавме да се избориме и да направиме еден навистина одличен настан. Иако ја завршивме журката малку порано, студентите не престанаа уште еден час да пеат заедно со нас, како што го расчистувавме местото. Навистина, ноќ за паметење!

+ +
+

„Бев дел од тимот за организација и требаше да одржувам ред и мир меѓу студентите, ама кога ми ја пуштија песната ‘Бисер Балкански’ не издржав – па им се приклучив и јас... Тоа беше мојот специјален момент таа вечер!“

+
— Христијан – студент во втора година
+
+ +

Почеток што ќе го паметиме

+

Таа вечер не беше само уште една студентска забава – беше моментот кога сфативме дека сме започнале нешто поголемо. Наместо очекуваните 100 гости, во клубот влегоа околу 500 студенти, а енергијата беше неверојатна. Се создадоа нови пријателства, се слушаа песни што ги пеевме од срце, а македонската култура и традиција беа во прв план цела вечер.

+

Оваа ноќ го постави темелот за Македонската студентска организација во Словенија и ни покажа дека со ентузијазам, заедништво и малку храброст, може да се создаде нешто што ќе ги обедини луѓето и ќе им даде чувство на дом – дури и кога се далеку од него.

+ +
+ Посветениот тим на волонтери по завршувањето на настанот +
Фотографија направена во 4 часот наутро, по завршувањето и средувањето на просторот заедно со посветениот тим на волонтери
+
+
+ +
+
+
+
+ Аватар на Кристијан Поповски +
+

Кристијан Поповски

+

Претседател и основач

+
+
+ +
+
+
+ +
+
+
+

Придружете се на 2.000+ претплатници

+

Останете во тек со сè што треба да знаете.

+ +

Ние се грижиме за вашите податоци во нашата политика за приватност

+
+
+
+
+ + + + + +""" + + +"./mk/projects/morning-coffee-in-front-of-ctk/index.html" : +""" + + + + + + Утринско кафе пред ЦТК – 2024: Кафе, бурек и многу насмевки + + + + + + + + + + + + + + + + +
+
+
+

Објавено на 8 јуни 2024

+

Утринско кафе пред ЦТК – 2024: Кафе, бурек и многу насмевки

+

Кога испитите некако ти стануваат полесни со саботно утринско кафе, бурек и добро друштво пред ЦТК!

+
+ +
+ Студенти уживаат во кафе и бурек пред ЦТК. +
+ +
+

На 8 јуни 2024, од 9 до 12 часот, пред Централната техничка библиотека на Универзитетот во Љубљана (ЦТК), ја организиравме нашата веќе традиционална студентска пауза – Утринско кафе пред ЦТК заедно со тимот на Скупина Повезани и ЦТК. Ова беше втора година по ред како се дружиме на истото место, но секој пат носи нови моменти за паметење.

+ +

Кафе против стресот

+

Испитната сесија секогаш носи стрес – часови и часови учење, разговори што се вртат само околу испити, први и втори рокови, положени или не, некои за прв пат, а некои и по петти пат. Затоа решивме да направиме мала пауза за воздишка: да се опуштиме, да се насмееме и да се потсетиме дека сме тука заедно во овој студиски стрес.

+ +
+ Студенти чекаат во ред пред библиотеката ЦТК. +
Стотина студенти во ред пред ЦТК, чекаат уште пред отворање за да фатат место во библиотеката.
+
+ +

Со шолја топло кафе во рака, а благодарение на Бурек Олимпија уживавме во вкусен бурек со месо и сирење. Се потрудивме и да внесеме малку забава – ги поканивме студентите да донесат свои чашки, а за најкреативните имаше награда.

+ +
+ Студент се смее додека јаде бурек. +
Бесплатен топол бурек – тајната формула за решавање и на најтешките математички проблеми 😉
+
+ +
+ Група студенти со топло кафе позираат пред ЦТК. +
Група студенти со топло кафе, насмеани пред ЦТК.
+
+ +

Поставивме две прашања што ни открија цела палета студентски емоции

+

За дополнителна доза интеракција, поставивме две големи табли со прашања што едноставно те тераат да одговориш: „Како ја преживувам испитната сесија?“ и „Kako bi opisal počutje med izpitnem obdobjem?“.

+

Реакциите беа моментални – студентите се нафрлија да пишуваат, а одговорите беа сè, само не досадни: од „хаотично“ и „Сакаме да спиеме! (не во ЦТК)!" до „лагано“, „под стрес“, „исцрпено“, „среќно“ и „заспано“. Со други зборови – цел спектар на студентски емоции, искрено преточени во неколку зборови.

+ +
+ Табла со рачно напишани одговори од студенти за нивните чувства за време на испитниот рок. +
Духовити и искрени одговори на големите табли со прашања пред ЦТК.
+
+ +

Како стигнавме од кафе до симулатор на летање и принтери за ЗД моделирање

+

Како бонус за студентите во договор со универзитетската техничка библиотека, програмата беше збогатена и со изложба на ЦТК, каде што беа претставени симулатор за летање, ЗД принтери и друга интересна опрема која студентите можеа да ја пробаат, а потоа и бесплатно да ја изнајмат во Креативното студио на ЦТК – дел од нивната едукативна програма.

+ +

Кафе и бурек = желба да станувам секој ден за да учам по 12 часа

+

Околу 150 луѓе го посетија заедничкиот штанд на МСОС, Повезани и ЦТК за да се подружат, да се напијат кафе, да грицнат нешто и да си разменат приказни меѓу книгите и роковите. Настанот помина во одлична атмосфера – многу насмевки, нови познанства и еден мал потсетник дека и во најстресните периоди, секогаш има време за кафе и добро друштво.

+ +
+ Студенти собрани на заедничкиот штанд за време на настанот. +
Дел од атмосферата на заедничкиот штанд
+
+ +

Се гледаме повторно и следната година – уште поопуштени и со уште повеќе кафе!

+ +
+ Колаж од фотографии на кои се прикажани студенти, шолји за кафе и бурек. +
Убава дружба, многу спомени и заеднички пребродени испитни стресови.
+
+
+ +
+
+
+
+ Аватар на Кристијан Поповски +
+

Кристијан Поповски

+

Претседател и основач

+
+
+ +
+
+
+ +
+
+
+

Придружете се на 2.000+ претплатници

+

Останете во тек со сè што треба да знаете.

+ +

Ние се грижиме за вашите податоци во нашата политика за приватност

+
+
+
+
+ + + + + +""" + + +"./README.md" : +""" +msos spletna stran +""" + + +"./si/index.html" : +""" + + + + + + Makedonska Študentska Organizacija v Sloveniji + + + + + + + + + + + + + + + + +
+
+
+
+
+
+
+
+
+
+
+ Prva uradna MSOS +
+
+

Opolnomočimo mlade z veščinami za spreminjanje sveta

+

Ne glede na to, ali imate ekipo 2 ali 200 ljudi, naši skupni timski nabiralniki ohranjajo vse na isti strani in v koraku z dogajanjem.

+
+ +
+
+ +
+
+ Člani ekipe pri sodelovanju +
+ +
+
+

Spoznajte našo izjemno ekipo!

+

Naša filozofija je preprosta — zaposliti ekipo raznolikih, strastnih ljudi in gojiti kulturo, ki vas opolnomoči, da opravite svoje najboljše delo.

+ +
+
+ +
+
+

Aktivnosti

+

Naša filozofija je preprosta — zaposliti ekipo raznolikih, strastnih ljudi in gojiti kulturo, ki vas opolnomoči, da opravite svoje najboljše delo.

+
+
+
+
    +
  • Študentsko predstavništvo
  • +
  • Izobraževanje in kultura
  • +
  • Zabava in druženje
  • +
  • Študentska podpora
  • +
+ +
+
+

Sed molestie penatibus sit bibendum pharetra purus faucibus fames aliquet. Morbi morbi ac sed tempor porta. Dui iaculis vitae fames sapien. Pellentesque urna eget habitasse arcu sed ornare. Dignissim lobortis ultrices maecenas magna ac habitant donec etiam at.

+ Skupina nasmejanih študentov pri sodelovanju +
+
+
+ +
+
+

Zadnje novice

+

Dignissim senectus ut senectus curabitur condimentum gravida cras nibh ac. Lorem scelerisque tortor rhoncus viverra pharet.

+
+
+
+ Roza in modro obarvana podoba zasneženega vrha gore +
+

Alec Whitten • 17 Jan 2022

+

Lekcije vodenja Billa Walsha

+

Bi radi izvedeli skrivnosti preoblikovanja ekipe z rezultatom 2-14 v trikratne zmagovalce Super Bowla...

+
+
+
+ Ženska predstavlja pred belo tablo z listki ekipi +
+

Demi Wilkinson • 16 Jan 2022

+

Mentalni modeli za PM

+

Mentalni modeli so preprosti izrazi kompleksnih procesov ali odnosov.

+
+
+
+ Moderna računalniška miza z velikim monitorjem, tipkovnico in slušalkami +
+

Candice Wu • 15 Jan 2022

+

Kaj je žični model (Wireframing)?

+

Uvod v žično modeliranje in njegova načela. Učite se od najboljših v industriji.

+
+
+
+ +
+ +
+
+

Poglejte, kaj o nas pravijo naši partnerji

+

Vse, kar morate vedeti o produktu in zaračunavanju.

+
+
+
+
+

Kako nas sodelovanje izboljša

+

Dignissim senectus ut senectus curabitur condimentum gravida cras nibh ac. Lorem scelerisque tortor rhoncus viverra pharetra. Dignissim senectus ut senectus curabitur condimentum gravida cras nibh ac. Lorem scelerisque tortor rhoncus viverra pharetra feugiat.

+
+ Aleksandar Popovski +
+

Aleksandar Popovski

+

Grafični oblikovalec pri MSOS

+
+
+
+
+

Consectetur vitae ac parturient massa

+

Dignissim senectus ut senectus curabitur condimentum gravida cras nibh ac. Lorem scelerisque tortor rhoncus viverra pharetra. Dignissim senectus ut senectus curabitur condimentum gravida cras nibh ac. Lorem scelerisque tortor rhoncus viverra pharetra feugiat. Dignissim senectus ut senectus curabitur condimentum gravida cras nibh ac. Lorem scelerisque tortor rhoncus viverra pharetra.

+
+ Drug član ekipe +
+

Aleksandar Popovski

+

Grafični oblikovalec pri MSOS

+
+
+
+
+
+
+

Ponosni partnerji

+

Dignissim senectus ut senectus curabitur condimentum gravida cras nibh ac. Lorem scelerisque tortor rhoncus viverra pharetra. Dignissim senectus ut senectus curabitur condimentum gravida cras nibh ac. Lorem scelerisque tortor rhoncus viverra pharetra feugiat.

+
+ Drug partner +
+

Aleksandar Popovski

+

Grafični oblikovalec pri MSOS

+
+
+
+
+

Naša izkušnja sodelovanja

+

Dignissim senectus ut senectus curabitur condimentum gravida cras nibh ac. Lorem scelerisque tortor rhoncus viverra pharetra. Dignissim senectus ut senectus curabitur condimentum gravida cras nibh ac. Lorem scelerisque tortor rhoncus viverra. Dignissim senectus ut senectus curabitur condimentum gravida cras nibh ac. Lorem scelerisque tortor rhoncus viverra pharetra feugiat.

+
+ Druga članica ekipe +
+

Aleksandar Popovski

+

Grafični oblikovalec pri MSOS

+
+
+
+
+
+
+ +
+
+

Postanite del naše izjemne ekipe

+

Smo 100% oddaljena ekipa, razpršena po vsem svetu. Pridružite se nam!

+
+ Naša izjemna ekipa v učilnici + +
+
+
+
+ + +
+
+ + +
+
+
+ + +
+
+ +
+ + +
+
+
+ + +
+
+ + +
+ +
+
+
+ +
+
+

Pogosto zastavljena vprašanja

+

Vse, kar morate vedeti o produktu in zaračunavanju.

+
+
+
+
+

Ali je na voljo brezplačen preizkus?

+

Da, lahko nas brezplačno preizkušate 30 dni. Naša prijazna ekipa bo sodelovala z vami, da boste čim prej začeli.

+
+
+
+

Ali lahko kasneje zamenjam svoj načrt?

+

Seveda. Naše cene se prilagajajo vašemu podjetju. Poklepetajte z našo prijazno ekipo in poiščite rešitev, ki vam ustreza.

+
+
+
+

Kakšna je vaša politika odpovedi?

+

Razumemo, da se stvari spreminjajo. Svoj načrt lahko kadar koli prekličete in povrnili vam bomo že plačano razliko.

+
+
+
+

Ali se lahko na račun dodajo druge informacije?

+

Da, lahko nas brezplačno preizkušate 30 dni. Naša prijazna ekipa bo sodelovala z vami, da boste čim prej začeli.

+
+
+
+

Kako poteka zaračunavanje?

+

Seveda. Naše cene se prilagajajo vašemu podjetju. Poklepetajte z našo prijazno ekipo in poiščite rešitev, ki vam ustreza.

+
+
+
+

Kako spremenim e-pošto svojega računa?

+

Razumemo, da se stvari spreminjajo. Svoj načrt lahko kadar koli prekličete in povrnili vam bomo razliko.

+
+
+ +
+ +
+ + + + + +""" + + +"./si/projects/index.html" : +""" + + + + + + Projekti - Makedonska Študentska Organizacija v Sloveniji + + + + + + + + + + + + + + + + +
+ +
+
+ Naši projekti +

Projekti

+

Naročite se in bodite na tekočem z novimi funkcijami, najnovejšimi tehnologijami, rešitvami in posodobitvami.

+ +

Skrbimo za vaše podatke v naši politiki zasebnosti.

+
+
+ + +
+ +
+
+ + + + + + +""" + + +"./si/projects/macedonian-student-night-in-ljubljana/index.html" : +""" + + + + + + Makedonska študentska noč v Ljubljani - MŠOS + + + + + + + + + + + + + + + + +
+
+
+

Objavljeno 8. oktobra 2022

+

Makedonska študentska noč v Ljubljani

+

Od ideje do zabave s 500 študenti – tako se je začela naša zgodba!

+
+ +
+ Vzdušje z Makedonske študentske noči v Ljubljani +
+ +
+

8. oktobra 2022 se je v osrčju Študentskega kampusa v Ljubljani odvila prva Makedonska študentska noč v Sloveniji. Pod sloganom #FeelsLikeHome je več kot 500 mladih uživalo v makedonski glasbi, okusni tradicionalni hrani in vzdušju, ki je spominjalo na dom. Ta dogodek ni bil le zabava – bil je začetek nove zgodbe, ki bo kasneje prerasla v Makedonsko študentsko organizacijo v Sloveniji (MŠOS).

+ +

Kako je ideja o druženju postala začetek gibanja

+

Vse se je začelo s preprosto željo – da se zberemo, spoznamo in začutimo Makedonijo, čeprav smo daleč od nje. Kristijan Popovski, takrat študent Ekonomske fakultete v Ljubljani, je svojo idejo delil z nekaj kolegi, odziv pa je bil neverjeten. V manj kot dveh tednih se je v organizacijsko ekipo vključilo več kot 40 študentov. Vsak je prispeval svoj entuziazem in čas, skupni duh in želja po povezovanju pa sta to spontano pobudo spremenila v dogodek, ki si ga bomo dolgo zapomnili.

+ +
+ Priprave in sestanki za Makedonsko študentsko noč +
Fotografije s priprav in sestankov za organizacijo Makedonske študentske noči.
+
+ +

Od tistega trenutka naprej smo vsak prosti trenutek preživeli v pisarnah študentske organizacije Povezani, ki so nam nudili veliko podporo pri organizaciji. Dneve in noči smo načrtovali, imeli sestanke in pisali objave za družbena omrežja – vse z namenom, da ustvarimo dogodek, za katerega smo sprva mislili, da bomo pritegnili, če bomo imeli srečo, okoli 100 obiskovalcev.

+

Teden dni pred dogodkom smo vsak dan objavljali zanimivosti o Makedoniji, njenih nacionalnih zakladih, glasbi in kulturi. Počasi, a vztrajno, smo gradili vzdušje in navdušenje, ne le med makedonskimi študenti, temveč tudi med mnogimi drugimi, ki so želeli občutiti našo energijo.

+ +
+ Plakat, kjer se Slovenci učijo makedonsko abecedo +
Plakat s cirilico in latinico. Slovenci se učijo makedonsko abecedo, medtem ko jih Makedonci poučujejo.
+
+ +
+

„Organizacija prve zabave MŠOS je bila edinstvena izkušnja – neprespana, ambiciozna in vključevala je vse, od logistike do pomivanja tal... Na srečo obstaja Red Bull 😉 (P.S. Spili smo celotno zalogo iz hladilnika!)“

+
— Marko – študent prvega letnika
+
+ +

Okus in vonj Makedonije v osrčju Ljubljane

+

Zabava se je začela ob 20. uri in je bila zasnovana v dveh delih. Prvi del je bil pravo gastronomsko in kulturno popotovanje po Makedoniji. Študentje so lahko poskusili kruhke z ajvarjem in sirom, makedonsko vino, okusne prigrizke in tradicionalne pijače. Mize so bile obložene tudi z drugimi avtentičnimi izdelki, ki so vse spominjali na dom. Vse te okuse in vonjave je omogočila podpora trgovine z makedonskimi izdelki "Makedonija Trade", ki je nesebično prispevala k temu, da je bil ta del večera resnično doživetje.

+ +
+ Stojnice z makedonskimi simboli, hrano in pijačo +
Fotografije stojnic z makedonskimi simboli, tradicionalno hrano in pijačo.
+
+ +

Poleg hrane so si obiskovalci lahko ogledali zanimivosti o državi, fotografije znanih makedonskih osebnosti in kulturnih znamenitosti ter si od blizu ogledali tradicionalne noše in gajdo. Vzdušje je bilo toplo in polno radovednosti – kot majhna razstava v sklopu velike študentske zabave.

+ +
+ Mini kviz o Makedoniji +
Mini kviz z vprašanji o Makedoniji, kjer študenti v enem delu kluba tekmujejo.
+
+ +

Podpora makedonske skupnosti in diplomacije

+

Večer je obogatila tudi prisotnost pomembnih gostov iz makedonske skupnosti v Sloveniji. Dogodku se nam je pridružil predsednik Zveze makedonskih kulturnih društev v Sloveniji, g. Blagoja Nasteski, ki je s svojo prisotnostjo potrdil pomen takšnih pobud za ohranjanje makedonskega duha in tradicije v diaspori.

+ +
+ Kristijan in Bisera z veleposlanico Zelenkovsko in g. Nasteskim +
Kristijan in Bisera skupaj z veleposlanico Zelenkovsko in predsednikom Zveze makedonskih društev, g. Nasteskim.
+
+ +

Posebej smo bili počaščeni, da smo pozdravili veleposlanico Severne Makedonije v Sloveniji, go. Suzano Zelenkovsko, ki je mladim namenila tople besede spodbude in podpore. Njena prisotnost in zanimanje za dogodek sta bila dodatna motivacija za nadaljevanje našega poslanstva povezovanja in promocije makedonske študentske skupnosti.

+

Zabava je imela odlično energijo, ki se je širila povsod – v nekem trenutku je vladal majhen, a nadzorovan kaos. Kljub temu, da se je dogodek končal nekoliko prej, so študenti še eno uro prepevali skupaj z nami, medtem ko smo pospravljali prostor. Resnično, noč za spomin!

+ +
+

„Bil sem del organizacijske ekipe in zadolžen za vzdrževanje reda med študenti, a ko so zaigrali pesem 'Biser Balkanski', se nisem mogel upreti – pridružil sem se tudi jaz... To je bil moj poseben trenutek tistega večera!“

+
— Hristijan – študent drugega letnika
+
+ +

Začetek, ki si ga bomo zapomnili

+

Tisti večer ni bil le še ena študentska zabava – bil je trenutek, ko smo spoznali, da smo začeli nekaj večjega. Namesto pričakovanih 100 gostov je v klub prišlo okoli 500 študentov, energija pa je bila neverjetna. Stkala so se nova prijateljstva, pele so se pesmi iz srca, makedonska kultura in tradicija pa sta bili v ospredju cel večer.

+

Ta noč je postavila temelje za Makedonsko študentsko organizacijo v Sloveniji in nam pokazala, da je z navdušenjem, enotnostjo in malo poguma mogoče ustvariti nekaj, kar združuje ljudi in jim daje občutek doma – tudi ko so daleč od njega.

+ +
+ Predana ekipa prostovoljcev po končanem pospravljanju prizorišča. +
Fotografija, posneta ob 4. uri zjutraj, po končanem pospravljanju prostora skupaj s predano ekipo prostovoljcev.
+
+
+ +
+
+
+
+ Avatar Kristijana Popovskega +
+

Kristijan Popovski

+

Predsednik in ustanovitelj

+
+
+ +
+
+
+ +
+
+
+

Pridružite se 2.000+ naročnikom

+

Ostanite na tekočem z vsem, kar morate vedeti.

+ +

Skrbimo za vaše podatke v naši politiki zasebnosti.

+
+
+
+
+ + + + + +""" + + +"./si/projects/morning-coffee-in-front-of-ctk/index.html" : +""" + + + + + + Jutranja kava pred CTK – 2024: Kava, burek in obilo nasmehov + + + + + + + + + + + + + + + + +
+
+
+

Objavljeno 8. junija 2024

+

Jutranja kava pred CTK – 2024: Kava, burek in obilo nasmehov

+

Ko izpiti postanejo lažji ob sobotni jutranji kavi, bureku in dobri družbi pred CTK!

+
+ +
+ Študenti uživajo ob kavi in bureku pred knjižnico CTK. +
+ +
+

8. junija 2024, med 9. in 12. uro, smo pred Centralno tehniško knjižnico Univerze v Ljubljani (CTK) organizirali naš že tradicionalni študentski odmor – Jutranjo kavo pred CTK, skupaj z ekipo Skupine Povezani in CTK. To je bilo že drugo leto zapored, da smo se zbrali na istem mestu, a vsakič znova doživimo nove trenutke za spomin.

+ +

S kavo nad izpitni stres

+

Izpitno obdobje vedno prinaša stres – ure in ure učenja, pogovori, ki se vrtijo samo okoli izpitov, prvih in drugih rokov, opravljenih ali neopravljenih obveznosti. Nekateri se z izpitom srečajo prvič, drugi že petič. Zato smo se odločili, da si vzamemo kratek odmor za vdih: da se sprostimo, nasmejimo in se spomnimo, da smo v tem študijskem stresu skupaj.

+ +
+ Študentje čakajo v vrsti pred stavbo knjižnice CTK. +
Stotine študentov v vrsti pred CTK, ki so čakali še pred odprtjem, da si zagotovijo svoje mesto v knjižnici.
+
+ +

S skodelico vroče kave v roki in po zaslugi Bureka Olimpija smo uživali v okusnem bureku z mesom in sirom. Poskrbeli smo tudi za kanček zabave – študente smo povabili, da prinesejo svoje skodelice, za najbolj kreativne pa smo pripravili nagrado.

+ +
+ Študent se smeji medtem ko je kos bureka. +
Brezplačen topel burek – skrivna formula za reševanje tudi najtežjih matematičnih problemov 😉
+
+ +
+ Skupina študentov s toplo kavo pozira pred kamero. +
Skupina študentov s toplo kavo, nasmejani pred CTK.
+
+ +

Dve vprašanji, ki sta razkrili celo paleto študentskih čustev

+

Za dodatno dozo interakcije smo postavili dve veliki tabli z vprašanji, ki kar kličeta po odgovoru: “How do I survive the exam session?" in "Kako bi opisal počutje med izpitnem obdobjem?”.

+

Odzivi so bili takojšnji – študenti so hiteli pisat, odgovori pa so bili vse prej kot dolgočasni: od "kaotično" in "Hočemo spat! (ampak ne v CTK)!" do "chill", "pod stresom", "izčrpano", "srečno" in "zaspano". Z drugimi besedami – celoten spekter študentskih čustev, iskreno prelitih v nekaj besed.

+ +
+ Bela tabla z ročno napisanimi odgovori študentov o njihovih občutkih med izpitnim obdobjem. +
Duhoviti in iskreni odgovori na velikih tablah s vprašanji pred CTK.
+
+ +

Od kave do simulatorja letenja in 3D-tiskalnikov

+

Kot bonus za študente smo v sodelovanju s tehniško knjižnico univerze program obogatili z razstavo CTK, kjer so bili predstavljeni simulator letenja, 3D-tiskalniki in druga zanimiva oprema. Študenti so jo lahko preizkusili, nato pa si jo brezplačno izposodili v Kreativnem studiu CTK – delu njihovega izobraževalnega programa.

+ +

Kava in burek = motivacija za vsakdanje vstajanje in 12-urno učenje

+

Skupno stojnico MSOS, Skupine Povezani in CTK je obiskalo okoli 150 ljudi, ki so se prišli družit, spit kavo, prigriznit nekaj in si izmenjat zgodbe med knjigami in roki. Dogodek je potekal v odličnem vzdušju – veliko nasmehov, nova poznanstva in majhen opomnik, da je tudi v najbolj stresnih obdobjih vedno čas za kavo in dobro družbo.

+ +
+ Študenti zbrani na skupni stojnici med dogodkom. +
Del vzdušja na skupni stojnici.
+
+ +

Se vidimo ponovno prihodnje leto – še bolj sproščeni in z še več kave!

+ +
+ Kolaž fotografij, ki prikazuje študente, skodelice za kavo in burek. +
Dobra družba, veliko spominov in skupaj premagan izpitni stres.
+
+
+ +
+
+
+
+ Avatar Kristijana Popovskega +
+

Kristijan Popovski

+

Predsednik in ustanovitelj

+
+
+ +
+
+
+ +
+
+
+

Pridružite se 2.000+ naročnikom

+

Ostanite na tekočem z vsem, kar morate vedeti.

+ +

Skrbimo za vaše podatke v naši politiki zasebnosti.

+
+
+
+
+ + + + + +""" + + +"./si/projects/testproject/index.html" : +""" + + + + + + Macedonian Student Night in Ljubljana - MSOS + + + + + + + + + + + + + + + + +
+
+
+

Published on October 8, 2022

+

Macedonian Student Night in Ljubljana

+

From an idea to a party with 500 students – that's how our story began!

+
+ +
+ Atmosphere from the Macedonian Student Night in Ljubljana +
+ +
+

On October 8, 2022, in the heart of the Student Campus in Ljubljana, the first Macedonian Student Night in Slovenia took place. Under the motto #FeelsLikeHome, more than 500 young people enjoyed Macedonian music, delicious traditional food, and an atmosphere that felt like home. This event was not just a party – it was the beginning of a new story, which would later grow into the Macedonian Student Organization in Slovenia (MSOS).

+ +

How an idea for socializing became the start of a movement

+

It all began with a simple wish – to gather, get to know each other, and feel Macedonia, even though we were far from it. Kristijan Popovski, then a student at the School of Economics and Business in Ljubljana, shared his idea with a few colleagues, and the response was incredible. In less than two weeks, over 40 students joined the organizing team. Everyone contributed their enthusiasm and time, and the shared spirit and desire to connect turned this spontaneous initiative into an event we would remember for a long time.

+ +
+ Preparations and meetings for the Macedonian Student Night +
Photos from the preparations and meetings for organizing the Macedonian Student Night.
+
+ +

From that moment on, we spent every free moment in the offices of the student organization Povezani, which gave us great support in organizing. Days and nights were spent planning, holding meetings, and writing social media posts – all with the goal of creating an event that we initially thought would attract, if we were lucky, about 100 visitors.

+

A week before the event, we posted interesting facts about Macedonia every day – its national treasures, music, and culture. Slowly but surely, we built the atmosphere and excitement, not only among Macedonian students but also among many others who wanted to feel our energy.

+ +
+ Poster where Slovenians learn the Macedonian alphabet +
Poster with Cyrillic and Latin letters. Slovenians are learning the Macedonian alphabet, while Macedonians are teaching them.
+
+ +
+

“Organizing the first MSOS party was a one-of-a-kind experience – sleepless, ambitious, and involved in everything from logistics to mopping the floor... Thank goodness for Red Bull 😉 (P.S. We drank the entire fridge supply!)”

+
— Marko - first-year student (at the time)
+
+ +

The taste and smell of Macedonia in the heart of Ljubljana

+

The party started at 8:00 PM and was designed in two parts. The first part was a real gastronomic and cultural journey through Macedonia. Students could try bread with ajvar and white cheese, Macedonian wine, tasty snacks, and traditional drinks. The tables were also filled with other authentic products that reminded everyone of home. All these flavors and aromas were made possible thanks to the support of the Macedonian products store “Makedonija Trade,” which selflessly contributed to making this part of the evening truly enjoyable.

+ +
+ Stands with Macedonian symbols, food, and drinks +
Photos of the stands with Macedonian symbols, traditional food, and drinks.
+
+ +

In addition to the food, visitors could explore interesting facts about the country, photos of famous Macedonian figures and cultural landmarks, and see traditional costumes and a gaida up close. The atmosphere was warm and full of curiosity – like a small exhibition within a large student party.

+ +
+ Mini quiz about Macedonia +
Mini quiz with questions about Macedonia, where students in one part of the club are competing.
+
+ +

Support from the Macedonian community and diplomacy

+

The evening was enriched by the presence of important guests from the Macedonian community in Slovenia. The President of the Union of Macedonian Cultural Associations in Slovenia, Mr. Blagoja Nasteski, joined the event, confirming the importance of such initiatives for preserving the Macedonian spirit and tradition in the diaspora.

+ +
+ Kristijan and Bisera with Ambassador Zelenkovska and Mr. Nasteski +
Kristijan and Bisera together with Ambassador Zelenkovska and the President of the Union of Macedonian Associations, Mr. Nasteski
+
+ +

We were especially honored to welcome the Ambassador of North Macedonia to Slovenia, Mrs. Suzana Zelenkovska, who gave warm words of encouragement and support to the youth. Her presence and interest in the event were an additional motivation to continue our mission of connecting and promoting the Macedonian student community.

+

The party had great energy spreading everywhere – at one point there was a small but controlled chaos. Even though the event ended slightly earlier than planned, the students kept singing together for another hour while we were cleaning up the place. Truly, a night to remember!

+ +
+

“I was part of the organizing team and was supposed to maintain order among the students, but when they played the song 'Biser Balkanski,' I couldn't resist – so I joined in as well... That was my special moment that night!”

+
— Hristijan - second-year student (at the time)
+
+ +

A beginning to remember

+

That night wasn't just another student party – it was the moment we realized we had started something bigger. Instead of the expected 100 guests, about 500 students came to the club, and the energy was incredible. New friendships were made, songs were sung from the heart, and Macedonian culture and tradition took center stage for the entire evening.

+

This night laid the foundation for the Macedonian Student Organization in Slovenia and showed us that with enthusiasm, unity, and a bit of courage, it's possible to create something that brings people together and gives them a sense of home – even when they are far away from it.

+ +
+ The dedicated team of volunteers after cleaning up the venue +
Photo taken at 4:00 a.m., after finishing and cleaning up the venue together with the dedicated team of volunteers
+
+
+ +
+
+
+
+ Avatar of Kristijan Popovski +
+

Kristijan Popovski

+

President and Founder

+
+
+ +
+
+
+ +
+
+
+

Join 2,000+ subscribers

+

Stay in the loop with everything you need to know.

+ +

We care about your data in our privacy policy

+
+
+
+
+ + + + + + +""" + + +"./style.css" : +""" +/* General Styles */ +html, body { + overflow-x: hidden; /* Preprečuje horizontalno drsenje na najvišji ravni */ +} + +body { + font-family: 'Inter', sans-serif; + margin: 0; + background-color: #FFFFFF; + color: #101828; +} + +/* Prepreči drsenje strani, ko je mobilni meni odprt */ +body.nav-open { + overflow: hidden; +} + +.container { + width: 1280px; + margin: 0 auto; + display: flex; + justify-content: space-between; + align-items: center; + padding: 0 32px; + box-sizing: border-box; +} + +.btn { + padding: 10px 18px; + border-radius: 8px; + font-weight: 600; + font-size: 16px; + line-height: 24px; + cursor: pointer; + border: 1px solid transparent; + box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05); + text-decoration: none; + display: inline-block; + text-align: center; +} + +.btn-primary { + background-color: #2D738C; + color: #FFFFFF; + border-color: #2D738C; +} + +.btn-primary-orange { + background: #FA7850; + color: #FFFFFF; + padding: 16px 28px; + font-size: 18px; + line-height: 28px; +} + +.btn-secondary { + background-color: #FFFFFF; + color: #344054; + border: 1px solid #D0D5DD; +} + +/* Header */ +.dropdown-header-navigation { + position: absolute; + width: 100%; + height: 80px; + background: #FFFFFF; + border-bottom: 1px solid #F2F4F7; + display: flex; + justify-content: center; + align-items: center; + z-index: 1000; +} + +.header-content { + display: flex; + align-items: center; + gap: 40px; +} + +.logo-link .logo-img { + height: 32px; + width: auto; +} + +.navigation.desktop-nav { + display: flex; + gap: 32px; +} + +.navigation a { + text-decoration: none; + color: #667085; + font-weight: 600; + font-size: 16px; + padding: 4px 0; +} + +.navigation-actions { + display: flex; + align-items: center; + gap: 24px; +} + +.language-selector { + display: flex; + align-items: center; + gap: 8px; + color: #646E82; + cursor: pointer; +} + +.mobile-menu-icon { + display: none; + font-size: 24px; + color: #101828; + cursor: pointer; + z-index: 1002; /* Nad vsem ostalim v glavi */ +} + +.mobile-menu-icon .fa-times { + display: none; +} + +body.nav-open .mobile-menu-icon .fa-bars { + display: none; +} + +body.nav-open .mobile-menu-icon .fa-times { + display: block; +} + +.mobile-nav-panel { + display: none; /* Skrito na namizju */ +} + +/* Hero Section */ +.hero-section { + position: relative; + height: 880px; + width: 100%; + display: flex; + align-items: center; + overflow: hidden; +} + +.hero-background { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + z-index: 1; +} + +.hero-image-left, .hero-image-right { + position: absolute; + top: -150px; + height: 1030px; + width: 50%; + background-size: cover; + background-position: center; +} + +.hero-image-left { + left: 0; + transform: matrix(-1, 0, 0, 1, 0, 0); +} + +.hero-image-right { + right: 0; +} + +.hero-overlay { + position: absolute; + top: 79px; + left: 0; + height: 801px; + width: 56.74%; + background: linear-gradient(122.4deg, rgba(19, 49, 60, 0.92) 35.41%, rgba(39, 77, 90, 0.08) 92.92%); + border-radius: 0px 40px 40px 0px; + backdrop-filter: blur(12px); + z-index: 2; +} + +.hero-content { + position: relative; + z-index: 3; + color: #FFFFFF; + padding-left: 120px; + width: 605px; +} + +.hero-content .badge-group { + display: inline-flex; + align-items: center; + padding: 6px 16px; + gap: 12px; + background: rgba(255, 255, 255, 0.4); + border-radius: 16px; + margin-bottom: 32px; +} + +.hero-content .message { + font-weight: 500; + font-size: 14px; +} + +.hero-content h1 { + font-weight: 700; + font-size: 60px; + line-height: 72px; + letter-spacing: -0.02em; + margin: 0 0 24px 0; +} + +.hero-content p { + font-size: 20px; + line-height: 30px; + margin: 0 0 72px 0; +} + +/* Meet the Team Section */ +.meet-the-team-section { + display: flex; + justify-content: center; + align-items: center; + padding: 128px 0; + gap: 40px; + background: #FFFFFF; +} + +.video-container { + position: relative; + width: 619px; + height: 360px; +} + +.video-thumbnail { + width: 100%; + height: 100%; + object-fit: cover; + border-radius: 16px; +} + +.video-overlay { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: linear-gradient(127.76deg, rgba(19, 49, 60, 0.92) -13.16%, rgba(39, 77, 90, 0.08) 98.5%); + backdrop-filter: blur(6px); + border-radius: 16px; +} + +.play-button { + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + width: 80px; + height: 80px; + background: rgba(255, 255, 255, 0.56); + border-radius: 50%; + border: none; + cursor: pointer; + display: flex; + justify-content: center; + align-items: center; +} + +.play-button::after { + content: ''; + width: 0; + height: 0; + border-left: 24px solid white; + border-top: 14px solid transparent; + border-bottom: 14px solid transparent; + margin-left: 5px; +} + +.team-content { + width: 619px; +} + +.team-content h2 { + font-size: 36px; + font-weight: 600; + line-height: 44px; + letter-spacing: -0.02em; + color: #101828; + margin: 0 0 20px 0; +} + +.team-content p { + font-size: 20px; + line-height: 30px; + color: #667085; + margin: 0 0 56px 0; +} + +/* Activities Section */ +.activities-section { + padding: 128px 80px; + background: #F9FAFB; +} + +.activities-header { + text-align: center; + margin-bottom: 96px; +} + +.activities-header h2 { + font-size: 36px; + font-weight: 600; + line-height: 44px; + letter-spacing: -0.02em; + color: #101828; + margin-bottom: 20px; +} + +.activities-header p { + font-size: 20px; + line-height: 30px; + color: #667085; + max-width: 768px; + margin: 0 auto; +} + +.activities-content { + display: flex; + gap: 109px; + max-width: 1232px; + margin: 0 auto; +} + +.activities-nav { + width: 302px; + display: flex; + flex-direction: column; + justify-content: space-between; +} + +.activities-nav ul { + list-style: none; + padding: 0; + margin: 0; + display: flex; + flex-direction: column; + gap: 40px; +} + +.activities-nav li { + font-size: 20px; + color: #646E82; + cursor: pointer; + position: relative; + padding-left: 48px; +} +.activities-nav li::before { + content: ''; + position: absolute; + left: 0; + top: 50%; + transform: translateY(-50%); + width: 24px; + height: 2px; + background-color: #646E82; +} + + +.activities-nav li.active { + font-size: 24px; + font-weight: 600; + color: #000000; +} + +.activity-details { + width: 821px; +} + +.activity-details p { + font-size: 20px; + line-height: 30px; + color: #667085; + margin-bottom: 40px; +} + +.activity-details img { + width: 100%; + height: 400px; + object-fit: cover; + border-radius: 24px; +} + +/* Latest News Section */ +.latest-news-section { + padding: 128px 0; + background: #2D738C; + text-align: center; +} + +.news-header { + margin-bottom: 64px; +} + +.news-header h2 { + font-size: 36px; + font-weight: 600; + line-height: 44px; + letter-spacing: -0.02em; + color: #FFFFFF; + margin-bottom: 20px; +} + +.news-header p { + font-size: 20px; + line-height: 30px; + color: #FFFFFF; + max-width: 768px; + margin: 0 auto; +} + +.news-articles { + display: flex; + justify-content: center; + gap: 32px; + margin-bottom: 64px; +} + +.news-card { + width: 405.33px; + background: transparent; + text-align: left; +} + +.news-card img { + width: 100%; + height: 240px; + object-fit: cover; + border-radius: 8px; + margin-bottom: 32px; +} + +.news-card .card-content { + color: #FFFFFF; +} + +.news-card .author { + font-size: 14px; + font-weight: 600; + margin-bottom: 12px; +} + +.news-card h3 { + font-size: 24px; + font-weight: 600; + line-height: 32px; + margin-bottom: 12px; +} + +.news-card p { + font-size: 16px; + line-height: 24px; +} + +/* Testimonials Section */ +.testimonials-section { + padding: 128px 80px; + display: flex; + justify-content: center; + align-items: center; + gap: 24px; +} + +.testimonials-intro { + width: 411px; + flex-shrink: 0; +} + +.testimonials-intro h2 { + font-size: 36px; + font-weight: 600; + line-height: 44px; + letter-spacing: -0.02em; + color: #101828; + margin-bottom: 24px; +} + +.testimonials-intro p { + font-size: 20px; + line-height: 30px; + color: #667085; +} + +.testimonials-columns { + display: flex; + gap: 24px; + width: 846px; + height: 800px; + overflow-y: scroll; + padding-right: 15px; +} +.testimonials-columns::-webkit-scrollbar { + width: 5px; +} +.testimonials-columns::-webkit-scrollbar-thumb { + background: #D0D5DD; + border-radius: 10px; +} + +.testimonial-column { + display: flex; + flex-direction: column; + gap: 48px; + width: 411px; +} +.column-offset { + margin-top: 80px; +} + + +.testimonial-card { + padding: 24px 24px 40px; + border: 1px solid #D0D5DD; + border-radius: 16px; +} +.testimonial-column .testimonial-card:nth-child(even) { + background: #F9FAFB; +} + +.testimonial-card h3 { + font-size: 24px; + font-weight: 600; + line-height: 1.2; + color: #000000; + margin-bottom: 24px; +} + +.testimonial-card p { + font-size: 16px; + line-height: 1.2; + color: #646E82; + margin-bottom: 24px; +} + +.author-info { + display: flex; + align-items: center; + gap: 16px; +} + +.author-info img { + width: 48px; + height: 48px; + border-radius: 50%; + object-fit: cover; +} +.avatar-placeholder { + width: 48px; + height: 48px; + border-radius: 50%; + background-color: #2D738C; +} +.avatar-placeholder-gray { + width: 48px; + height: 48px; + border-radius: 50%; + background-color: #646E82; +} + +.author-info h4 { + font-size: 18px; + font-weight: 600; + margin: 0 0 6px 0; + color: #000000; +} +.testimonial-card:nth-child(3) .author-info h4, .testimonial-card:nth-child(3) .author-info p { + color: #2D738C; +} + +.testimonial-column:nth-child(1) .testimonial-card:nth-child(2) .author-info h4, +.testimonial-column:nth-child(2) .testimonial-card:nth-child(2) .author-info h4, +.testimonial-column:nth-child(1) .testimonial-card:nth-child(2) .author-info p, +.testimonial-column:nth-child(2) .testimonial-card:nth-child(2) .author-info p { + color: #646E82; +} + + +.author-info p { + font-size: 16px; + margin: 0; + color: #2D738C; +} + +/* Become Part Section */ +.become-part-section { + padding: 128px 0; + background: #F9FAFB; + text-align: center; +} + +.become-part-header { + margin-bottom: 64px; +} + +.become-part-header h2 { + font-size: 36px; + font-weight: 600; + line-height: 44px; + letter-spacing: -0.02em; + color: #101828; + margin-bottom: 20px; +} + +.become-part-header p { + font-size: 20px; + line-height: 30px; + color: #646E82; +} + +.team-photo { + width: 1232px; + height: 400px; + object-fit: cover; + border-radius: 24px; + margin: 0 auto 96px; + display: block; +} + +.contact-form-container { + max-width: 800px; + margin: 0 auto; +} + +.contact-form { + display: flex; + flex-direction: column; + gap: 24px; + text-align: left; +} + +.form-row { + display: flex; + gap: 32px; +} + +.form-group { + flex: 1; + display: flex; + flex-direction: column; +} + +.form-group label { + font-size: 14px; + font-weight: 500; + color: #344054; + margin-bottom: 6px; +} + +.form-group input, +.form-group textarea, +.form-group select { + padding: 12px 16px; + border: 1px solid #D0D5DD; + border-radius: 8px; + box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05); + font-size: 16px; + background: #FFFFFF; + color: #646E82; + font-family: 'Inter', sans-serif; +} +.form-group input::placeholder, +.form-group textarea::placeholder { + color: #646E82; +} + +.phone-input { + display: flex; + border: 1px solid #D0D5DD; + border-radius: 8px; + overflow: hidden; + box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05); +} +.phone-input select { + border: none; + border-right: 1px solid #D0D5DD; + border-radius: 0; + box-shadow: none; +} +.phone-input input { + border: none; + flex-grow: 1; + box-shadow: none; +} + +.checkbox-group { + flex-direction: row; + align-items: center; + gap: 12px; +} +.checkbox-group input { + width: 20px; + height: 20px; +} +.checkbox-group label { + margin: 0; + color: #646E82; +} +.checkbox-group label a { + color: #2D738C; +} + +.contact-form button { + width: 100%; + padding: 12px 20px; + font-size: 16px; +} + +/* FAQ Section */ +.faq-section { + padding: 128px 0; + text-align: center; +} + +.faq-header { + margin-bottom: 64px; +} + +.faq-header h2 { + font-size: 36px; + font-weight: 600; + line-height: 44px; + letter-spacing: -0.02em; + color: #101828; + margin-bottom: 20px; +} + +.faq-header p { + font-size: 20px; + line-height: 30px; + color: #667085; + max-width: 768px; + margin: 0 auto; +} + +.faq-grid { + display: grid; + grid-template-columns: repeat(3, 1fr); + gap: 64px 32px; + max-width: 1232px; + margin: 0 auto 64px; + text-align: left; +} + +.faq-item { + display: flex; + flex-direction: column; + gap: 20px; +} +.faq-icon-container { + width: 48px; + height: 48px; + background: rgba(39, 77, 90, 0.08); + border-radius: 24px; + display: flex; + justify-content: center; + align-items: center; + color: #2D738C; + font-size: 22px; +} + +.faq-item h3 { + font-size: 20px; + font-weight: 600; + color: #101828; + margin: 0; +} + +.faq-item p { + font-size: 16px; + line-height: 24px; + color: #667085; + margin: 0; +} + +.faq-footer { + max-width: 1232px; + margin: 0 auto; + padding: 40px 32px; + background: #F9FAFB; + border-radius: 16px; + display: flex; + flex-direction: column; + align-items: center; + gap: 8px; +} +.faq-footer h3 { + font-size: 20px; + font-weight: 500; + color: #101828; + margin: 16px 0 0 0; +} + +.faq-footer p { + font-size: 18px; + color: #667085; + margin: 0 0 32px 0; +} +.avatar-group { + display: flex; + position: relative; + width: 120px; + height: 56px; +} +.avatar { + width: 48px; + height: 48px; + border-radius: 50%; + border: 1.5px solid #FFFFFF; + position: absolute; + top: 8px; + object-fit: cover; +} +.avatar:nth-child(1) { left: 0; z-index: 3;} +.avatar:nth-child(2) { left: 50%; transform: translateX(-50%); top:0; z-index: 2;} +.avatar:nth-child(3) { right: 0; z-index: 1;} +.avatar.large { + width: 56px; + height: 56px; +} + +/* Footer */ +footer { + background: #2D738C; + color: #FFFFFF; + padding: 64px 0 88px; +} + +.footer-container { + width: 1280px; + margin: 0 auto; +} + +.footer-main { + display: flex; + justify-content: space-between; + margin-bottom: 64px; +} + +.footer-info { + width: 302px; +} + +.footer-logo { + margin-bottom: 48px; +} + +.footer-logo img { + height: auto; + width: 200px; + object-fit: contain; +} + +.footer-info p { + font-size: 16px; + line-height: 1.5; + margin-bottom: 24px; +} + +.social-icons { + display: flex; + gap: 24px; +} +.social-icons a { + color: #FFFFFF; + font-size: 24px; + text-decoration: none; +} + +.footer-links { + display: flex; + gap: 32px; +} + +.links-column { + width: 192px; +} + +.links-column h4 { + font-size: 18px; + font-weight: 600; + margin: 0 0 24px 0; +} + +.links-column a { + display: block; + color: #FFFFFF; + text-decoration: none; + font-size: 16px; + margin-bottom: 16px; +} + +footer hr { + border: 0; + border-top: 1px solid rgba(255, 255, 255, 0.5); + margin: 0 0 24px 0; +} + +.footer-bottom { + display: flex; + justify-content: space-between; + align-items: center; + font-size: 14px; +} + +.legal-links { + display: flex; + gap: 24px; +} + +.legal-links a { + color: #FFFFFF; + text-decoration: none; +} + +/* =================================== */ +/* ====== PROJECTS PAGE STYLES ======= */ +/* =================================== */ +.page-content { + padding-top: 80px; +} + +.page-header-section { + padding: 96px 0; + background: #FFFFFF; + text-align: center; +} + +.page-header-section .container.text-center { + display: flex; + flex-direction: column; + align-items: center; + gap: 24px; + max-width: 960px; +} + +.page-subtitle { + font-weight: 600; + font-size: 16px; + color: #FA7850; +} + +.page-header-section h1 { + font-weight: 600; + font-size: 48px; + line-height: 60px; + letter-spacing: -0.02em; + color: #101828; + margin: 0; +} + +.page-description { + font-size: 20px; + line-height: 30px; + color: #667085; + max-width: 768px; + margin: 0; +} + +.subscribe-form { + display: flex; + gap: 16px; + margin-top: 16px; +} + +.subscribe-form input { + width: 360px; + height: 48px; + padding: 12px 16px; + border: 1px solid #D0D5DD; + border-radius: 8px; + box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05); + font-size: 16px; + box-sizing: border-box; +} + +.subscribe-form .btn { + height: 48px; +} + +.privacy-note { + font-size: 14px; + color: #667085; + margin-top: -8px; +} + +.privacy-note a { + color: #667085; + font-weight: 500; +} + +.all-posts-section { + padding: 0 80px 96px; +} + +.all-posts-section .container.column-layout { + flex-direction: column; + align-items: flex-start; + gap: 64px; +} + +.all-posts-section h2 { + font-size: 24px; + font-weight: 600; + line-height: 32px; + color: #101828; + margin: 0; +} + +.posts-grid { + display: grid; + grid-template-columns: repeat(3, 1fr); + gap: 48px 32px; + width: 100%; +} + +.post-card { + display: flex; + flex-direction: column; +} + +.post-link { + text-decoration: none; + color: inherit; +} + +.post-image { + width: 100%; + height: 240px; + object-fit: cover; + border-radius: 8px; + margin-bottom: 32px; +} + +.post-meta { + font-size: 14px; + font-weight: 600; + color: #FA7850; + margin: 0 0 12px; +} + +.post-title { + font-size: 24px; + font-weight: 600; + line-height: 32px; + color: #101828; + margin: 0 0 12px; +} + +.post-excerpt { + font-size: 16px; + line-height: 24px; + color: #667085; + margin: 0; +} + +.pagination { + width: 100%; + display: flex; + justify-content: space-between; + align-items: center; + padding-top: 20px; + border-top: 1px solid #EAECF0; +} + +.pagination-arrow { + display: flex; + align-items: center; + gap: 8px; + font-size: 14px; + font-weight: 500; + color: #667085; + text-decoration: none; +} + +.pagination-numbers { + display: flex; + gap: 2px; +} + +.page-number { + display: flex; + justify-content: center; + align-items: center; + width: 40px; + height: 40px; + border-radius: 8px; + text-decoration: none; + font-size: 14px; + font-weight: 500; + color: #667085; +} + +.page-number.active { + background-color: rgba(102, 112, 133, 0.16); + color: #2D738C; +} + +.page-dots { + display: flex; + justify-content: center; + align-items: center; + width: 40px; + height: 40px; + color: #667085; +} + +/* =================================== */ +/* ===== SINGLE PROJECT PAGE STYLES ==== */ +/* =================================== */ + +.article-page { + padding-top: 80px; + background: #FFFFFF; +} + +.article-container { + max-width: 1024px; + margin: 0 auto; + padding: 96px 32px; +} + +.article-header { + text-align: center; + margin-bottom: 64px; +} + +.article-publish-date { + font-size: 16px; + font-weight: 600; + color: #FA7850; + margin-bottom: 12px; +} + +.article-header h1 { + font-size: 48px; + font-weight: 600; + line-height: 60px; + letter-spacing: -0.02em; + color: #101828; + margin: 0; +} + +.article-subtitle { + font-size: 20px; + line-height: 30px; + color: #667085; + margin-top: 24px; + max-width: 960px; + margin-left: auto; + margin-right: auto; +} + +.article-main-image { + margin: 0 0 64px 0; +} + +.article-main-image img { + width: 100%; + height: auto; + max-height: 516px; + object-fit: cover; + border-radius: 24px; + display: block; + margin: 0 auto; +} + +.article-body { + max-width: 720px; + margin: 0 auto; + display: flex; + flex-direction: column; + gap: 32px; +} + +.article-body p, .article-body ol li { + font-size: 18px; + line-height: 28px; + color: #667085; + margin: 0; +} + +.article-body h2 { + font-size: 30px; + font-weight: 600; + line-height: 38px; + color: #101828; + margin: 16px 0; +} + +.article-body ol { + padding-left: 24px; + display: flex; + flex-direction: column; + gap: 12px; +} + +.article-inline-image { + margin: 16px 0; + display: flex; + flex-direction: column; + gap: 16px; +} + +.article-inline-image img { + width: 100%; + border-radius: 16px; +} + +.article-inline-image figcaption { + font-size: 14px; + color: #667085; + text-align: center; +} + +.article-quote { + margin: 16px 0; + padding-left: 20px; + border-left: 2px solid #D0D5DD; + display: flex; + flex-direction: column; + gap: 32px; + background: transparent; +} + +.article-quote p { + font-family: 'Inter', sans-serif; + font-style: italic; + font-weight: 500; + font-size: 24px; + line-height: 36px; + color: #101828; + margin: 0; +} + +.article-quote footer { + font-style: normal; + font-weight: 400; + font-size: 16px; + line-height: 24px; + color: #FA7850; + background: transparent; +} + +.article-footer { + max-width: 720px; + margin: 48px auto 0; + background: transparent; +} +.article-footer hr { + border: 0; + height: 1px; + background-color: #EAECF0; + margin: 0 0 24px 0; +} + +.author-share-section { + display: flex; + justify-content: space-between; + align-items: center; +} + +.author-details { + display: flex; + align-items: center; + gap: 16px; +} + +.author-details img { + width: 56px; + height: 56px; + border-radius: 50%; + object-fit: cover; +} + +.author-name { + font-size: 18px; + font-weight: 600; + color: #101828; + margin: 0; +} + +.author-title { + font-size: 16px; + color: #667085; + margin: 0; +} + +.share-buttons { + display: flex; + align-items: center; + gap: 12px; +} + +.social-icon-btn { + display: flex; + justify-content: center; + align-items: center; + width: 40px; + height: 40px; + border: 1px solid #D0D5DD; + border-radius: 8px; + box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05); + color: #98A2B3; + font-size: 18px; + text-decoration: none; +} + +.newsletter-cta { + padding: 0 32px 96px 32px; +} + +.newsletter-cta .container { + padding: 64px; + background: #F9FAFB; + border-radius: 16px; + display: flex; + justify-content: space-between; + align-items: center; + max-width: 1216px; + gap: 32px; +} + +.newsletter-cta .cta-content { + display: flex; + flex-direction: column; + align-items: flex-start; + gap: 16px; + flex: 1; +} +.newsletter-cta h2 { + font-size: 30px; + font-weight: 600; + line-height: 38px; + color: #101828; + margin: 0; +} +.newsletter-cta p { + font-size: 20px; + line-height: 30px; + color: #667085; + margin: 0; +} +.newsletter-cta .subscribe-form-bottom { + display: flex; + gap: 16px; + align-items: flex-start; +} +.subscribe-form-bottom .input-wrapper { + display: flex; + flex-direction: column; + gap: 8px; +} + +.subscribe-form-bottom input { + width: 360px; + height: 48px; + padding: 12px 16px; + border: 1px solid #D0D5DD; + border-radius: 8px; + box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05); + font-size: 16px; + box-sizing: border-box; +} + +.subscribe-form-bottom .btn-primary-orange { + height: 48px; + padding-top: 12px; + padding-bottom: 12px; +} + +/* =================================== */ +/* ========== MOBILE STYLES ========== */ +/* =================================== */ + +@media (max-width: 768px) { + body { + padding-top: 60px; + } + + .container { + width: 100%; + padding: 0 24px; + } + + /* Mobile Header & Navigation */ + .dropdown-header-navigation { + position: fixed; + top: 0; + left: 0; + right: 0; + width: 100%; + height: 60px; + padding: 0 24px; + box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.06); + border-bottom: none; + box-sizing: border-box; + } + + .navigation.desktop-nav, + .dropdown-header-navigation .container > .navigation-actions { /* Natančen selektor za gumbe na namizju */ + display: none; + } + + .mobile-menu-icon { + display: block; + } + + .mobile-nav-panel { + display: flex; + flex-direction: column; + align-items: center; + justify-content: flex-start; + gap: 48px; + position: fixed; + top: 60px; + left: 0; + width: 100%; + height: calc(100vh - 60px); + background: #FFFFFF; + padding: 40px 24px; + box-sizing: border-box; + transform: translateX(100%); + transition: transform 0.3s ease-in-out; + z-index: 1001; + overflow-y: auto; + } + + body.nav-open .mobile-nav-panel { + transform: translateX(0); + } + + .mobile-nav-panel .navigation.mobile-nav { + display: flex; + flex-direction: column; + align-items: center; + gap: 24px; + } + + .mobile-nav-panel .navigation a { + font-size: 20px; + color: #101828; + } + + .mobile-nav-panel .navigation-actions { + display: flex; + flex-direction: column; + align-items: center; + gap: 16px; + width: 100%; + } + + .mobile-nav-panel .navigation-actions .btn { + width: 100%; + max-width: 300px; + } + + .mobile-nav-panel .language-selector { + margin-top: 16px; + } + + /* Mobile Hero Section */ + .hero-section { + height: 600px; + margin-top: 0; + align-items: flex-start; + } + + .hero-overlay, .hero-image-left, .hero-image-right { + display: none; + } + + .hero-background { + background: url('../images/2.hero.jpg') no-repeat center center/cover; + } + + .hero-background::after { + content: ''; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: linear-gradient(122.4deg, rgba(19, 49, 60, 0.92) 35.41%, rgba(39, 77, 90, 0.08) 92.92%); + } + + .hero-content { + padding: 64px 24px; + width: 100%; + box-sizing: border-box; + } + .hero-content h1 { + font-size: 40px; + line-height: 48px; + letter-spacing: -0.03em; + } + .hero-content p { + font-size: 16px; + line-height: 24px; + margin-bottom: 64px; + } + .hero-content .badge-group { + border-radius: 37px; + } + .btn-primary-orange { + width: auto; + padding: 16px 28px; + border-radius: 12px; + font-size: 16px; + } + + /* Mobile Meet the Team Section */ + .meet-the-team-section { + flex-direction: column; + padding: 64px 24px; + gap: 40px; + } + .video-container, .team-content { + width: 100%; + max-width: 327px; + } + .video-container { + height: 190px; + } + .play-button { + width: 42px; + height: 42px; + } + .play-button::after { + border-left-width: 14px; + border-top-width: 8px; + border-bottom-width: 8px; + } + .team-content h2 { + font-size: 32px; + line-height: 40px; + text-align: center; + } + .team-content p { + font-size: 16px; + line-height: 24px; + text-align: center; + margin-bottom: 32px; + } + .team-content .btn-secondary { + margin: 0 auto; + display: block; + width: 124px; + height: 44px; + } + + /* Mobile Activities Section */ + .activities-section { + padding: 64px 0; + } + .activities-header { + padding: 0 24px; + margin-bottom: 48px; + } + .activities-header h2 { + font-size: 32px; + line-height: 40px; + } + .activities-header p { + font-size: 16px; + line-height: 24px; + } + .activities-content { + flex-direction: column; + align-items: center; + gap: 32px; + padding: 0 24px; + } + .activities-nav { + width: 100%; + max-width: 326px; + gap: 32px; + } + .activities-nav ul { + width: 100%; + gap: 16px; + } + .activities-nav li { + display: flex; + justify-content: space-between; + align-items: center; + padding: 16px; + background: rgba(208, 213, 221, 0.5); + border-radius: 8px; + font-size: 16px; + font-weight: 600; + color: #000; + } + .activities-nav li::before { + display: none; + } + .activities-nav li.active::after { + content: ' '; + display: inline-block; + border: solid black; + border-width: 0 2px 2px 0; + padding: 4px; + transform: rotate(45deg); + -webkit-transform: rotate(45deg); + } + .activities-nav .btn-primary-orange { + align-self: center; + } + .activity-details { + width: 100%; + max-width: 327px; + } + .activity-details p { + font-size: 16px; + line-height: 24px; + } + .activity-details img { + height: 300px; + border-radius: 16px; + } + + /* Mobile Latest News Section */ + .latest-news-section { + padding: 64px 24px; + } + .news-header, .news-articles { + margin-bottom: 48px; + } + .news-header h2 { + font-size: 32px; + line-height: 40px; + } + .news-header p { + font-size: 16px; + line-height: 24px; + } + .news-articles { + flex-direction: column; + align-items: center; + gap: 48px; + } + .news-card { + width: 100%; + max-width: 321px; + } + + /* Mobile Testimonials Section */ + .testimonials-section { + flex-direction: column; + padding: 64px 0; + align-items: center; + gap: 32px; + } + .testimonials-intro { + width: 100%; + padding: 0 24px; + text-align: center; + box-sizing: border-box; + } + .testimonials-intro h2 { + font-size: 32px; + line-height: 40px; + } + .testimonials-intro p { + font-size: 16px; + line-height: 24px; + } + .testimonials-columns { + display: flex; + flex-direction: row; + width: 100%; + height: auto; + overflow-x: auto; + overflow-y: hidden; + padding: 0 24px; + box-sizing: border-box; + scroll-snap-type: x mandatory; + } + .testimonials-columns::-webkit-scrollbar { + display: none; + } + .testimonial-column { + display: contents; + } + .testimonial-card { + flex: 0 0 291px; + scroll-snap-align: start; + margin-right: 24px; + } + .column-offset { + margin-top: 0; + } + + /* Mobile Become Part Section */ + .become-part-section { + padding: 64px 16px; + } + .become-part-header { + margin-bottom: 48px; + } + .become-part-header h2 { + font-size: 32px; + line-height: 40px; + } + .become-part-header p { + font-size: 16px; + line-height: 24px; + } + .team-photo { + width: 100%; + height: auto; + margin-bottom: 48px; + } + .contact-form-container { + width: 100%; + padding: 0; + } + .form-row { + flex-direction: column; + gap: 24px; + } + + /* Mobile FAQ Section */ + .faq-section { + padding: 64px 16px; + } + .faq-header { + margin-bottom: 48px; + } + .faq-header h2 { + font-size: 32px; + line-height: 40px; + } + .faq-header p { + font-size: 18px; + line-height: 28px; + } + .faq-grid { + grid-template-columns: 1fr; + gap: 40px; + padding: 0 8px; + } + .faq-item { + align-items: center; + } + .faq-item h3, .faq-item p { + text-align: center; + } + .faq-footer { + width: 100%; + box-sizing: border-box; + padding: 32px 20px; + } + + /* Mobile Footer */ + footer { + padding: 0; + } + .footer-container { + width: 100%; + padding: 0 24px; + } + .footer-main { + flex-direction: column; + align-items: flex-start; + padding: 48px 0; + gap: 48px; + margin-bottom: 0; + border-bottom: 1px solid rgba(255, 255, 255, 0.5); + } + .footer-info { + width: 100%; + } + .footer-logo img { + max-width: 161px; + height: auto; + } + .footer-links { + flex-direction: column; + gap: 40px; + width: 100%; + } + .links-column { + width: 100%; + } + footer hr { + display: none; + } + .footer-bottom { + flex-direction: column; + gap: 32px; + padding: 40px 0; + align-items: flex-start; + } + .legal-links { + flex-direction: column; + gap: 16px; + align-items: flex-start; + } + + /* Mobile Projects Page */ + .page-content { + padding-top: 60px; + } + .page-header-section { + padding: 64px 24px; + } + .page-header-section h1 { + font-size: 32px; + line-height: 40px; + } + .page-description { + font-size: 16px; + line-height: 24px; + } + .subscribe-form { + flex-direction: column; + width: 100%; + } + .subscribe-form input { + width: 100%; + } + .all-posts-section { + padding: 48px 24px; + } + .all-posts-section .container.column-layout { + gap: 32px; + } + .posts-grid { + grid-template-columns: 1fr; + gap: 48px; + } + .pagination { + flex-direction: column; + gap: 24px; + } + .pagination-numbers { + order: -1; + } + + /* Mobile Single Project Page */ + .article-page { + padding-top: 60px; + } + .article-container { + padding: 48px 24px; + } + .article-header { + margin-bottom: 32px; + } + .article-header h1 { + font-size: 32px; + line-height: 40px; + } + .article-subtitle { + font-size: 18px; + line-height: 28px; + } + + .article-main-image { + margin: 0 0 32px 0; + width: 100%; + position: static; + left: auto; + right: auto; + } + .article-main-image img { + border-radius: 16px; + } + + .article-body { + gap: 32px; + } + .article-body p { + font-size: 16px; + line-height: 26px; + } + .article-body h2 { + font-size: 24px; + line-height: 32px; + } + .article-quote p { + font-size: 20px; + line-height: 30px; + } + .author-share-section { + flex-direction: column; + align-items: flex-start; + gap: 24px; + } + .newsletter-cta { + padding: 0 24px 64px 24px; + } + .newsletter-cta .container { + flex-direction: column; + padding: 32px; + gap: 32px; + } + .newsletter-cta .cta-content, + .newsletter-cta .cta-content p { + align-items: center; + text-align: center; + } + .newsletter-cta .subscribe-form-bottom { + flex-direction: column; + width: 100%; + align-items: stretch; + } + .subscribe-form-bottom .input-wrapper { + width: 100%; + } + .subscribe-form-bottom input { + width: 100%; + } + .newsletter-cta .privacy-note { + text-align: center; + } +}""" + + diff --git a/en/projects/index.html b/en/projects/index.html index 9aa9b86..6070173 100644 --- a/en/projects/index.html +++ b/en/projects/index.html @@ -105,51 +105,40 @@

All our projects

- + - + - + - - - +
- +
- - Students enjoying coffee and burek in front of CTK library + + Pink and blue tinted image of a snowy mountain peak
- -

Morning Coffee in front of CTK – 2024

-

When exams somehow become easier with Saturday morning coffee, burek, and good company!

+ +

Bill Walsh leadership lessons

+

Like to know the secrets of transforming a 2-14 team into a 3x Super Bowl winning Dynasty?

+
+
+
+ +
+ + A woman presenting in front of a whiteboard with sticky notes to a team +
+ +

PM mental models

+

Mental models are simple expressions of complex processes or relationships.

diff --git a/en/projects/meet-student-slovenia-2023/index.html b/en/projects/meet-student-slovenia-2023/index.html new file mode 100644 index 0000000..edb9b68 --- /dev/null +++ b/en/projects/meet-student-slovenia-2023/index.html @@ -0,0 +1,279 @@ + + + + + + Meet Student Slovenia 2023 - MSOS + + + + + + + + + + + + + + + + +
+
+
+

Published on September 18, 2023

+

Meet Student Slovenia 2023

+

Through honest first-hand stories, future students received support for their first step towards their new home.

+
+ +
+ Panel discussion at the 'Meet Student Slovenia 2023' event +
+ +
+

What does the first step towards student life in Slovenia look like? We tried to answer this question through the event "Meet Student Slovenia," which we organized on September 18, 2023, at the NLB Gallery in Skopje. The atmosphere was full of excitement – more than 100 future students and their families came with the same feeling: a desire to discover what awaits them where they will start their new chapter.

+ +

What lies behind student life in Slovenia?

+

Instead of dry information, students had the opportunity to hear real stories – from those who are already walking the same path. Students from Ljubljana, Maribor, and Koper talked about their challenges, first impressions, funny situations, and moments when community support was crucial. And the audience? They absorbed everything with great attention, because exactly those questions that are never written in brochures – here they received honest answers.

+ +
+ Participants of the panel discussion +
Igor Arsov from the University of Primorska recounts his student experience at the Faculty of Management.
+
+ +

Voices that inspire

+

Our members Kiara Lazić, Angel Naumov, Klimentina Čapovska, and Igor Arsov appeared on stage – each with their own story, their own faculty, their own city. Together with moderator Leon Šumanski and host Vasil Hanџiski, they transformed the panel into a real conversation that felt more like a friendly get-together than a formal discussion. They talked about exams, new friendships, life in student dorms, and how important it is not to give up even when things seem hardest.

+ +
+ Vasil Hanџiski at the opening of the event +
Photograph from the opening of the event with the host Vasil Hanџiski.
+
+ +
+ The audience at the event +
Photograph of the event participants. We were a little surprised by the interest, but somehow we managed to fit everyone!♡
+
+ +

Behind the scenes – our supporters

+

The event would not have been possible without the support of the Embassy of the Republic of Slovenia in North Macedonia, NLB Bank Skopje, Capital Financial Center, Dijag, and Radio MOF. But the real strength came from MSOS members in preparing the event and the students with their questions, their energy, and their curiosity.

+

At the event, we received significant support and assistance from Melita Sekulovska in organizing the space and Aleksandar Popovski in designing the organization's website. We sincerely thanked them for their dedicated work, as well as the event coordinator, Lea Janačkovska, who made this event extraordinary.

+ +
+ Mr. Branko Gregović and H.E. Gregor Presker + Kristijan Popovski, Melita Sekulovska, Lea Janačkovska, Marija Koštrevska and Aleksandar Popovski with certificates of appreciation +
The top two pictures show Mr. Branko Greganović, Chairman of the Management Board of NLB Bank Skopje, and on the right is H.E. the Ambassador of the Republic of Slovenia in North Macedonia, Mr. Gregor Presker. The bottom pictures show the President Kristijan Popovski, Melita Sekulovska, Lea Janačkovska, Marija Koštrevska, and Aleksandar Popovski.
+
+ +

With the help of Dijag doo company, we prepared two plaques for the Embassy and NLB Bank as a sign of gratitude for all the help and support they provided.

+ +
+ Plaques for NLB Bank Skopje and the Embassy of the Republic of Slovenia +
Photograph of the plaques we presented to NLB Bank Skopje and the Embassy of the Republic of Slovenia in North Macedonia.
+
+ +

Why was it special?

+

Because this event was not just another presentation. It was a hand extended to future students – a message that they are not alone, that a community is already waiting for them. Some left with new friends, others with concrete answers to questions that had bothered them for months. But everyone left with the same feeling: that Slovenia is no longer an unknown place, but a new home where they will be part of something bigger.

+ +
+ Attendees at the event +
Photographs of the attendees at the event!
+
+ +
+

“The event was a 'game changer' for me because I finally got information that really helped me get to know student Slovenia instead of just another pile of brochures. The panel was great, relaxed, with talks about the best places to go out, days stuck in the library, life in student dorms, and the classic 'I overslept before the exam' story... P.S. And the networking, the networking was top – no awkward silence.”

+
— Borjan Jovanovski, future student and event participant
+
+ +

Practical advice first-hand

+

A special moment of the event was the address by the Consul of the Embassy of the Republic of Slovenia in North Macedonia, Mr. Martin Glazar. He briefly presented the most important steps of the process for obtaining a temporary residence permit – one of the biggest concerns and challenges for all foreign students in Slovenia. In this way, future students gained a clearer picture of what awaits them and how to more easily deal with administrative procedures.

+ +
+ The Consul introducing students to the process of obtaining a temporary residence permit +
Photograph of the consul introducing students in an interesting way to the process of obtaining a temporary residence permit!
+
+ +

For those who were not physically present with us

+

Not everyone managed to be present in the hall, but that's why we made sure no one was left without this experience. We broadcast the event live through our Facebook page, and the recording is still available. If you want to experience the atmosphere and hear the stories first-hand, you can watch the entire event at this link here.

+ +
+ Poster for the 'Meet Student Slovenia' event +
Photograph of the event poster!
+
+ +

See you in Slovenia!

+

With "Meet Student Slovenia 2023," we managed to extend a hand to new students and show them that an exciting journey full of new friendships, challenges, and successes awaits them. We sincerely hope that next time we will meet right there – in the lecture halls, student dorms, and on the streets of Ljubljana, Maribor, and Koper.

+

This event would not have been possible without the support of our partners and friends, to whom we extend our immense gratitude:

+
    +
  1. Embassy of the Republic of Slovenia in North Macedonia (partner)
  2. +
  3. NLB Bank Skopje (main sponsor and patron)
  4. +
  5. Capital Financial Center (sponsor)
  6. +
  7. Dijag doo (sponsor)
  8. +
  9. Radio MOF (media partner)
  10. +
+

Thanks to everyone who was part of this event – and to future students, we say: your story in Slovenia is just beginning, and we are here to be a part of it.

+ +
+ A small part of the MSOS team +
Photo of a small part of the team because we forgot to take a group photo!🤪
+
+
+ +
+
+
+
+ Avatar of Kristijan Popovski +
+

Kristijan Popovski

+

President and Founder

+
+
+ +
+
+
+ + +
+ + + + + + \ No newline at end of file diff --git a/en/projects/meet-student-slovenia-2024/index.html b/en/projects/meet-student-slovenia-2024/index.html new file mode 100644 index 0000000..ef499c3 --- /dev/null +++ b/en/projects/meet-student-slovenia-2024/index.html @@ -0,0 +1,271 @@ + + + + + + Meet Student Slovenia 2024 - MSOS + + + + + + + + + + + + + + + + +
+
+
+

Published on September 16, 2024

+

Meet Student Slovenia 2024

+

When student stories turn into the first step towards a new home.

+
+ +
+ A group of students at the 'Meet Student Slovenia 2024' event +
+ +
+

Following the success in 2023, "Meet Student Slovenia" returned this year with even greater energy. On September 16, 2024, at the NLB Gallery in Skopje, we held the second edition of the event, which has become a true tradition. The interest was enormous – we had twice as many applications as the capacity of the venue. The atmosphere was full of excitement, questions, and a desire for new beginnings.

+ +

"Coffee chat" with future colleagues, but on a panel discussion

+

Our goal was never to create "dry presentations." Instead, we organized a panel – a real conversation with four students who are already living the Slovenian student life. Marija Koštrevska from the University of Ljubljana, Vasil Hanџiski from the University of Maribor, Sofija Matovska from the University of Nova Gorica, and Igor Arsov from the University of Primorska spoke about everything: the first days away from home, how to find accommodation, what student "boni" (subsidized meals) are, and what it's like to build a new circle of friends. Everyone shared something of their own, and the audience asked questions and participated – just like a coffee chat.

+ +
+ Panel discussion with speakers +
Photograph of the moderator and panelists in the following order: Klimentina Čapovska (left, moderator), Vasil Hanџiski, Marija Koštrevska, Igor Arsov, and Sofija Matovska.
+
+ +
+ Marija Koštrevska and Sofija Matovska sharing their student experiences in Slovenia. +
Marija Koštrevska (in the upper picture) and Sofija Matovska (in the lower picture) are recounting their student experiences in Slovenia.
+
+ +

What remained behind us

+

This evening was not just an exchange of information. It was a moment when future students understood that they are not alone in their worries and fears. Every question received an answer from experience, every dilemma was resolved with a real-life example. Many left encouraged, with new friends, and with the feeling that Slovenia is no longer so distant and unknown.

+ +
+ Marko Ivanovski, event host +
Marko Ivanovski, host of the event.
+
+
+ Lea Janačkovska, event coordinator +
Lea Janačkovska, event coordinator.
+
+
+ Marko Arsov, presenter +
Marko Arsov, presenter.
+
+ +
+ Representatives of the Embassy, the Management Board of NLB Bank and the Management Board of MSOS. +
The bottom picture shows representatives of the Embassy, the Management Board of NLB Bank, and the Management Board of MSOS.
+
+ +

The support that made a difference

+

"Meet Student Slovenia 2024" would not have looked this way without the help of our partners and friends. We extend great gratitude to the Embassy of the Republic of Slovenia in North Macedonia, NLB Bank Skopje as the patron and main sponsor of the entire event, and Capital Financial Center, who with their support made it possible for the event to be realized at this high level.

+ +
+ Newly printed MSOS stickers +
Photograph of the newly printed MSOS stickers.
+
+ +
+ Handing over flowers as a thank you to the Embassy, Capital Financial Center and NLB Bank Skopje +
Photograph from the handing over of flowers as a sign of gratitude to the Embassy, Capital Financial Center, and NLB Bank Skopje.
+
+ +

Special thanks go to the MSOS team, who worked tirelessly for weeks on preparations – from the initial idea to the last detail of the evening. Above all, great recognition goes to Lea Janačkovska, the event coordinator, who with her energy, patience, and organizational skills ensured that every piece fell into place.

+

This time, the memories of the evening are thanks to Hristina Trakovska, who was the photographer and made sure all those moments were captured so we can relive them again through photographs.

+ +
+ Welcome speech by H.E. Ambassador Mr. Gregor Presker. +
Photograph of the welcome speech by H.E. Ambassador Mr. Gregor Presker.
+
+ +

Why was it special?

+

Because this event was not just another presentation. It was a hand extended to future students – a message that they are not alone, that a community is already waiting for them. Some left with new friends, others with concrete answers to questions that had bothered them for months. But everyone left with the same feeling: that Slovenia is no longer an unknown place, but a new home where they will be part of something bigger.

+ +
+ Attendees asking questions to the panelists +
Moments when the participants ask questions to the panelists!😊✨
+
+ +

For those who were not physically present with us

+

We know that not everyone managed to attend the NLB Gallery, but we therefore provided a high-quality livestream. The event was broadcast live and is now available for re-watching. If you want to feel the atmosphere and hear the honest stories from the panel, you can watch the entire event at this link Watch the video here.

+ +
+ Poster for the 'Meet Student Slovenia' event +
Photograph of the event poster!
+
+ +

See you in Slovenia!

+

"Meet Student Slovenia" is not just an event. It is a place where future students take their first step – with support, with first-hand advice, and with the feeling that they are not alone. And this year we managed to create that feeling, and that is the greatest victory.

+

See you again next year!

+

P.S. Every year after a successfully organized event, the MSOS team traditionally heads to the nearest tavern, for an evening full of socializing, singing, and emotions! 😊 That's why it's worth being part of our team! Join us.

+
+ +
+
+
+
+ Avatar of Kristijan Popovski +
+

Kristijan Popovski

+

President and Founder

+
+
+ +
+
+
+ + +
+ + + + + + \ No newline at end of file diff --git a/images/event3-photo-1.jpg b/images/event3-photo-1.jpg new file mode 100644 index 0000000..3c7d269 Binary files /dev/null and b/images/event3-photo-1.jpg differ diff --git a/images/event3-photo-10.png b/images/event3-photo-10.png new file mode 100644 index 0000000..a50adf2 Binary files /dev/null and b/images/event3-photo-10.png differ diff --git a/images/event3-photo-2.jpg b/images/event3-photo-2.jpg new file mode 100644 index 0000000..7190585 Binary files /dev/null and b/images/event3-photo-2.jpg differ diff --git a/images/event3-photo-3.jpg b/images/event3-photo-3.jpg new file mode 100644 index 0000000..b6e1cf4 Binary files /dev/null and b/images/event3-photo-3.jpg differ diff --git a/images/event3-photo-4.jpg b/images/event3-photo-4.jpg new file mode 100644 index 0000000..056bd16 Binary files /dev/null and b/images/event3-photo-4.jpg differ diff --git a/images/event3-photo-5.png b/images/event3-photo-5.png new file mode 100644 index 0000000..cfde71d Binary files /dev/null and b/images/event3-photo-5.png differ diff --git a/images/event3-photo-6.jpg b/images/event3-photo-6.jpg new file mode 100644 index 0000000..e8bf4ed Binary files /dev/null and b/images/event3-photo-6.jpg differ diff --git a/images/event3-photo-7.png b/images/event3-photo-7.png new file mode 100644 index 0000000..2cd3b5c Binary files /dev/null and b/images/event3-photo-7.png differ diff --git a/images/event3-photo-8.jpg b/images/event3-photo-8.jpg new file mode 100644 index 0000000..d3afefd Binary files /dev/null and b/images/event3-photo-8.jpg differ diff --git a/images/event3-photo-9.png b/images/event3-photo-9.png new file mode 100644 index 0000000..072cd7f Binary files /dev/null and b/images/event3-photo-9.png differ diff --git a/images/event4-img-1.JPG b/images/event4-img-1.JPG new file mode 100644 index 0000000..8930f8a Binary files /dev/null and b/images/event4-img-1.JPG differ diff --git a/images/event4-img-10.png b/images/event4-img-10.png new file mode 100644 index 0000000..da6fada Binary files /dev/null and b/images/event4-img-10.png differ diff --git a/images/event4-img-11.JPG b/images/event4-img-11.JPG new file mode 100644 index 0000000..1e7c7c8 Binary files /dev/null and b/images/event4-img-11.JPG differ diff --git a/images/event4-img-12.jpeg b/images/event4-img-12.jpeg new file mode 100644 index 0000000..50b2faa Binary files /dev/null and b/images/event4-img-12.jpeg differ diff --git a/images/event4-img-2.JPG b/images/event4-img-2.JPG new file mode 100644 index 0000000..6ff83b3 Binary files /dev/null and b/images/event4-img-2.JPG differ diff --git a/images/event4-img-3.png b/images/event4-img-3.png new file mode 100644 index 0000000..9360920 Binary files /dev/null and b/images/event4-img-3.png differ diff --git a/images/event4-img-4.png b/images/event4-img-4.png new file mode 100644 index 0000000..7580018 Binary files /dev/null and b/images/event4-img-4.png differ diff --git a/images/event4-img-5.png b/images/event4-img-5.png new file mode 100644 index 0000000..cc2a5cc Binary files /dev/null and b/images/event4-img-5.png differ diff --git a/images/event4-img-6.JPG b/images/event4-img-6.JPG new file mode 100644 index 0000000..7d593f1 Binary files /dev/null and b/images/event4-img-6.JPG differ diff --git a/images/event4-img-7.png b/images/event4-img-7.png new file mode 100644 index 0000000..1cad3d3 Binary files /dev/null and b/images/event4-img-7.png differ diff --git a/images/event4-img-8.JPG b/images/event4-img-8.JPG new file mode 100644 index 0000000..db18e41 Binary files /dev/null and b/images/event4-img-8.JPG differ diff --git a/images/event4-img-9.png b/images/event4-img-9.png new file mode 100644 index 0000000..67b4b0e Binary files /dev/null and b/images/event4-img-9.png differ diff --git a/mk/projects/index.html b/mk/projects/index.html index 2509ba1..e42e7a8 100644 --- a/mk/projects/index.html +++ b/mk/projects/index.html @@ -105,51 +105,40 @@

Сите наши проекти

- +
- - Слика од проект 1 + + Група студенти на настанот „Запознај ја студентска Словенија 2024“
- -

Лекции за лидерство од Бил Волш

-

Сакате да ги дознаете тајните за трансформација на тим со резултат 2-14 во династија со 3x Супер Боул?

+ +

Запознај ја студентска Словенија 2024

+

Кога студентските приказни се претвораат во првиот чекор кон новиот дом.

- +
- - Слика од проект 2 + + Студенти уживаат во кафе и бурек пред библиотеката ЦТК
- -

ПМ ментални модели

-

Менталните модели се едноставни изрази на сложени процеси или односи.

+ +

Утринско кафе пред ЦТК – 2024

+

Кога испитите некако ти стануваат полесни со саботно утринско кафе, бурек и добро друштво!

- +
- - Слика од проект 3 + + Панел дискусија на настанот „Запознај ја студентска Словенија 2023“
- -

Што е Wireframing?

-

Вовед во Wireframing и неговите принципи. Учете од најдобрите во индустријата.

+ +

Запознај ја студентска Словенија 2023

+

Преку искрени приказни од прва рака, идните студентите добија поддршка за првиот чекор кон нивниот нов дом.

- - - +
- +
- - Студенти уживаат во кафе и бурек пред библиотеката ЦТК + + Слика на снежен планински врв во розови и сини нијанси
- -

Утринско кафе пред ЦТК – 2024

-

Кога испитите некако ти стануваат полесни со саботно утринско кафе, бурек и добро друштво!

+ +

Лекции за лидерство од Бил Волш

+

Сакате да ги дознаете тајните за трансформација на тим со резултат 2-14 во династија со 3x Супер Боул?

+
+
+
+ + diff --git a/mk/projects/meet-student-slovenia-2023/index.html b/mk/projects/meet-student-slovenia-2023/index.html new file mode 100644 index 0000000..0d2ca5e --- /dev/null +++ b/mk/projects/meet-student-slovenia-2023/index.html @@ -0,0 +1,279 @@ + + + + + + Запознај ја студентска Словенија 2023 - МСОС + + + + + + + + + + + + + + + + +
+
+
+

Објавено на 18 септември 2023

+

Запознај ја студентска Словенија 2023

+

Преку искрени приказни од прва рака, идните студентите добија поддршка за првиот чекор кон нивниот нов дом.

+
+ +
+ Панел дискусија на настанот „Запознај ја студентска Словенија 2023“ +
+ +
+

Како изгледа првиот чекор кон студентскиот живот во Словенија? На ова прашање се обидовме да дадеме одговор преку настанот „Запознај ја студентска Словенија“, кој го организиравме на 18 септември 2023 во НЛБ Галерија во Скопје. Атмосферата беше полна со возбуда – повеќе од 100 идни студенти и нивните семејства дојдоа со едно исто чувство: желба да откријат што ги чека таму каде што ќе го започнат своето ново поглавје.

+ +

Што се крие зад студентскиот живот во Словенија?

+

Наместо суви информации, студентите имаа можност да слушнат вистински приказни – од оние што веќе го минуваат истиот пат. Студенти од Љубљана, Марибор и Копер зборуваа за своите предизвици, првите впечатоци, смешни ситуации и моментите кога поддршката од заедницата била пресудна. А публиката? Со огромно внимание впиваше сè, бидејќи токму тие прашања што никогаш не ги пишува на брошурите – тука добија во вид на искрени одговори.

+ +
+ Учесници на панел дискусијата +
Игор Арсов од Универзитетот во Приморска го раскажува своето студентско искуство на Факултетот за менаџмент.
+
+ +

Гласови што инспирираат

+

На сцената се појавија нашите членови Киара Лазиќ, Ангел Наумов, Климентина Чаповска и Игор Арсов – секој со своја приказна, свој факултет, свој град. Заедно со модераторот Леон Шумански и водителот Васил Ханџиски, тие го претворија панелот во вистински разговор кој изгледаше повеќе како другарска дружба отколку како формална дискусија. Зборуваа за испити, за нови пријателства, за живот во студентски домови и за тоа колку е важно да не се откажуваш дури и кога ти изгледа најтешко.

+ +
+ Васил Ханџиски на отворањето на настанот +
Фотографија од отварањето на настанот со водителот Васил Ханџиски.
+
+ +
+ Публиката на настанот +
Фотографија од учесниците на настанот. Малку нè изненадија со интересот, ама некако ги сместивме сите!♡
+
+ +

Зад сцената – нашите поддржувачи

+

Настанот не би бил можен без поддршката на Амбасадата на Република Словенија во Северна Македонија, НЛБ Банка Скопје, Капитал Финансиски Центар, Дијаг и Радио МОФ. Но вистинската сила ја дадоа МСОСци за подготвка на настанот и студентите со своите прашања, својата енергија и својата љубопитност.

+

На настанот значајна поддршка и помош добивме и од Мелита Секуловска при организирањето на просторот и Александар Поповски при дизајнирање на веб страната на организација. Свечено им се заблагодаривме за нивната посветена работа, како и на работата на координаторката на настанот, Леа Јаначковска која го направи овој настан извонреден.

+ +
+ Господин Бранко Грегановиќ и Н.Е. Грегор Прескер + Кристијан Поповски, Мелита Секуловска, Леа Јаначковска, Марија Коштревска и Александар Поповски со благодарници +
На горните две слики се господинот Бранко Грегановиќ, претседател на Управниот одбор на НЛБ Банка Скопје, на десната страна е Н.Е. амбасадор на Република Словенија во Северна Македонија, господинот Грегор Прескер. На долните слики се претставени претседателот Кристијан Поповски, Мелита Секуловска, Леа Јаначковска, Марија Коштревска и Александар Поповски.
+
+ +

На Амбасадата и на НЛБ Банка со помош на компанијата Дијаг доо им изработивме и две плаќети во знак на благодарност за сета помош и поддршка која ни ја пружија.

+ +
+ Плакети за НЛБ Банка Скопје и Амбасадата на Република Словенија +
Фотографија од плакетите кои им ги подаривме на НЛБ Банка Скопје и Амбасадата на Република Словенија во Северна Македонија.
+
+ +

Зошто беше посебно?

+

Затоа што овој настан не беше само уште една презентација. Тој беше рака подадена кон идните студенти – порака дека не се сами, дека веќе постои заедница што ги чека. Некои од нив заминаа со нови пријатели, други со конкретни одговори на прашања што ги мачеле со месеци. Но сите заминаа со исто чувство: дека Словенија повеќе не е непознато место, туку нов дом во кој ќе бидат дел од нешто поголемо.

+ +
+ Присутните на настанот +
Фотографии од присутните на настанот!
+
+ +
+

„Настанот беше „game changer“ за мене бидејќи конечно добив информации што ми помогнаа навистина да ја запознаам студентска Словенија наместо уште едно купче брошури. Панелот беше супер, опуштен, со муабети за најдобрите места за излегување, денови заглавени во библиотека, животот во студентски домови и класичната „се успав пред испит“ приказна... П.С. А, нетворкингот, нетворкингот беше топ – без незгодно ќутење.”

+
— Борјан Јовановски, иден студент и учесник на настанот
+
+ +

Практични совети од прва рака

+

Посебен момент на настанот беше обраќањето на конзулот од Амбасадата на Република Словенија во Северна Македонија, господинот Мартин Глазар. Тој накратко ги претстави најважните чекори од процесот за добивање дозвола за привремен престој – една од најголемите грижи и предизвици за сите странски студенти во Словенија. На тој начин, идните студенти добија појасна слика за тоа што ги очекува и како полесно да се справат со административните процедури.

+ +
+ Конзулот ги запознава студентите со процесот за добивање привремена дозвола за престој +
Фотографија од конзулот кој на интересен начин ги запознава студентите со процесот за добивање на привремена дозвола за престој!
+
+ +

За оние што не беа физички присутни со нас

+

Не секој успеа да биде присутен во салата, но затоа се потрудивме никој да не остане без ова искуство. Настанот го пренесувавме во живо преку нашата Фејсбук страница, а снимката сè уште е достапна. Ако сакаш да ја доживееш атмосферата и да ги чуеш приказните од прва рака, можеш да го погледнеш целиот настан на овој линк тука.

+ +
+ Постер за настанот „Запознај ја студентска Словенија“ +
Фотографија од постерот за настанот!
+
+ +

Се гледаме во Словенија!

+

Со „Запознај ја студентска Словенија 2023“ успеавме да им подадеме рака на новите студенти и да им покажеме дека пред нив стои возбудливо патување полно со нови пријателства, предизвици и успеси. Искрено се надеваме дека следниот пат ќе се сретнеме токму таму – во предавалните, студентските домови и улиците на Љубљана, Марибор и Копер.

+

Овој настан немаше да биде можен без поддршката на нашите партнери и пријатели, на кои им упатуваме огромна благодарност:

+
    +
  1. Амбасада на Република Словенија во Северна Македонија (партнер)
  2. +
  3. НЛБ Банка Скопје (главен спонзор и покровител)
  4. +
  5. Капитал Финансиски Центар (спонзор)
  6. +
  7. Дијаг доо (спонзор)
  8. +
  9. Радио МОФ (медиа партнер)
  10. +
+

Благодарност до сите што беа дел од овој настан – а на идните студенти им порачуваме: вашата приказна во Словенија штотуку започнува и ние сме тука да бидеме дел од неа.

+ +
+ Мал дел од тимот на МСОС +
Фотографија од мал дел од тимот затоа што заборавивме да се сликаме сите заедно!🤪
+
+
+ +
+
+
+
+ Аватар на Кристијан Поповски +
+

Кристијан Поповски

+

Претседател и основач

+
+
+ +
+
+
+ + +
+ + + + + + \ No newline at end of file diff --git a/mk/projects/meet-student-slovenia-2024/index.html b/mk/projects/meet-student-slovenia-2024/index.html new file mode 100644 index 0000000..34cc8e1 --- /dev/null +++ b/mk/projects/meet-student-slovenia-2024/index.html @@ -0,0 +1,271 @@ + + + + + + Запознај ја студентска Словенија 2024 - МСОС + + + + + + + + + + + + + + + + +
+
+
+

Објавено на 16 септември 2024

+

Запознај ја студентска Словенија 2024

+

Кога студентските приказни се претвораат во првиот чекор кон новиот дом.

+
+ +
+ Група студенти на настанот „Запознај ја студентска Словенија 2024“ +
+ +
+

По успехот во 2023 година, „Запознај ја студентска Словенија“ оваа година се врати со уште поголема енергија. На 16 септември 2024 година во НЛБ Галерија Скопје, го одржавме второто издание на настанот кој стана вистинска традиција. Интересот беше огромен – имавме двојно повеќе пријави од капацитетот на просторот. Атмосферата беше полна со возбуда, прашања и желба за нови почетоци.

+ +

„Кафе муабет“ со идни колеги, но на панел дискусија

+

Нашата цел никогаш не била да правиме „суви презентации“. Наместо тоа, организиравме панел – вистински муабет со четворица студенти кои веќе го живеат словенечкиот студентски живот. Марија Коштревска од Универзитетот во Љубљана, Васил Ханџиски од Универзитетот во Марибор, Софија Матовска од Универзитетот во Нова Горица и Игор Арсов од Универзитетот во Приморска зборуваа за се: првите денови далеку од дома, како е да се најде сместување, што се студентските „бони“ и како изгледа да се гради нов круг на пријатели. Секој сподели нешто свое, а публиката прашуваше и се вклучуваше – баш како муабет на кафе.

+ +
+ Панел дискусија со говорници +
Фотографија од модераторот и панелистите по следниот редослед: Климентина Чаповска (лево, модератор), Васил Ханџиски, Марија Коштревска, Игор Арсов и Софија Матовска.
+
+ +
+ Марија Коштревска и Софија Матовска го раскажуваат своето студентско искуство во Словенија. +
Марија Коштревска (на горната слика) и Софија Матовска (на долната слика) го раскажуваат своето студентско искуство во Словенија.
+
+ +

Што остана зад нас

+

Оваа вечер не беше само размена на информации. Беше момент кога идните студенти разбраа дека не се сами во своите грижи и стравови. Секое прашање доби одговор од искуство, секоја дилема беше растопена со пример од реалноста. Многумина заминаа охрабрени со нови пријатели и со чувство дека Словенија веќе не е толку далечна и непозната.

+ +
+ Марко Ивановски, водител на настанот +
Марко Ивановски, водител на настанот.
+
+
+ Леа Јаначковска, координатор на настанот +
Леа Јаначковска, координатор на настанот.
+
+
+ Марко Арсов, презентер +
Марко Арсов, презентер.
+
+ +
+ Претставници на Амбасадата, Управниот одбор на НЛБ Банка и Управниот одбор на МСОС. +
На долната слика се претставниците на Амбасадата, Управниот одбор на НЛБ Банка и Управниот одбор на МСОС.
+
+ +

Поддршката што ја направи разликата

+

„Запознај ја студентска Словенија 2024" немаше да изгледа вака без помошта на нашите партнери и пријатели. Голема благодарност упатуваме до Амбасадата на Република Словенија во Северна Македонија, НЛБ Банка Скопје како покровител и главен спонзор на целиот настан и Капитал Финансиски Центар, кои со својата поддршка овозможија настанот да се реализира на ова високо ниво.

+ +
+ Новопечатени налепници на МСОС +
Фотографија од новопечатените налепници на МСОС.
+
+ +
+ Врачување цвеќе како благодарност до Амбасадата, Капитал Финансиски центар и НЛБ Банка Скопје +
Фотографија од врачувањето на цвеќиња во знак на благодарност до Амбасадата, Капитал Финансиски центар и НЛБ Банка Скопје.
+
+ +

Посебна благодарност заслужува тимот на МСОС, кој неуморно работеше со недели за подготовките – од првичната идеја, па сè до последниот детаљ на вечерта. Над сè, големо признание за Леа Јаначковска, координаторка на настанот, која со својата енергија, трпение и организациски вештини се погрижи секоја коцка да биде на своето место.

+

Овојпат спомените од вечерта ги должиме на Христина Траковска, која беше фотограф и се погрижи сите тие моменти да останат забележани и да можеме повторно да ги проживуваме преку фотографии.

+ +
+ Поздравен говор на Н.Е. амбасадор господинот Грегор Прескер. +
Фотографија од поздравниот говор на Н.Е. амбасадор господинот Грегор Прескер.
+
+ +

Зошто беше посебно?

+

Затоа што овој настан не беше само уште една презентација. Тој беше рака подадена кон идните студенти – порака дека не се сами, дека веќе постои заедница што ги чека. Некои од нив заминаа со нови пријатели, други со конкретни одговори на прашања што ги мачеле со месеци. Но сите заминаа со исто чувство: дека Словенија повеќе не е непознато место, туку нов дом во кој ќе бидат дел од нешто поголемо.

+ +
+ Учесниците поставуваат прашања на панелистите +
Моменти кога учесниците им поставуваат прашања на панелистите!😊✨
+
+ +

За оние што не беа физички присутни со нас

+

Знаеме дека не секој успеа да присуствува во НЛБ Галерија, но затоа овозможивме квалитетен livestream. Настанот беше пренесуван во живо и сега е достапен за повторно гледање. Доколку сакате да ја почувствувате атмосферата и да ги чуете искрените приказни од панелот, можете да го погледнете на овој линк Погледни го видеото тука.

+ +
+ Постер за настанот „Запознај ја студентска Словенија“ +
Фотографија од постерот за настанот!
+
+ +

Се гледаме во Словенија!

+

„Запознај ја студентска Словенија“ не е само настан. Тоа е место каде идните студенти го прават првиот чекор – со поддршка, со совети од прва рака и со чувство дека не се сами. И оваа година успеавме да го создадеме тоа чувство, а тоа е најголемата победа.

+

Се гледаме повторно наредната година!

+

П.С. Секоја година после успешно оранизираниот настан тимот на МСОС традиционално се упатува кон најблиската кафана, на вечер полна дружење, пеење и емоции! 🤪 Затоа вреди да си и ти дел од нашиот тим! Придружи ни се.

+
+ +
+
+
+
+ Аватар на Кристијан Поповски +
+

Кристијан Поповски

+

Претседател и основач

+
+
+ +
+
+
+ + +
+ + + + + + \ No newline at end of file diff --git a/si/index.html b/si/index.html index e93ea10..bec846f 100644 --- a/si/index.html +++ b/si/index.html @@ -18,6 +18,7 @@ + +
@@ -330,6 +332,7 @@
+
+ diff --git a/si/projects/index.html b/si/projects/index.html index 2331f4a..3e5b51b 100644 --- a/si/projects/index.html +++ b/si/projects/index.html @@ -18,6 +18,7 @@ + +
@@ -105,51 +107,40 @@

Vsi naši projekti

- + + + @@ -191,6 +193,7 @@
+
+ diff --git a/si/projects/macedonian-student-night-in-ljubljana/index.html b/si/projects/macedonian-student-night-in-ljubljana/index.html index 74432e2..58c0e0a 100644 --- a/si/projects/macedonian-student-night-in-ljubljana/index.html +++ b/si/projects/macedonian-student-night-in-ljubljana/index.html @@ -18,6 +18,7 @@ + +
@@ -162,6 +164,7 @@
+
+ diff --git a/si/projects/meet-student-slovenia-2023/index.html b/si/projects/meet-student-slovenia-2023/index.html new file mode 100644 index 0000000..5c050e3 --- /dev/null +++ b/si/projects/meet-student-slovenia-2023/index.html @@ -0,0 +1,283 @@ + + + + + + Spoznaj študentsko Slovenijo 2023 - MŠOS + + + + + + + + + + + + + + + + + + +
+
+
+

Objavljeno 18. septembra 2023

+

Spoznaj študentsko Slovenijo 2023

+

Preko iskrenih izkušenj iz prve roke so bodoči študenti prejeli podporo za prvi korak v njihov novi dom.

+
+ +
+ Panelna razprava na dogodku 'Spoznaj študentsko Slovenijo 2023' +
+ +
+

Kako izgleda prvi korak v študentsko življenje v Sloveniji? Na to vprašanje smo poskušali odgovoriti z dogodkom »Spoznaj študentsko Slovenijo«, ki smo ga organizirali 18. septembra 2023 v NLB Galeriji v Skopju. Vzdušje je bilo polno navdušenja – več kot 100 bodočih študentov in njihovih družin je prišlo z enakim občutkom: željo odkriti, kaj jih čaka tam, kjer bodo začeli novo poglavje.

+ +

Kaj se skriva za študentskim življenjem v Sloveniji?

+

Namesto suhih informacij so študenti imeli priložnost slišati resnične zgodbe – od tistih, ki že hodijo po isti poti. Študenti iz Ljubljane, Maribora in Kopra so govorili o svojih izzivih, prvih vtisih, smešnih situacijah in trenutkih, ko je bila podpora skupnosti ključna. In občinstvo? Z ogromno pozornostjo so vpijali vse, saj so prav na ta vprašanja, ki jih nikoli ne piše na brošurah – tukaj dobili iskrene odgovore.

+ +
+ Udeleženci panelne razprave +
Igor Arsov z Univerze na Primorskem pripoveduje o svoji študentski izkušnji na Fakulteti za management.
+
+ +

Glasovi, ki navdihujejo

+

Na odru so se pojavili naši člani Kiara Lazić, Angel Naumov, Klimentina Čapovska in Igor Arsov – vsak s svojo zgodbo, svojo fakulteto, svojim mestom. Skupaj z moderatorjem Leonom Šumanskim in voditeljem Vasilom Hanџiskim so panel spremenili v pravi pogovor, ki je bolj spominjal na prijateljsko druženje kot na formalno diskusijo. Govorili so o izpitih, novih prijateljstvih, življenju v študentskih domovih in o tem, kako pomembno je, da ne obupaš, tudi ko se ti zdi najtežje.

+ +
+ Vasil Hanџiski ob otvoritvi dogodka +
Fotografija z otvoritve dogodka z voditeljem Vasilom Hanџiskim.
+
+ +
+ Občinstvo na dogodku +
Fotografija udeležencev dogodka. Zanimanje nas je malo presenetilo, a nekako smo se vsi stlačili!♡
+
+ +

Za kulisami – naši podporniki

+

Dogodek ne bi bil mogoč brez podpore Veleposlaništva Republike Slovenije v Severni Makedoniji, NLB Banke Skopje, Capital Financial Centra, Dijaga in Radia MOF. A pravo moč so dali člani MŠOS pri pripravi dogodka in študenti s svojimi vprašanji, svojo energijo in svojo radovednostjo.

+

Na dogodku smo dobili pomembno podporo in pomoč tudi od Melite Sekulovske pri organizaciji prostora in Aleksandra Popovskega pri oblikovanju spletne strani organizacije. Iskreno smo se jim zahvalili za njihovo predano delo, kot tudi koordinatorki dogodka, Lei Janačkovski, ki je ta dogodek naredila izjemen.

+ +
+ Gospod Branko Greganović in N.E. Gregor Presker + Kristijan Popovski, Melita Sekulovska, Lea Janačkovska, Marija Koštrevska in Aleksandar Popovski s priznanji +
Na zgornjih dveh slikah sta gospod Branko Greganović, predsednik Uprave NLB Banke Skopje, na desni pa N.E. veleposlanik Republike Slovenije v Severni Makedoniji, gospod Gregor Presker. Na spodnjih slikah so predsednik Kristijan Popovski, Melita Sekulovska, Lea Janačkovska, Marija Koštrevska in Aleksandar Popovski.
+
+ +

Veleposlaništvu in NLB Banki smo s pomočjo podjetja Dijag doo izdelali tudi dve plaketi v znak hvaležnosti za vso pomoč in podporo, ki sta nam jo nudila.

+ +
+ Plaketi za NLB Banko Skopje in Veleposlaništvo Republike Slovenije +
Fotografija plaket, ki smo jih podarili NLB Banki Skopje in Veleposlaništvu Republike Slovenije v Severni Makedoniji.
+
+ +

Zakaj je bilo posebno?

+

Zato ker ta dogodek ni bil le še ena predstavitev. Bil je iztegnjena roka bodočim študentom – sporočilo, da niso sami, da jih skupnost že čaka. Nekateri so odšli z novimi prijatelji, drugi s konkretnimi odgovori na vprašanja, ki so jih mučila mesece. Vsi pa so odšli z enakim občutkom: da Slovenija ni več neznan kraj, ampak nov dom, v katerem bodo del nečesa večjega.

+ +
+ Udeleženci dogodka +
Fotografije prisotnih na dogodku!
+
+ +
+

»Dogodek je bil zame »game changer«, saj sem končno dobil informacije, ki so mi resnično pomagale spoznati študentsko Slovenijo namesto še enega kupa brošur. Panel je bil super, sproščen, s pogovori o najboljših mestih za izhode, dneh, preživetih v knjižnici, življenju v študentskih domovih in klasični zgodbi »zaspal sem pred izpitom«... P.S. In mreženje, mreženje je bilo vrhunsko – brez nerodne tišine.«

+
— Borjan Jovanovski, bodoči študent in udeleženec dogodka
+
+ +

Praktični nasveti iz prve roke

+

Poseben trenutek dogodka je bil nagovor konzula Veleposlaništva Republike Slovenije v Severni Makedoniji, gospoda Martina Glazarja. Na kratko je predstavil najpomembnejše korake postopka za pridobitev začasnega dovoljenja za prebivanje – eno največjih skrbi in izzivov za vse tuje študente v Sloveniji. Na ta način so bodoči študenti dobili jasnejšo sliko o tem, kaj jih čaka in kako se lažje spopasti z administrativnimi postopki.

+ +
+ Konzul seznanja študente s postopkom pridobitve začasnega dovoljenja za prebivanje +
Fotografija konzula, ki na zanimiv način seznanja študente s postopkom pridobitve začasnega dovoljenja za prebivanje!
+
+ +

Za tiste, ki niso bili fizično prisotni z nami

+

Ni vsem uspelo biti prisotnim v dvorani, zato smo se potrudili, da nihče ne bi ostal brez te izkušnje. Dogodek smo prenašali v živo preko naše Facebook strani, posnetek pa je še vedno na voljo. Če želite doživeti vzdušje in slišati zgodbe iz prve roke, si lahko celoten dogodek ogledate na tej povezavi tukaj.

+ +
+ Plakat za dogodek 'Spoznaj študentsko Slovenijo' +
Fotografija plakata za dogodek!
+
+ +

Se vidimo v Sloveniji!

+

Z »Spoznaj študentsko Slovenijo 2023« smo uspeli podati roko novim študentom in jim pokazati, da pred njimi stoji vznemirljivo potovanje, polno novih prijateljstev, izzivov in uspehov. Iskreno upamo, da se bomo naslednjič srečali prav tam – v predavalnicah, študentskih domovih in na ulicah Ljubljane, Maribora in Kopra.

+

Ta dogodek ne bi bil mogoč brez podpore naših partnerjev in prijateljev, katerim izrekamo veliko zahvalo:

+
    +
  1. Veleposlaništvo Republike Slovenije v Severni Makedoniji (partner)
  2. +
  3. NLB Banka Skopje (glavni sponzor in pokrovitelj)
  4. +
  5. Capital Financial Center (sponzor)
  6. +
  7. Dijag doo (sponzor)
  8. +
  9. Radio MOF (medijski partner)
  10. +
+

Hvala vsem, ki ste bili del tega dogodka – in bodočim študentom sporočamo: vaša zgodba v Sloveniji se šele začenja in mi smo tukaj, da smo del nje.

+ +
+ Majhen del ekipe MŠOS +
Fotografija majhnega dela ekipe, ker smo pozabili, da se vsi skupaj slikamo!🤪
+
+
+ +
+
+
+
+ Avatar Kristijana Popovskega +
+

Kristijan Popovski

+

Predsednik in ustanovitelj

+
+
+ +
+
+
+ +
+
+
+

Pridružite se 2.000+ naročnikom

+

Ostanite na tekočem z vsem, kar morate vedeti.

+ +

Skrbimo za vaše podatke v naši politiki zasebnosti.

+
+
+
+
+ + + + + + + + \ No newline at end of file diff --git a/si/projects/meet-student-slovenia-2024/index.html b/si/projects/meet-student-slovenia-2024/index.html new file mode 100644 index 0000000..625858a --- /dev/null +++ b/si/projects/meet-student-slovenia-2024/index.html @@ -0,0 +1,275 @@ + + + + + + Spoznaj študentsko Slovenijo 2024 - MŠOS + + + + + + + + + + + + + + + + + + +
+
+
+

Objavljeno 16. septembra 2024

+

Spoznaj študentsko Slovenijo 2024

+

Ko se študentske zgodbe spremenijo v prvi korak proti novemu domu.

+
+ +
+ Skupina študentov na dogodku 'Spoznaj študentsko Slovenijo 2024' +
+ +
+

Po uspehu v letu 2023 se je »Spoznaj študentsko Slovenijo« letos vrnil z še večjo energijo. 16. septembra 2024 smo v NLB Galeriji Skopje organizirali drugo izdajo dogodka, ki je postal prava tradicija. Zanimanje je bilo ogromno – imeli smo dvakrat več prijav, kot je zmogljivost prostora. Vzdušje je bilo polno navdušenja, vprašanj in želje po novih začetkih.

+ +

»Kofetkanje« z bodočimi kolegi, a na panelni razpravi

+

Naš cilj nikoli ni bil delati »suhih predstavitev«. Namesto tega smo organizirali panel – pravi pogovor s štirimi študenti, ki že živijo slovensko študentsko življenje. Marija Koštrevska z Univerze v Ljubljani, Vasil Hanџiski z Univerze v Mariboru, Sofija Matovska z Univerze v Novi Gorici in Igor Arsov z Univerze na Primorskem so govorili o vsem: o prvih dneh daleč od doma, o tem, kako najti nastanitev, kaj so študentski »boni« in kako izgleda gradnja novega kroga prijateljev. Vsak je delil nekaj svojega, občinstvo pa je spraševalo in se vključevalo – čisto kot kofetkanje.

+ +
+ Panelna razprava z govorci +
Fotografija moderatorja in panelistov v naslednjem vrstnem redu: Klimentina Čapovska (levo, moderator), Vasil Hanџiski, Marija Koštrevska, Igor Arsov in Sofija Matovska.
+
+ +
+ Marija Koštrevska in Sofija Matovska pripovedujeta o svojih študentskih izkušnjah v Sloveniji. +
Marija Koštrevska (na zgornji sliki) in Sofija Matovska (na spodnji sliki) pripovedujeta o svojih študentskih izkušnjah v Sloveniji.
+
+ +

Kaj je ostalo za nami

+

Ta večer ni bila le izmenjava informacij. Bil je trenutek, ko so bodoči študenti razumeli, da niso sami v svojih skrbeh in strahovih. Vsako vprašanje je dobilo odgovor iz izkušenj, vsaka dilema je bila razrešena s primerom iz resničnega življenja. Mnogi so odšli opogumljeni, z novimi prijatelji in z občutkom, da Slovenija ni več tako oddaljena in neznana.

+ +
+ Marko Ivanovski, voditelj dogodka +
Marko Ivanovski, voditelj dogodka.
+
+
+ Lea Janačkovska, koordinatorka dogodka +
Lea Janačkovska, koordinatorka dogodka.
+
+
+ Marko Arsov, predavatelj +
Marko Arsov, predavatelj.
+
+ +
+ Predstavniki Veleposlaništva, Upravnega odbora NLB Banke in Upravnega odbora MŠOS. +
Na spodnji sliki so predstavniki Veleposlaništva, Upravnega odbora NLB Banke in Upravnega odbora MŠOS.
+
+ +

Podpora, ki je naredila razliko

+

»Spoznaj študentsko Slovenijo 2024« ne bi bil takšen brez pomoči naših partnerjev in prijateljev. Veliko zahvalo izrekamo Veleposlaništvu Republike Slovenije v Severni Makedoniji, NLB Banki Skopje kot pokrovitelju in glavnemu sponzorju celotnega dogodka ter Capital Financial Centru, ki so s svojo podporo omogočili izvedbo dogodka na tako visoki ravni.

+ +
+ Novo natisnjene nalepke MŠOS +
Fotografija novo natisnjenih nalepk MŠOS.
+
+ +
+ Predaja cvetja v znak zahvale Veleposlaništvu, Capital Financial Centru in NLB Banki Skopje +
Fotografija s predaje cvetja v znak zahvale Veleposlaništvu, Capital Financial Centru in NLB Banki Skopje.
+
+ +

Posebno zahvalo si zasluži ekipa MŠOS, ki je tedne neutrudno delala na pripravah – od prvotne ideje do zadnje podrobnosti večera. Predvsem pa veliko priznanje Lei Janačkovski, koordinatorki dogodka, ki je s svojo energijo, potrpežljivostjo in organizacijskimi sposobnostmi poskrbela, da je vsak košček padel na svoje mesto.

+

Tokratne spomine na večer dolgujemo Hristini Trakovski, ki je bila fotografinja in je poskrbela, da so vsi ti trenutki ostali zabeleženi in jih lahko ponovno podoživimo skozi fotografije.

+ +
+ Pozdravni govor N.E. veleposlanika gospoda Gregorja Preskerja. +
Fotografija pozdravnega govora N.E. veleposlanika gospoda Gregorja Preskerja.
+
+ +

Zakaj je bilo posebno?

+

Zato ker ta dogodek ni bil le še ena predstavitev. Bil je iztegnjena roka bodočim študentom – sporočilo, da niso sami, da jih skupnost že čaka. Nekateri so odšli z novimi prijatelji, drugi s konkretnimi odgovori na vprašanja, ki so jih mučila mesece. Vsi pa so odšli z enakim občutkom: da Slovenija ni več neznan kraj, ampak nov dom, v katerem bodo del nečesa večjega.

+ +
+ Udeleženci postavljajo vprašanja panelistom +
Trenutki, ko udeleženci postavljajo vprašanja panelistom!😊✨
+
+ +

Za tiste, ki niso bili fizično prisotni z nami

+

Vemo, da vsem ni uspelo biti prisotnim v NLB Galeriji, zato smo zagotovili kakovosten prenos v živo. Dogodek je bil prenašan v živo in je zdaj na voljo za ponovni ogled. Če želite občutiti vzdušje in slišati iskrene zgodbe s panela, si lahko celoten dogodek ogledate na tej povezavi Poglej video tukaj.

+ +
+ Plakat za dogodek 'Spoznaj študentsko Slovenijo' +
Fotografija plakata za dogodek!
+
+ +

Se vidimo v Sloveniji!

+

»Spoznaj študentsko Slovenijo« ni samo dogodek. Je prostor, kjer bodoči študenti naredijo prvi korak – s podporo, z nasveti iz prve roke in z občutkom, da niso sami. In letos nam je uspelo ustvariti ta občutek, kar je največja zmaga.

+

Se vidimo ponovno prihodnje leto!

+

P.S. Vsako leto se po uspešno organiziranem dogodku ekipa MŠOS tradicionalno odpravi v najbližjo gostilno, na večer, poln druženja, petja in čustev! 😊 Zato se splača biti del naše ekipe! Pridruži se nam.

+
+ + +
+
+
+
+ Avatar Kristijana Popovskega +
+

Kristijan Popovski

+

Predsednik in ustanovitelj

+
+
+ +
+
+
+ +
+
+
+

Pridružite se 2.000+ naročnikom

+

Ostanite na tekočem z vsem, kar morate vedeti.

+ +

Skrbimo za vaše podatke v naši politiki zasebnosti.

+
+
+
+
+ + + + + + + \ No newline at end of file diff --git a/si/projects/morning-coffee-in-front-of-ctk/index.html b/si/projects/morning-coffee-in-front-of-ctk/index.html index 6234a9a..eef5cfc 100644 --- a/si/projects/morning-coffee-in-front-of-ctk/index.html +++ b/si/projects/morning-coffee-in-front-of-ctk/index.html @@ -18,6 +18,7 @@ + +
@@ -148,6 +150,7 @@ +

@@ -234,6 +237,7 @@
+ diff --git a/si/projects/testproject/index.html b/si/projects/testproject/index.html index 0db4ffd..a96d876 100644 --- a/si/projects/testproject/index.html +++ b/si/projects/testproject/index.html @@ -18,6 +18,7 @@ + +
@@ -144,6 +146,7 @@ +

@@ -233,6 +236,7 @@
+ diff --git a/templates/en/footer.html b/templates/en/footer.html new file mode 100644 index 0000000..857ecd5 --- /dev/null +++ b/templates/en/footer.html @@ -0,0 +1,54 @@ + + + \ No newline at end of file diff --git a/templates/en/header.html b/templates/en/header.html new file mode 100644 index 0000000..0afbf2d --- /dev/null +++ b/templates/en/header.html @@ -0,0 +1,67 @@ + + + \ No newline at end of file diff --git a/templates/mk/footer.html b/templates/mk/footer.html new file mode 100644 index 0000000..79847f4 --- /dev/null +++ b/templates/mk/footer.html @@ -0,0 +1,54 @@ + + + \ No newline at end of file diff --git a/templates/mk/header.html b/templates/mk/header.html new file mode 100644 index 0000000..8a63137 --- /dev/null +++ b/templates/mk/header.html @@ -0,0 +1,67 @@ + + + \ No newline at end of file diff --git a/templates/si/footer.html b/templates/si/footer.html new file mode 100644 index 0000000..2fa695b --- /dev/null +++ b/templates/si/footer.html @@ -0,0 +1,54 @@ + + + \ No newline at end of file diff --git a/templates/si/header.html b/templates/si/header.html new file mode 100644 index 0000000..8d42695 --- /dev/null +++ b/templates/si/header.html @@ -0,0 +1,67 @@ + + + \ No newline at end of file diff --git a/update_html.py b/update_html.py new file mode 100644 index 0000000..91af0da --- /dev/null +++ b/update_html.py @@ -0,0 +1,206 @@ +import os +import re +import argparse +import shutil + +# --- Konfiguracija skripte --- +PROJECT_ROOT = os.path.dirname(os.path.abspath(__file__)) # Predvideva, da je skripta v root direktoriju projekta +TEMPLATES_DIR_NAME = "templates" +LANGUAGES = ['en', 'si', 'mk'] + +HEADER_TEMPLATE_NAME = "header.html" +FOOTER_TEMPLATE_NAME = "footer.html" + +# Označevalci, ki jih skripta išče v HTML datotekah +HEADER_START_MARKER = "" +HEADER_END_MARKER = "" +FOOTER_START_MARKER = "" +FOOTER_END_MARKER = "" + +# Placeholder za relativne poti v predlogah +ROOT_PREFIX_PLACEHOLDER = "{{ROOT_PREFIX}}" + +# --- Pomožne funkcije --- + +def load_template(lang, template_type): + """ + Naloži vsebino predloge (header ali footer) za določen jezik. + """ + template_path = os.path.join(PROJECT_ROOT, TEMPLATES_DIR_NAME, lang, f"{template_type}.html") + try: + with open(template_path, 'r', encoding='utf-8') as f: + content = f.read() + + # Preveri, ali predloga vsebuje označevalce, ki jih bo skripta uporabljala + if template_type == 'header' and not (HEADER_START_MARKER in content and HEADER_END_MARKER in content): + raise ValueError(f"Predloga za glavo '{template_path}' mora vsebovati '{HEADER_START_MARKER}' in '{HEADER_END_MARKER}'.") + if template_type == 'footer' and not (FOOTER_START_MARKER in content and FOOTER_END_MARKER in content): + raise ValueError(f"Predloga za nogo '{template_path}' mora vsebovati '{FOOTER_START_MARKER}' in '{FOOTER_END_MARKER}'.") + + return content + except FileNotFoundError: + print(f"Napaka: Predloga '{template_path}' ni najdena.") + return None + except ValueError as e: + print(f"Napaka pri predlogi: {e}") + return None + except Exception as e: + print(f"Nepredvidena napaka pri nalaganju predloge '{template_path}': {e}") + return None + +def find_html_files(root_dir): + """ + Rekurzivno poišče vse HTML datoteke v določenem korenskem imeniku. + Vrne seznam absolutnih poti do datotek. + """ + html_files = [] + for dirpath, _, filenames in os.walk(root_dir): + for filename in filenames: + if filename.endswith(".html"): + html_files.append(os.path.join(dirpath, filename)) + return html_files + +def calculate_root_prefix(file_path): + """ + Izračuna relativno pot od dane HTML datoteke do korenskega imenika projekta. + Npr. za /project_root/si/projects/article/index.html vrne '../../..' + """ + relative_path = os.path.relpath(file_path, PROJECT_ROOT) + + # Izloči ime datoteke in jezikovno mapo, da dobimo globino + path_parts = relative_path.split(os.sep) + + # Odštej 1 za jezikovno mapo (npr. 'si') in 1 za samo datoteko 'index.html' + # path_parts = ['si', 'projects', 'article', 'index.html'] -> depth = 3 + # root_prefix = '../../..' + depth = len(path_parts) - 1 # -1, ker ne štejemo 'index.html' + + if depth <= 0: + return "./" # Datoteka je v korenski jezikovni mapi (npr. si/index.html) + else: + return "../" * depth + +def process_file(file_path, lang_templates, dry_run=False): + """ + Prebere HTML datoteko, nadomesti header in footer z vsebino predlog + in zapiše spremenjeno datoteko. + """ + print(f"Obdelujem datoteko: {file_path}") + + try: + with open(file_path, 'r', encoding='utf-8') as f: + content = f.read() + except Exception as e: + print(f" Napaka pri branju datoteke '{file_path}': {e}") + return + + original_content = content # Shrani originalno vsebino za primer, če se nič ne spremeni + + # Izlušči jezikovno kodo iz poti datoteke + lang_code = file_path.split(os.sep)[-len(os.path.relpath(file_path, PROJECT_ROOT).split(os.sep))] + + # Pridobi predloge za trenutni jezik + header_template = lang_templates.get(lang_code, {}).get('header') + footer_template = lang_templates.get(lang_code, {}).get('footer') + + if not header_template or not footer_template: + print(f" Opozorilo: Predloge za jezik '{lang_code}' niso naložene ali so nepopolne. Preskakujem.") + return + + # Izračunaj root prefix za to datoteko + root_prefix = calculate_root_prefix(file_path) + + # Pripravi predloge z ustreznim root prefixom + formatted_header = header_template.replace(ROOT_PREFIX_PLACEHOLDER, root_prefix) + formatted_footer = footer_template.replace(ROOT_PREFIX_PLACEHOLDER, root_prefix) + + # --- Zamenjava Headerja --- + header_pattern = re.compile(rf"{re.escape(HEADER_START_MARKER)}.*?{re.escape(HEADER_END_MARKER)}", re.DOTALL) + if header_pattern.search(content): + # formatted_header že vsebuje START in END markerje + content = header_pattern.sub(formatted_header, content) + else: + print(f" Opozorilo: Označevalcev za glavo (header) ni mogoče najti v '{file_path}'.") + + # --- Zamenjava Footerja --- + footer_pattern = re.compile(rf"{re.escape(FOOTER_START_MARKER)}.*?{re.escape(FOOTER_END_MARKER)}", re.DOTALL) + if footer_pattern.search(content): + # formatted_footer že vsebuje START in END markerje + content = footer_pattern.sub(formatted_footer, content) + else: + print(f" Opozorilo: Označevalcev za nogo (footer) ni mogoče najti v '{file_path}'.") + + if content != original_content: + if dry_run: + print(f" DRY RUN: Datoteka '{file_path}' bi bila spremenjena.") + # Za dry run lahko izpišeš del spremenjene vsebine ali diff + # print("--- Diff (prvih 20 vrstic) ---") + # import difflib + # diff = difflib.unified_diff(original_content.splitlines(keepends=True), content.splitlines(keepends=True), fromfile='original', tofile='modified') + # for i, line in enumerate(diff): + # if i >= 20: break + # print(line.strip()) + # print("-----------------------------") + else: + # Ustvari varnostno kopijo pred spremembami + backup_path = file_path + ".bak" + try: + shutil.copy2(file_path, backup_path) + print(f" Varnostna kopija ustvarjena: {backup_path}") + except Exception as e: + print(f" Napaka pri ustvarjanju varnostne kopije za '{file_path}': {e}") + + try: + with open(file_path, 'w', encoding='utf-8') as f: + f.write(content) + print(f" Datoteka uspešno posodobljena: {file_path}") + except Exception as e: + print(f" Napaka pri zapisovanju v datoteko '{file_path}': {e}") + else: + print(f" Datoteka '{file_path}' je že posodobljena ali ni potrebovala sprememb.") + +# --- Glavna funkcija --- + +def main(): + parser = argparse.ArgumentParser(description="Avtomatizirano posodabljanje headerja in footerja v HTML datotekah.") + parser.add_argument("--dry-run", action="store_true", help="Izvede posodobitev, vendar ne zapisuje sprememb v datoteke.") + args = parser.parse_args() + + # Naloži vse predloge za vse jezike + all_lang_templates = {} + for lang in LANGUAGES: + header_template = load_template(lang, 'header') + footer_template = load_template(lang, 'footer') + if header_template and footer_template: + all_lang_templates[lang] = {'header': header_template, 'footer': footer_template} + else: + print(f"Opozorilo: Predloge za jezik '{lang}' so nepopolne. Datoteke v tem jeziku ne bodo obdelane.") + + if not all_lang_templates: + print("Ni naloženih veljavnih predlog za noben jezik. Skripta se ustavi.") + return + + # Obdelaj HTML datoteke po jezikih + for lang in LANGUAGES: + if lang not in all_lang_templates: + continue # Preskoči, če predloge za ta jezik niso bile uspešno naložene + + lang_dir = os.path.join(PROJECT_ROOT, lang) + if not os.path.isdir(lang_dir): + print(f"Opozorilo: Jezikovna mapa '{lang_dir}' ne obstaja. Preskakujem.") + continue + + print(f"\n--- Začenjam obdelavo HTML datotek za jezik: {lang.upper()} ---") + html_files = find_html_files(lang_dir) + + if not html_files: + print(f" V mapi '{lang_dir}' ni najdenih HTML datotek.") + continue + + for file_path in html_files: + process_file(file_path, all_lang_templates, args.dry_run) + + print("\n--- Obdelava zaključena ---") + +if __name__ == "__main__": + main() \ No newline at end of file