"./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 { /* To je pomembno, da ostane prazno ali brez overflow-x: hidden */ overflow-x: hidden; /* Dodano za preprečevanje horizontalnega drsenja, ki ga body morda ne ujame. */ } body { font-family: 'Inter', sans-serif; margin: 0; background-color: #FFFFFF; color: #101828; overflow-x: hidden; /* Preprečuje horizontalno drsenje na telesu strani */ } /* NOVO (zamenjaj znotraj _base.css): */ html.nav-open, html.nav-open body { 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; white-space: nowrap; /* KLJUČNA SPREMEMBA: Prepreči prelamljanje besedila */ } /* 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, navigacija) - POSODOBLJENO * 3. Gumbi in akcije v glavi (vključno z izbiro jezika) * 4. Stili za namizni "dropdown" meni * 5. Stili za mobilno glavo in "accordion" meni * 6. Stili za modalno okno za izbiro jezika na mobilnih napravah */ /* 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, navigacija) - POSODOBLJENO */ .logo-link .logo-img { height: 32px; width: auto; display: block; /* Za zanesljivo obnašanje */ } /* Nov ovoj za desno stran glave */ .header-right-wrapper { display: flex; align-items: center; gap: 24px; /* Razmik med navigacijo in gumbi */ } /* Osnovna struktura navigacije */ .navigation { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; height: 100%; width: 100%; } .navigation .menu-item { position: relative; height: 100%; display: flex; align-items: center; } /* Povezave v glavnem meniju */ .navigation > .menu-item > a { text-decoration: none; color: #667085; font-weight: 600; font-size: 16px; padding: 0 16px; /* Prilagojen padding */ height: 100%; display: flex; align-items: center; transition: color 0.2s ease-in-out; white-space: nowrap; } .navigation > .menu-item > a:hover { color: #101828; } /* Poudarjanje aktivne strani na namizju */ .navigation .menu-item.active-page > a { color: #2D738C; } /* Puščica za podmeni */ .navigation .menu-item-has-children > a::after { content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 12px; transition: transform 0.3s ease-in-out; margin-left: 8px; } /* 3. Gumbi in akcije v glavi */ .navigation-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; } .language-selector { position: relative; cursor: pointer; } .current-lang { display: flex; align-items: center; gap: 8px; color: #646E82; padding: 8px; border-radius: 6px; transition: background-color 0.2s ease-in-out; } .current-lang:hover { background-color: #F9FAFB; } .current-lang span { font-weight: 600; } .current-lang .fa-chevron-down { transition: transform 0.3s ease-in-out; } .lang-dropdown { display: block; position: absolute; top: calc(100% + 8px); 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; opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s; } .language-selector.active .lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0); } .language-selector.active .current-lang .fa-chevron-down { transform: rotate(180deg); } .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. Stili za namizni "dropdown" meni */ .dropdown-menu { position: absolute; top: 100%; left: 50%; background-color: #FFFFFF; border: 1px solid #EAECF0; list-style: none; margin: 8px 0 0 0; padding: 8px; min-width: 260px; border-radius: 12px; box-shadow: 0 12px 24px -4px rgba(16, 24, 40, 0.08); z-index: 1000; opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(10px); transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s; } .navigation .menu-item:hover > .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); } .navigation .menu-item:hover > a::after { transform: rotate(180deg); } .dropdown-menu li { padding: 0; } .dropdown-menu a { display: block; padding: 12px 16px; color: #344054; text-decoration: none; font-weight: 500; font-size: 16px; border-radius: 6px; transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out; white-space: nowrap; } .dropdown-menu a:hover { background-color: #F9FAFB; color: #2D738C; } .mobile-menu-icon, .mobile-nav-panel { display: none; } /* ========================================================================== 5. Stili za mobilno glavo in "accordion" meni ========================================================================== */ @media (max-width: 1024px) { .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; } /* Skrij nov ovoj za desno stran na mobilni napravi */ .header-right-wrapper { display: none; } .mobile-menu-icon { display: block; font-size: 24px; color: #101828; cursor: pointer; z-index: 1003; } .mobile-menu-icon .fa-times { display: none; } html.nav-open .mobile-menu-icon .fa-bars { display: none; } html.nav-open .mobile-menu-icon .fa-times { display: block; } .mobile-nav-panel { display: flex; flex-direction: column; position: fixed; top: 60px; left: 0; width: 100%; height: calc(100vh - 60px); background: #FFFFFF; padding: 24px; box-sizing: border-box; transform: translateX(100%); transition: transform 0.3s ease-in-out; z-index: 1001; overflow-y: auto; } html.nav-open .mobile-nav-panel { transform: translateX(0); } .mobile-nav-panel .navigation.mobile-nav { display: flex; flex-direction: column; align-items: stretch; width: 100%; gap: 0; padding-bottom: 24px; border-bottom: none; } .mobile-nav .menu-item { display: block; height: auto; border-bottom: 1px solid #EAECF0; } .mobile-nav .menu-item:first-of-type { border-top: 1px solid #EAECF0; } .mobile-nav .menu-item > a { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 16px; font-size: 20px; color: #101828; font-weight: 600; height: auto; box-sizing: border-box; } .mobile-nav .menu-item.active-page > a { color: #2D738C; font-weight: 700; border-left: 3px solid #2D738C; padding-left: 13px; background-color: transparent; } .mobile-nav .dropdown-menu { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: none; background-color: transparent; width: 100%; min-width: auto; margin: 0; padding: 0 0 8px 0; max-height: 0; overflow: hidden; transition: max-height 0.3s ease-in-out; } .mobile-nav .menu-item.open > .dropdown-menu { max-height: 500px; } .mobile-nav .dropdown-menu ul { padding: 0; margin: 0; list-style: none; } .mobile-nav .dropdown-menu li { padding: 0; } .mobile-nav .dropdown-menu a { display: block; padding: 12px 16px 12px 45px; color: #344054; font-weight: 500; font-size: 18px; border-radius: 6px; white-space: normal; } .mobile-nav .dropdown-menu a:hover { background-color: #F9FAFB; } .mobile-nav .menu-item:hover > .dropdown-menu { opacity: 1; visibility: visible; transform: none; } .mobile-nav .menu-item:hover > a::after { transform: none; } html.nav-open .mobile-nav .menu-item.open > a::after { transform: rotate(180deg); } .mobile-nav-panel .navigation-actions { display: flex; flex-direction: column; gap: 16px; width: 100%; margin-top: 32px; padding-top: 32px; border-top: 1px solid #EAECF0; } .mobile-nav-panel .navigation-actions .btn { width: 100%; max-width: 340px; align-self: center; } .mobile-nav-panel .language-selector .current-lang { justify-content: center; width: 100%; max-width: 340px; margin: 0 auto; background-color: #F9FAFB; border: 1px solid #EAECF0; box-sizing: border-box; } .mobile-nav-panel .lang-dropdown { display: none; } } /* ========================================================================== 6. Stili za modalno okno za izbiro jezika ========================================================================== */ #language-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(16, 24, 40, 0.6); z-index: 2000; display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; } #language-modal-overlay.active { opacity: 1; visibility: visible; } .language-modal-content { background-color: #FFFFFF; border-radius: 16px; padding: 24px; width: 90%; max-width: 400px; box-shadow: 0 12px 24px -4px rgba(16, 24, 40, 0.08); transform: scale(0.95); transition: transform 0.3s ease; } #language-modal-overlay.active .language-modal-content { transform: scale(1); } .language-modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; } .language-modal-header h3 { margin: 0; font-size: 20px; font-weight: 600; color: #101828; } #language-modal-close { background: none; border: none; font-size: 24px; color: #667085; cursor: pointer; padding: 4px; line-height: 1; } .language-modal-body { display: flex; flex-direction: column; gap: 12px; } .language-modal-body a { display: block; padding: 12px 16px; text-align: center; text-decoration: none; font-size: 18px; font-weight: 500; color: #344054; background-color: #F9FAFB; border: 1px solid #EAECF0; border-radius: 8px; transition: background-color 0.2s ease, border-color 0.2s ease; } .language-modal-body a:hover, .language-modal-body a.active-lang { background-color: #FFFFFF; border-color: #2D738C; color: #2D738C; }""" "./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'; @import 'pages/_about.css'; @import 'pages/_timeline.css';""" "./css/pages/_about.css" : """ /* css/pages/_about.css */ /* ========================================================================== About Us Page Specific Styles (Redesign) ========================================================================== */ /** * This file contains styles used exclusively on the "Our team, mission, vision & core values" page. * * 1. Leadership Team Section * 2. Our Core Values Section * 3. Mission and Vision Section * 4. Call to Action (FAQ) Section * 5. Mobile Styles for the page */ /* ========================================================================== 1. Leadership Team Section ========================================================================== */ .team-section { padding: 48px 80px 96px; background-color: #FFFFFF; text-align: center; } .team-section .page-header-section { padding: 0; margin-bottom: 64px; } .team-grid { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; max-width: 1280px; margin: 0 auto; } .member-card { position: relative; width: 326px; height: 400px; border-radius: 16px; overflow: hidden; color: #FFFFFF; background-size: cover; background-position: center; transition: transform 0.3s ease-in-out; } .member-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 60%; background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%); z-index: 1; transition: opacity 0.3s ease-in-out; } .member-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: #2D738C; opacity: 0; z-index: 2; transition: opacity 0.3s ease-in-out; } .member-content { position: absolute; top: 0; left: 0; width: 100%; height: 100%; padding: 24px; box-sizing: border-box; display: flex; flex-direction: column; justify-content: center; align-items: center; z-index: 3; } .member-socials { display: flex; gap: 32px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0.3s; } .member-socials a { color: #FFFFFF; font-size: 32px; text-decoration: none; transition: color 0.2s ease, transform 0.2s ease; } .member-socials a:hover { color: #FA7850; transform: scale(1.1); } .member-info { text-align: center; transform: translateY(115px); transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); } .member-card h4 { margin: 0 0 4px 0; font-size: 24px; font-weight: 600; line-height: 29px; text-transform: uppercase; } .member-card .role { margin: 0; font-size: 16px; font-weight: 500; color: #FFE16E; text-transform: uppercase; } /* Hover effects only for devices that support it (desktops) */ @media (hover: hover) { .member-card:hover::before { opacity: 0.8; } .member-card:hover::after { opacity: 0; } .member-card:hover .member-socials { opacity: 1; visibility: visible; transform: translateY(0); transition: opacity 0.3s 0.1s ease, transform 0.3s 0.1s ease, visibility 0s 0s; } .member-card:hover .member-info { transform: translateY(40px); } } #member-kristijan { background-image: url('../../images/about_kristijan.webp'); } #member-lea { background-image: url('../../images/about_lea.webp'); } #member-marko { background-image: url('../../images/about_marko.webp'); } #member-marija { background-image: url('../../images/about_marija.webp'); } #member-monika { background-image: url('../../images/about_monika.webp'); } /* ========================================================================== 2. Our Core Values Section ========================================================================== */ .core-values-section { padding: 80px 80px 120px; background-color: #F9FAFB; } .core-values-section > .page-header-section { padding: 0; margin-bottom: 64px; background: transparent; text-align: center; } .core-values-section > .page-header-section h2 { font-size: 36px; font-weight: 600; line-height: 44px; letter-spacing: -0.02em; color: #101828; } .core-values-section > .page-header-section p { font-size: 20px; line-height: 30px; color: #667085; max-width: 768px; margin: 20px auto 0; } .values-container { max-width: 1062px; margin: 0 auto; display: flex; flex-direction: column; gap: 64px; } .value-row { display: flex; align-items: center; gap: 24px; } .value-row:nth-child(even) { flex-direction: row-reverse; } .value-image { flex-basis: 519px; flex-shrink: 0; } .value-image img { width: 100%; height: 270px; border-radius: 16px; object-fit: cover; } .value-content { flex: 1; text-align: left; max-width: 519px; } .value-content h3 { font-size: 24px; font-weight: 600; line-height: 1.2; color: #101828; margin: 0 0 16px 0; } .value-content p { font-size: 16px; line-height: 24px; color: #667085; margin: 0; } /* ========================================================================== 3. Mission and Vision Section ========================================================================== */ .mission-vision-section { padding: 96px 80px; background-color: #FFFFFF; } .mission-vision-section .page-header-section { margin-bottom: 48px; padding: 0; } .mission-vision-section .page-header-section h2 { font-size: 36px; font-weight: 600; color: #101828; text-align: center; } .mission-vision-grid { display: flex; justify-content: center; gap: 40px; max-width: 1060px; margin: 0 auto; } .mission-box, .vision-box { position: relative; flex: 1; height: 200px; background: #F9FAFB; border-radius: 12px; cursor: pointer; overflow: hidden; } .box-content { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; padding: 40px; box-sizing: border-box; text-align: center; transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out; } .box-content p { font-family: 'Inter', sans-serif; font-size: 18px; line-height: 1.2; color: #667085; margin: 0; } .box-content img { width: 100%; height: 100%; object-fit: contain; } .mission-icon-content, .vision-icon-content { padding: 0; } /* --- Animation Logic --- */ .mission-text-content { opacity: 1; transform: translateY(0); } .mission-icon-content { opacity: 0; transform: translateY(20px); } .vision-text-content { opacity: 0; transform: translateY(20px); } .vision-icon-content { opacity: 1; transform: translateY(0); } @media (hover: hover) { .mission-vision-grid.show-vision .mission-text-content { opacity: 0; transform: translateY(-20px); } .mission-vision-grid.show-vision .mission-icon-content { opacity: 1; transform: translateY(0); } .mission-vision-grid.show-vision .vision-text-content { opacity: 1; transform: translateY(0); } .mission-vision-grid.show-vision .vision-icon-content { opacity: 0; transform: translateY(-20px); } } /* ========================================================================== 4. Call to Action (FAQ) Section ========================================================================== */ .faq-cta-section { padding: 96px 80px; background-color: #FFFFFF; } .faq-cta-container { max-width: 1280px; margin: 0 auto; padding: 40px 32px; background-color: #F9FAFB; border-radius: 16px; display: flex; flex-direction: column; align-items: center; gap: 32px; } .avatar-group { display: flex; position: relative; width: 120px; height: 56px; justify-content: center; align-items: center; } .avatar { width: 48px; height: 48px; border-radius: 50%; border: 2px solid #FFFFFF; position: absolute; object-fit: cover; } .avatar:nth-child(1) { left: 0; z-index: 1;} .avatar:nth-child(2) { left: 50%; transform: translateX(-50%); z-index: 2;} .avatar:nth-child(3) { right: 0; z-index: 1;} .avatar.large { width: 56px; height: 56px; } .faq-cta-container h3 { font-size: 20px; font-weight: 500; color: #101828; margin: 0; margin-top: -8px; } .faq-cta-container p { font-size: 18px; line-height: 28px; color: #667085; margin: -24px 0 0 0; } /* ========================================================================== 5. Mobile Styles for About Us Page ========================================================================== */ @media (max-width: 1024px) { .team-grid { max-width: 700px; } .values-container { gap: 64px; } .value-row { gap: 32px; } .value-image { flex-basis: 45%; min-width: 0; } } @media (max-width: 768px) { .team-section, .core-values-section, .mission-vision-section, .faq-cta-section { padding: 64px 24px; } .team-section .page-header-section { margin-bottom: 48px; } .team-grid { flex-direction: column; align-items: center; gap: 24px; } .member-card { width: 100%; max-width: 326px; height: 400px; } /* Core Values on Mobile */ .core-values-section .page-header-section { margin-bottom: 48px; } .core-values-section > .page-header-section h2 { font-size: 32px; line-height: 40px; } .core-values-section > .page-header-section p { font-size: 18px; line-height: 28px; } .values-container { gap: 48px; } .value-row, .value-row:nth-child(even) { flex-direction: column; gap: 24px; } .value-row .value-content { order: 1; } .value-row .value-image { order: 2; } .value-image { width: 100%; flex-basis: auto; } .value-content { text-align: center; max-width: 100%; } .value-content h3 { font-size: 24px; line-height: 32px; } .value-content p { font-size: 16px; line-height: 26px; } /* Mission and Vision on Mobile */ .mission-vision-grid { flex-direction: column; gap: 24px; } .mission-box, .vision-box { cursor: default; height: auto; padding: 32px; } .box-content { position: static; transform: none !important; opacity: 1 !important; padding: 0; } .mission-box, .vision-box { display: flex; flex-direction: column; gap: 16px; } .mission-icon-content, .vision-icon-content { order: 1; opacity: 1 !important; /* Ensure icons are visible */ transform: none !important; } .mission-text-content, .vision-text-content { order: 2; opacity: 1 !important; /* Ensure text is visible */ transform: none !important; } .faq-cta-container { padding: 32px; } .faq-cta-container h3 { font-size: 18px; } .faq-cta-container p { font-size: 16px; line-height: 24px; } }""" "./css/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 (z levo navigacijo) * 2. Lepljiva leva navigacija (Scrollspy - Desktop) * 3. Lepljiva zgornja vrstica z naslovom in progress barom (Mobile) * 4. Glava članka (naslov, podnaslov, datum) * 5. Glavna slika in slike v vsebini * 6. Telo članka (vsebina, tipografija, citati) * 7. Noga članka (avtor, deljenje) * 8. Poziv k prijavi na novice (CTA) * 9. Stili za stran s člankom na mobilnih napravah */ /* ========================================================================== 1. Glavna postavitev strani članka ========================================================================== */ .article-page { padding-top: 80px; background: #FFFFFF; } .article-layout-container { display: flex; max-width: 1280px; margin: 0 auto; padding: 0 32px; gap: 64px; align-items: flex-start; } .article-container { flex-grow: 1; min-width: 0; padding: 96px 0; } /* ========================================================================== 2. Lepljiva leva navigacija (Scrollspy - Desktop) - POSODOBLJENO ========================================================================== */ .article-sidebar { width: 288px; flex-shrink: 0; position: sticky; top: 120px; height: calc(100vh - 140px); margin-top: 48px; /* NOVO: Doda začetni odmik od vrha */ } .scrollspy-nav { height: 100%; overflow-y: auto; } .scrollspy-nav ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 20px; border-left: 2px solid #EAECF0; } .scrollspy-nav li a { display: block; padding: 12px 24px; text-decoration: none; font-size: 16px; font-weight: 500; color: #667085; border-left: 2px solid transparent; margin-left: -2px; transition: all 0.2s ease-in-out; } .scrollspy-nav li a:hover { color: #101828; background-color: #F9FAFB; } .scrollspy-nav li a.active { color: #2D738C; font-weight: 600; border-left-color: #2D738C; background-color: transparent; } /* ========================================================================== 3. Lepljiva zgornja vrstica (Mobile) ========================================================================== */ .mobile-article-header { display: none; position: sticky; top: 60px; background-color: #FFFFFF; z-index: 900; border-bottom: 1px solid #EAECF0; padding: 12px 24px; cursor: pointer; justify-content: space-between; align-items: center; -webkit-tap-highlight-color: transparent; } .mobile-article-header .fa-chevron-down { transition: transform 0.3s ease-in-out; } .mobile-article-header.open .fa-chevron-down { transform: rotate(180deg); } #mobile-article-title { font-size: 14px; font-weight: 600; color: #101828; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex-grow: 1; padding-right: 16px; } .progress-bar-container { width: 100%; height: 3px; background-color: #EAECF0; position: absolute; bottom: -1px; left: 0; } .progress-bar { width: 0%; height: 100%; background-color: #2D738C; transition: width 0.1s linear; } .mobile-scrollspy-dropdown { position: absolute; top: 100%; left: 0; width: 100%; background: #FFFFFF; border-top: 1px solid #EAECF0; box-shadow: 0 4px 6px rgba(0,0,0,0.05); max-height: 0; overflow: hidden; opacity: 0; visibility: hidden; transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s; } .mobile-scrollspy-dropdown.open { max-height: 50vh; opacity: 1; visibility: visible; overflow-y: auto; } .mobile-scrollspy-dropdown ul { list-style: none; padding: 8px; margin: 0; } .mobile-scrollspy-dropdown a { display: block; padding: 12px 16px; text-decoration: none; color: #344054; font-size: 16px; font-weight: 500; border-radius: 6px; white-space: normal; } .mobile-scrollspy-dropdown a:hover, .mobile-scrollspy-dropdown a.active { background-color: #F9FAFB; color: #2D738C; } /* ========================================================================== 4. 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; } /* ========================================================================== 5. 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; } /* ========================================================================== 6. 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; scroll-margin-top: 120px; } .article-body ol { padding-left: 24px; display: flex; flex-direction: column; gap: 12px; } .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; } /* ========================================================================== 7. 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; } /* ========================================================================== 8. 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; } /* ========================================================================== 9. Mobile Article Page Styles ========================================================================== */ @media (max-width: 768px) { .article-page { padding-top: 60px; } .article-layout-container { flex-direction: column; padding: 0; gap: 0; } .article-sidebar { display: none; } .mobile-article-header { display: flex; } .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; scroll-margin-top: 120px; } .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. Partners Section * 3. Meet the Team Section * 4. Activities Section * 5. Latest News Section * 6. Testimonials Section * 7. Become Part Section (vključno z obrazcem) * 8. FAQ Section * 9. 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; background: url('../../images/HeroSection-img1.webp') no-repeat center center/cover; /* POPRAVLJENO */ filter: blur(2px); } .hero-image-left, .hero-image-right { display: none; } .hero-overlay { position: absolute; top: 0; left: 0; height: 100%; width: 100%; background: rgba(45, 115, 140, 0.64); z-index: 2; } .hero-content { position: relative; z-index: 3; color: #FFFFFF; width: 100%; max-width: 1000px; margin: 0 auto; text-align: center; padding: 0 24px; } .hero-content .badge-group { display: inline-flex; align-items: center; padding: 8px 24px; gap: 12px; background: rgba(255, 255, 255, 0.4); border-radius: 24px; margin-bottom: 32px; } .hero-content .message { font-weight: 400; font-size: 18px; } .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. Partners Section */ .partners-section { background: #FFFFFF; padding: 64px 0; } .partners-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; gap: 64px; flex-wrap: wrap; } .partners-container img { max-height: 56px; width: auto; object-fit: contain; } /* 3. 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; } /* 4. 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; } /* 5. 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; } /* 6. 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; } /* 7. 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; } /* 8. 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; } /* ========================================================================== 9. Mobile Home Page Styles ========================================================================== */ @media (max-width: 768px) { /* Mobile Hero Section */ .hero-section { height: 600px; margin-top: 0; align-items: flex-start; } .hero-background { background: url('../../images/HeroSection-img1.webp') no-repeat center center/cover; /* POPRAVLJENO */ } .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 Partners Section */ .partners-section { padding: 40px 24px; } .partners-container { gap: 32px; justify-content: center; } .partners-container img { max-height: 40px; flex-basis: 40%; } /* 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; } }""" "./css/pages/_timeline.css" : """ /* ========================================================================== Timeline Page Specific Styles ========================================================================== */ /** * This file contains styles used exclusively on the Timeline & Milestones page. * * 1. Timeline container and line * 2. Timeline items and markers * 3. Timeline content (text and images) * 4. Mobile Styles for Timeline */ /* 1. Timeline container and line */ .timeline-section { padding: 96px 0; background: #FFFFFF; } .timeline-banner { max-width: 1280px; margin: 0 auto 96px; padding: 0 32px; box-sizing: border-box; } .timeline-banner img { width: 100%; height: auto; border-radius: 16px; object-fit: cover; } .timeline-container { position: relative; max-width: 1110px; margin: 0 auto; padding: 0 32px; } /* Navpična črta je bila odstranjena z izbrisom pravila .timeline-container::before */ /* 2. Timeline items and markers */ .timeline-item { position: relative; padding-left: 88px; margin-bottom: 64px; } .timeline-item:last-child { margin-bottom: 0; } .timeline-marker { position: absolute; left: 40px; top: 6px; width: 16px; height: 16px; border-radius: 2px; transform: translateX(-50%) rotate(45deg); background-color: #FA7850; z-index: 2; /* Ensure markers are above the line */ } .timeline-marker.milestone { width: 12px; height: 12px; top: 8px; border-radius: 50%; background-color: #D0D5DD; transform: translateX(-50%) rotate(0deg); } /* 3. Timeline content */ .timeline-entry { position: relative; } .timeline-content .timeline-year, .timeline-content .timeline-date { font-family: 'Inter', sans-serif; font-weight: 600; color: #FA7850; margin: 0 0 12px 0; } .timeline-content .timeline-year { font-size: 18px; line-height: 28px; } .timeline-content .timeline-date { font-size: 16px; line-height: 24px; } .timeline-content h2, .timeline-content h3 { font-size: 30px; font-weight: 600; color: #101828; margin: 0 0 16px 0; } .timeline-content h3 { font-size: 24px; } .timeline-content p { font-size: 18px; line-height: 28px; color: #667085; margin: 0 0 1em 0; } .timeline-content p:last-child { margin-bottom: 0; } .timeline-content ul { list-style-type: none; padding-left: 24px; margin: 1em 0; } .timeline-content li { font-size: 18px; line-height: 28px; color: #667085; margin-bottom: 0.5em; position: relative; } .timeline-content li::before { content: '•'; color: #FA7850; font-weight: bold; display: inline-block; width: 1em; margin-left: -1em; position: absolute; left: -12px; } /* ========================================================================== Mobile Timeline Styles ========================================================================== */ @media (max-width: 768px) { .timeline-section { padding: 64px 0; } .timeline-banner { padding: 0 24px; margin-bottom: 64px; } .timeline-container { padding: 0 24px; } .timeline-item { padding-left: 56px; margin-bottom: 48px; } .timeline-marker, .timeline-marker.milestone { left: 24px; } .timeline-content h2 { font-size: 24px; } .timeline-content h3 { font-size: 20px; } .timeline-content p, .timeline-content li { font-size: 16px; line-height: 26px; } }""" "./en/about-us/index.html" : """ Our Team, Mission, Vision & Core Values - MSOS

Select Language

About us

Our team, mission, vision & core values

MSOS is more than an organization - it is the energy of the team behind it. Our members are the heart and driving force that inspires us, writing this story and shaping student life in Slovenia.

Leadership team

Kristijan Popovski

FOUNDER AND PRESIDENT

Lea Janachkovska

HUMAN RESOURCES

Marko Arsov

EVENT MANAGER

Marija Koshtrevska

IT COORDINATOR

Monika Velinova

SECRETARY

Our core values

Our shared values keep us connected and guide us as one team.

Volunteer spirit

The strength of MSOS comes from giving our time and energy selflessly. Every project, event, and idea in MSOS is built on the hard work of our amazing volunteers. Our volunteer spirit is a testament to the dedication, passion, and collaborative energy of our community and the reason why we grow stronger together.

A group of volunteers working together with positive energy.
Students supporting each other in a friendly and caring manner.

Solidarity & care for each other

We are more than a group of students, but a family. We look after one another and support each other not just with studies, but also with everyday challenges. We are here to listen, help, and celebrate successes together. It's about giving without expecting anything in return and creating a safe, warm, and uplifting environment where everyone feels they belong.

Love for our roots & ambition for the future

We are proud of where we come from and carry our Macedonian heritage with us, while striving for a brighter future. Our roots give us strength, and our ambition pushes us forward. Our ambition drives us to be professional, innovative, and influential leaders and role models in our host country.

A blend of traditional Macedonian culture and modern ambitious students.

Mission and Vision

The mission of MSOS is to represent the interests, improve the lives, and ease the studies of Macedonian students in the Republic of Slovenia.

Mission Icon

The vision of the MSOS is to provide a voice, a home, and support for Macedonian students in the Republic of Slovenia, while encouraging their active involvement in projects of common interest.

Vision Icon
Avatar of Marija Avatar of Kristijan Avatar of Lea

Have any questions?

Can't find the answer you're looking for? Please chat to our friendly team.

See all FAQs
""" "./en/about-us/index.html.bak" : """ Our Team, Mission, Vision & Core Values - MSOS

Select Language

About us

Our team, mission, vision & core values

MSOS is more than an organization - it is the energy of the team behind it. Our members are the heart and driving force that inspires us, writing this story and shaping student life in Slovenia.

Leadership team

Kristijan Popovski

Founder and President

Lea Janachkovska

Board Member

Marko Arsov

Board Member

Marija Koshtrevska

Board Member

Monika Velinova

Board Member

Our core values

Our shared values keep us connected and guide us as one team.

Volunteer spirit

The strength of MSOS comes from giving our time and energy selflessly. Every project, event, and idea in MSOS is built on the hard work of our amazing volunteers. Our volunteer spirit is a testament to the dedication, passion, and collaborative energy of our community and the reason why we grow stronger together.

A group of volunteers working together with positive energy.
Students supporting each other in a friendly and caring manner.

Solidarity & care for each other

We are more than a group of students, but a family. We look after one another and support each other not just with studies, but also with everyday challenges. We are here to listen, help, and celebrate successes together. It's about giving without expecting anything in return and creating a safe, warm, and uplifting environment where everyone feels they belong.

Love for our roots & ambition for the future

We are proud of where we come from and carry our Macedonian heritage with us, while striving for a brighter future. Our roots give us strength, and our ambition pushes us forward. Our ambition drives us to be professional, innovative, and influential leaders and role models in our host country.

A blend of traditional Macedonian culture and modern ambitious students.

Mission and Vision

The mission of MSOS is to represent the interests, improve the lives, and ease the studies of Macedonian students in the Republic of Slovenia.

Mission Icon

The vision of the MSOS is to provide a voice, a home, and support for Macedonian students in the Republic of Slovenia, while encouraging their active involvement in projects of common interest.

Vision Icon
Avatar of Marija Avatar of Kristijan Avatar of Lea

Have any questions?

Can't find the answer you're looking for? Please chat to our friendly team.

See all FAQs
""" "./en/index.html" : """ Macedonian Student Organisation in Slovenia

Select Language

First official Macedonian Student Organisation in Slovenia

Empowering young people with skills to change the world

Be part of our exciting journey; Become a part of our student organization today!

Slovenian Embassy in Skopje logo University of Ljubljana School of Economics and Business logo NLB Banka logo Embassy of North Macedonia in Slovenia logo
Team members collaborating

Every Student Has a Story – Here’s Ours

Curious about what MSOS is all about? This video tells our story—fast, fun, and from the heart. See what makes MSOS special in our video—and hit “Learn more” to be part of the story.

Learn more

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 Support
  • Fun & Social Life
  • Education & Culture
  • Student Representation

We know moving to a new country can feel overwhelming, so we’re here to make it easier. From helping you with university applications to finding your way around student life in Slovenia, you can always count on us. We offer free consultations, answer your questions on Instagram and Facebook (yes, even late at night), and host events where you can meet others and hear real experiences first-hand. With mentorship, info sessions, and a friendly community by your side, you’ll never have to go through the journey alone.

Students receiving support and guidance

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 all

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 wanted to know about studying and living in Slovenia — in one place.

How can I get a student visa or residence permit?

Quick guide on what documents you need and how long it takes.

What is the cost of living & housing in Slovenia?

See average monthly expenses and where to find affordable housing.

Can I study in English, or do I need Slovene language?

Find out which programs are in English—and when learning Slovene helps.

Are there part-time jobs available? Can I work while studying?

Learn about the student work possibilities and how to manage it while studying.

What student benefits and discounts are available?

Ever heard of ‘Boni’? Student meal coupons that make eating out more affordable and planty more.

What are tuition fees and are there scholarships?

Info on tuition ranges and where to look for funding or fee waivers.

""" "./en/index.html.bak" : """ Macedonian Student Organisation in Slovenia

Select Language

First official Macedonian Student Organisation in Slovenia

Empowering young people with skills to change the world

Be part of our exciting journey; Become a part of our student organization today!

Slovenian Embassy in Skopje logo University of Ljubljana School of Economics and Business logo NLB Banka logo Embassy of North Macedonia in Slovenia logo
Team members collaborating

Every Student Has a Story – Here’s Ours

Curious about what MSOS is all about? This video tells our story—fast, fun, and from the heart. See what makes MSOS special in our video—and hit “Learn more” to be part of the story.

Learn more

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 Support
  • Fun & Social Life
  • Education & Culture
  • Student Representation

We know moving to a new country can feel overwhelming, so we’re here to make it easier. From helping you with university applications to finding your way around student life in Slovenia, you can always count on us. We offer free consultations, answer your questions on Instagram and Facebook (yes, even late at night), and host events where you can meet others and hear real experiences first-hand. With mentorship, info sessions, and a friendly community by your side, you’ll never have to go through the journey alone.

Students receiving support and guidance

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 all

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 wanted to know about studying and living in Slovenia — in one place.

How can I get a student visa or residence permit?

Quick guide on what documents you need and how long it takes.

What is the cost of living & housing in Slovenia?

See average monthly expenses and where to find affordable housing.

Can I study in English, or do I need Slovene language?

Find out which programs are in English—and when learning Slovene helps.

Are there part-time jobs available? Can I work while studying?

Learn about the student work possibilities and how to manage it while studying.

What student benefits and discounts are available?

Ever heard of ‘Boni’? Student meal coupons that make eating out more affordable and planty more.

What are tuition fees and are there scholarships?

Info on tuition ranges and where to look for funding or fee waivers.

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

Select Language

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/index.html.bak" : """ Projects - Macedonian Student Organisation in Slovenia

Select Language

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

Select Language

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/macedonian-student-night-in-ljubljana/index.html.bak" : """ Macedonian Student Night in Ljubljana - MSOS

Select Language

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" : """ Македонска студентска вечер во Љубљана - МСОС

Select Language

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Select Language

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

""" "./en/projects/meet-student-slovenia-2023/index.html" : """ Meet Student Slovenia 2023 - MSOS

Select Language

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. NLB Bank Skopje (main sponsor and patron)
  3. Capital Financial Center (sponsor)
  4. Dijag doo (sponsor)
  5. Radio MOF (media partner)

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

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/meet-student-slovenia-2023/index.html.bak" : """ Meet Student Slovenia 2023 - MSOS

Select Language

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. NLB Bank Skopje (main sponsor and patron)
  3. Capital Financial Center (sponsor)
  4. Dijag doo (sponsor)
  5. Radio MOF (media partner)

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

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/meet-student-slovenia-2024/index.html" : """ Meet Student Slovenia 2024 - MSOS

Select Language

Meet Student Slovenia 2024

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 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

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/meet-student-slovenia-2024/index.html.bak" : """ Meet Student Slovenia 2024 - MSOS

Select Language

Meet Student Slovenia 2024

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 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

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/morning-coffee-in-front-of-ctk/index.html" : """ Morning Coffee in front of CTK – 2024: Coffee, burek, and lots of smiles

Select Language

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/morning-coffee-in-front-of-ctk/index.html.bak" : """ Morning Coffee in front of CTK – 2024: Coffee, burek, and lots of smiles

Select Language

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

Select Language

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/testproject/index.html.bak" : """ Macedonian Student Night in Ljubljana - MSOS

Select Language

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/timeline-and-milestones/index.html" : """ Timeline & Milestones - Macedonian Student Organisation in Slovenia

Select Language

About us

Timeline & Milestones

Learn more about the company and the team behind it.

MSOS Team Group Photo

2022

The Beginning of a Movement

What started as a simple idea in the summer of 2022 quickly grew into something much bigger. From the spark at a wine tasting in Ljubljana, to the first Macedonian Student Party with over 500 attendees, and finally the creation of the founding team, 2022 was the year when MSOS was born. It was a year of enthusiasm, countless volunteer hours, and the first steps toward building a community that Macedonian students in Slovenia had long been waiting for.

August 2022

The Spark of an Idea

It all started at a wine tasting event in the heart of Ljubljana. Among friends and good conversation, our founder Kristijan Popovski was encouraged by his Slovenian peers to organize something truly Macedonian. Inspired, he posted in a Facebook group of Macedonians living in Slovenia, calling for volunteers to help bring the idea to life.

Around 40 volunteers responded — a group of students who, without even realizing it, were laying the foundations of what would later become MSOS. Day after day, we worked side by side, sharing the same air, fueled by excitement and the desire to create something new. At that point, we weren't thinking about “founding an organization" — we were just a group of people trying to make one unforgettable event happen.

Two weeks later, the first Macedonian Student Party in Ljubljana came to life. Expectations were exceeded: sponsors and donors joined in, volunteers gave their all, and more than 500 people showed up.

That night made one thing very clear: Macedonian students in Slovenia needed a space to connect, celebrate, and support one another. And from that realization, MSOS was born.

October 2022

From One Event to a Bigger Vision

After the success of the first Macedonian Student Party in Ljubljana, something changed. What began as a one-time event sparked a new energy among us. The group of volunteers who had worked side by side suddenly felt there was more to be done.

We started holding regular meetings and brainstorming sessions, often lasting late into the evening. In those small rooms, surrounded by notes and ideas scribbled on paper, we began to shape a bigger vision. We talked about what Macedonian students in Slovenia truly needed — not just parties, but support, connection, and a community they could rely on.

Those early sessions gave birth to our mission and vision. We didn't yet call ourselves an “organization," but we were slowly becoming one. What kept us going was the same spirit that created the first party — the belief that, together, we could make student life in Slovenia easier, warmer, and more meaningful.

November 2022

The Founding Team

From the energy of the first events, a smaller circle of the most dedicated volunteers decided to take things further. They realized that for MSOS to grow, it needed structure, direction, and continuity. That was the moment when the first coordinating body was born — the group that would soon become the founding team of the organization.

This first team was made up of: Kristijan Popovski, Bisera Nikoloska, Marko Arsov, Ksenija Kraljevska, Aleksandar Balkoski, Kiara Lazić, Evgenija Kolovska, Dijana Dimkovska, Hristijan Bogdanovski, and Stefan Gjurovski. Each one brought something unique to the table — from leadership and creativity to organizational skills and dedication.

Together, they laid down the mission and vision, drafted the first structure, and set the foundations of what would grow into the official Macedonian Student Organization in Slovenia. At that time, no one could have imagined how quickly MSOS would evolve, but this team ensured that the idea would not remain just one successful party — it would become a movement.

2023

From Idea to Tradition

The year 2023 marked the transformation of MSOS from an emerging initiative into a recognizable student network. In March, we stepped into the public eye and immediately expanded beyond Ljubljana to Maribor and Koper. By September, we had already crossed borders with our first major panel event in Skopje, connecting future students with those already studying in Slovenia. 2023 was the year when MSOS stopped being just an idea and began building traditions that continue to grow today.

March 2023

Going Public

On March 5, 2023, we officially introduced MSOS to the public as a student initiative. What had begun as an idea and a few events was now ready to be presented as something bigger — a movement with a clear mission and vision.

The launch was more than just an announcement. It was the moment when Macedonian students in Slovenia realized they had their own platform, their own voice, and a community they could call home. Through social media, word of mouth, and our first public activities, we reached students who until then felt scattered and disconnected.

For us as organizers, this was a defining step: MSOS was no longer just an idea among friends, but a name and a promise that other students could recognize and join. From that day on, everything became more serious — new projects, structured communication, and the understanding that we had a responsibility to represent and support our community.

March 2023

Growing Beyond Ljubljana

The public launch of MSOS in March 2023 did more than just make us visible — it sparked a wave of interest across Slovenia. Very quickly, students from Maribor and Koper reached out, asking how they could get involved. What began as individual messages soon grew into local teams, ready to bring the MSOS spirit to their own cities.

This moment showed us that the need for community wasn't limited to Ljubljana. Macedonian students everywhere were looking for connection, support, and a network they could trust. With Maribor and Koper on board, MSOS transformed from a local initiative into a nationwide student presence, active across Slovenia's major university centers.

September 2023

"Meet Student Slovenia 2023"

In September 2023, MSOS took a bold step — for the first time, we organized a panel event outside Slovenia, in Skopje. The idea was simple but powerful: bring together future students and their parents, and connect them directly with those already living and studying in Slovenia.

The turnout exceeded all expectations. More than 100 participants filled the NLB Gallery, eager to hear real stories; not from brochures or officials, but from students themselves. They spoke about everyday challenges, from housing and paperwork to making friends and building a new life far from home. The honesty of their experiences created an atmosphere that felt more like a family gathering than a formal event.

For many of the attendees, this was the first time they realized they were not alone in their worries. Questions that had been weighing on them for months found clear answers, and fears were replaced with excitement. For us as organizers, it was proof that MSOS was fulfilling its mission: to be the bridge between Macedonia and Slovenia, offering support even before students set foot in their new city.

2024

From Recognition to Responsibility

In 2024, MSOS grew into a fully recognized and nationwide student organization. We expanded to Nova Gorica, officially registered as an association on September 9, and organized our first international conference in Skopje. With Tour de Maribor on October 12, our local teams showed new energy and initiative, while on November 17 we signed a Memorandum of Cooperation with the Student Assembly of UKIM in Skopje. 2024 was the year MSOS gained legitimacy, broadened its reach, and strengthened its role as a bridge between students in Slovenia and Macedonia.

May 2024

Expanding to Nova Gorica

By the spring of 2024, MSOS had already built a strong presence in Ljubljana, Maribor, and Koper. But one important piece was still missing: Nova Gorica. In May, we officially welcomed our first members from the University of Nova Gorica — students full of energy, motivation, and new perspectives.

For us, this expansion was more than just adding another city to the map. It symbolized the fact that MSOS was now present in all four major university centers in Slovenia. It meant that no matter where Macedonian students chose to study; from Ljubljana to the western border of the country, they could count on support, community, and a familiar face.

The arrival of the Nova Gorica team brought fresh energy and ideas into our organization, reminding us once again that MSOS is not only about structure, but about people who are ready to help each other and grow together.

September 2024

Official Registration

On September 9, 2024, MSOS was officially registered in the Slovenian register of associations. This milestone marked a historic moment for us: from a student initiative built on enthusiasm and volunteer spirit, we became a legally recognized organization.

The registration gave us legitimacy to act as an institution, to run projects with legal backing, and to collaborate formally with universities, government bodies, and other organizations. For our team, it was more than a piece of paper — it was the confirmation that all the effort, countless volunteer hours, and shared vision had grown into something real and lasting.

That day we celebrated not just a legal status, but a sense of pride. MSOS was no longer just "our idea;" it became an organization that belongs to every Macedonian student in Slovenia.

First MSOS Conference

Only a few weeks after our official registration, on September 25, 2024, MSOS took another bold step, organizing its first official conference in Skopje: "From Slovenia to North Macedonia: Synergy of Education and Business."

The event brought together three different worlds — students, government, and the business sector, around one shared question: How can young people educated abroad be motivated to return and contribute at home?

The program was divided into three panels:

  • Youth Panel – where students educated in Slovenia shared their hopes, challenges, and perspectives on returning to Macedonia.
  • Government Panel – discussing policies for brain gain and the role of institutions in supporting young professionals.
  • Business Panel – focusing on how companies can create opportunities and incentives for returning graduates.

The discussions touched on education, career opportunities, fair pay, and quality of life, the very factors that shape whether young people see a future in their home country.

For MSOS, this conference was more than an event. It was proof that our organization can go beyond student parties and support groups, and become a credible voice in debates about youth, education, and the future of Macedonia. It was a moment when we showed that student initiatives can grow into platforms that connect countries, generations, and sectors.

October 2024

Tour de Maribor

On October 12, 2024, our Maribor team organized its first event — Tour de Maribor. The idea was to welcome new students by turning the entire city into a playground. Teams of participants received maps with 10 checkpoints, each offering a fun challenge: solving quizzes, making TikToks, trading random items, or snapping creative photos with Maribor's landmarks.

The adventure lasted for more than five hours and ended with prizes, music, and new friendships. But what mattered most wasn't the competition — it was the atmosphere. Strangers became teammates, teammates became friends, and Maribor students felt the spirit of MSOS as their own.

That day, something bigger was born: the MSOS spirit in Maribor. A new strength and initiative emerged, showing once again that MSOS isn't just about one city — it's about students everywhere who want to build a community together.

November 2024

Memorandum of Cooperation

On International Students' Day, November 17, 2024, MSOS and the University Student Assembly at Ss. Cyril and Methodius University in Skopje signed a Memorandum of Cooperation.

With this step, we confirmed our joint commitment to improving student standards, strengthening regional cooperation, and creating a bridge for sharing best practices between Macedonia and Slovenia.

The memorandum symbolized more than a formal agreement — it was a recognition that Macedonian students abroad and at home share the same challenges and hopes. By working together, we opened a path for stronger collaboration, exchange of experiences, and building a student voice that crosses borders.

2025

A Year of Community and New Beginnings

In 2025, MSOS strengthened its presence across Slovenia with the first independent events from our teams in Nova Gorica and Koper. We stood in solidarity with Macedonia through peaceful gatherings and humanitarian actions, proving that our community is about more than student life alone. And with the upcoming opening of our first Student Hub in Ljubljana, 2025 marks a year of both unity and exciting new beginnings.

March 2025

Paint & Wine in Nova Gorica

On International Women's Day, March 8, 2025, our team in Nova Gorica organized its very first independent event — a creative and vibrant Paint & Wine evening. With canvases, brushes, and a glass of wine in hand, students painted while enjoying the sunset accompanied by a live DJ set.

The event was more than just art and music. It was a celebration of creativity, diversity, and the energy of young people coming together in a relaxed and inspiring setting. For MSOS, it was also a proud milestone: proof that our local teams are not only active, but able to design and carry out unique events that reflect their own spirit and community.

MSOS Koper's First Event – Handball Fan Zone

On March 16, 2025, our MSOS Koper team organized its first event, a Fan Zone for the European Handball Championship qualification match between Macedonia and Slovenia. In cooperation with the Macedonian Handball Federation, we brought students together with face paints, red and yellow flags, Macedonian beer, and even arranged two buses from Ljubljana to Koper to cheer as one.

Sadly the event sadly stopped by the tragic news from Kochani. Despite this, the event showed the strength of our community and the passion of MSOS Koper in creating spaces where students unite and celebrate their identity.

March-April 2025

Solidarity for Kočani in difficult times

In March and April 2025, MSOS stood together with the Macedonian community after the tragic events in Kočani. In Ljubljana, more than 700 people gathered in a peaceful vigil, filling the city square with candles and compassion. Soon after, our team in Maribor organized a charity basketball and football tournament, raising over €1,000 to support the families whose children were receiving treatment in Slovenia.

These moments reminded us that MSOS is not only about projects and events, but also about solidarity, empathy, and standing by our people in difficult times.

October 2025

Coming Soon – MSOS Student Hub in Ljubljana

The next big step for MSOS is the opening of our first Student Hub in Ljubljana this October. It will be a space for students to meet, work on projects, socialize, and create new ideas together. The Hub is envisioned as the new heart of our organization — a symbol of the community we have built and continue to grow.

""" "./en/timeline-and-milestones/index.html.bak" : """ Timeline & Milestones - Macedonian Student Organisation in Slovenia

Select Language

About us

Timeline & Milestones

Learn more about the company and the team behind it.

MSOS Team Group Photo

2022

The Beginning of a Movement

What started as a simple idea in the summer of 2022 quickly grew into something much bigger. From the spark at a wine tasting in Ljubljana, to the first Macedonian Student Party with over 500 attendees, and finally the creation of the founding team, 2022 was the year when MSOS was born. It was a year of enthusiasm, countless volunteer hours, and the first steps toward building a community that Macedonian students in Slovenia had long been waiting for.

August 2022

The Spark of an Idea

It all started at a wine tasting event in the heart of Ljubljana. Among friends and good conversation, our founder Kristijan Popovski was encouraged by his Slovenian peers to organize something truly Macedonian. Inspired, he posted in a Facebook group of Macedonians living in Slovenia, calling for volunteers to help bring the idea to life.

Around 40 volunteers responded — a group of students who, without even realizing it, were laying the foundations of what would later become MSOS. Day after day, we worked side by side, sharing the same air, fueled by excitement and the desire to create something new. At that point, we weren't thinking about “founding an organization" — we were just a group of people trying to make one unforgettable event happen.

Two weeks later, the first Macedonian Student Party in Ljubljana came to life. Expectations were exceeded: sponsors and donors joined in, volunteers gave their all, and more than 500 people showed up.

That night made one thing very clear: Macedonian students in Slovenia needed a space to connect, celebrate, and support one another. And from that realization, MSOS was born.

October 2022

From One Event to a Bigger Vision

After the success of the first Macedonian Student Party in Ljubljana, something changed. What began as a one-time event sparked a new energy among us. The group of volunteers who had worked side by side suddenly felt there was more to be done.

We started holding regular meetings and brainstorming sessions, often lasting late into the evening. In those small rooms, surrounded by notes and ideas scribbled on paper, we began to shape a bigger vision. We talked about what Macedonian students in Slovenia truly needed — not just parties, but support, connection, and a community they could rely on.

Those early sessions gave birth to our mission and vision. We didn't yet call ourselves an “organization," but we were slowly becoming one. What kept us going was the same spirit that created the first party — the belief that, together, we could make student life in Slovenia easier, warmer, and more meaningful.

November 2022

The Founding Team

From the energy of the first events, a smaller circle of the most dedicated volunteers decided to take things further. They realized that for MSOS to grow, it needed structure, direction, and continuity. That was the moment when the first coordinating body was born — the group that would soon become the founding team of the organization.

This first team was made up of: Kristijan Popovski, Bisera Nikoloska, Marko Arsov, Ksenija Kraljevska, Aleksandar Balkoski, Kiara Lazić, Evgenija Kolovska, Dijana Dimkovska, Hristijan Bogdanovski, and Stefan Gjurovski. Each one brought something unique to the table — from leadership and creativity to organizational skills and dedication.

Together, they laid down the mission and vision, drafted the first structure, and set the foundations of what would grow into the official Macedonian Student Organization in Slovenia. At that time, no one could have imagined how quickly MSOS would evolve, but this team ensured that the idea would not remain just one successful party — it would become a movement.

2023

From Idea to Tradition

The year 2023 marked the transformation of MSOS from an emerging initiative into a recognizable student network. In March, we stepped into the public eye and immediately expanded beyond Ljubljana to Maribor and Koper. By September, we had already crossed borders with our first major panel event in Skopje, connecting future students with those already studying in Slovenia. 2023 was the year when MSOS stopped being just an idea and began building traditions that continue to grow today.

March 2023

Going Public

On March 5, 2023, we officially introduced MSOS to the public as a student initiative. What had begun as an idea and a few events was now ready to be presented as something bigger — a movement with a clear mission and vision.

The launch was more than just an announcement. It was the moment when Macedonian students in Slovenia realized they had their own platform, their own voice, and a community they could call home. Through social media, word of mouth, and our first public activities, we reached students who until then felt scattered and disconnected.

For us as organizers, this was a defining step: MSOS was no longer just an idea among friends, but a name and a promise that other students could recognize and join. From that day on, everything became more serious — new projects, structured communication, and the understanding that we had a responsibility to represent and support our community.

March 2023

Growing Beyond Ljubljana

The public launch of MSOS in March 2023 did more than just make us visible — it sparked a wave of interest across Slovenia. Very quickly, students from Maribor and Koper reached out, asking how they could get involved. What began as individual messages soon grew into local teams, ready to bring the MSOS spirit to their own cities.

This moment showed us that the need for community wasn't limited to Ljubljana. Macedonian students everywhere were looking for connection, support, and a network they could trust. With Maribor and Koper on board, MSOS transformed from a local initiative into a nationwide student presence, active across Slovenia's major university centers.

September 2023

"Meet Student Slovenia 2023"

In September 2023, MSOS took a bold step — for the first time, we organized a panel event outside Slovenia, in Skopje. The idea was simple but powerful: bring together future students and their parents, and connect them directly with those already living and studying in Slovenia.

The turnout exceeded all expectations. More than 100 participants filled the NLB Gallery, eager to hear real stories; not from brochures or officials, but from students themselves. They spoke about everyday challenges, from housing and paperwork to making friends and building a new life far from home. The honesty of their experiences created an atmosphere that felt more like a family gathering than a formal event.

For many of the attendees, this was the first time they realized they were not alone in their worries. Questions that had been weighing on them for months found clear answers, and fears were replaced with excitement. For us as organizers, it was proof that MSOS was fulfilling its mission: to be the bridge between Macedonia and Slovenia, offering support even before students set foot in their new city.

2024

From Recognition to Responsibility

In 2024, MSOS grew into a fully recognized and nationwide student organization. We expanded to Nova Gorica, officially registered as an association on September 9, and organized our first international conference in Skopje. With Tour de Maribor on October 12, our local teams showed new energy and initiative, while on November 17 we signed a Memorandum of Cooperation with the Student Assembly of UKIM in Skopje. 2024 was the year MSOS gained legitimacy, broadened its reach, and strengthened its role as a bridge between students in Slovenia and Macedonia.

May 2024

Expanding to Nova Gorica

By the spring of 2024, MSOS had already built a strong presence in Ljubljana, Maribor, and Koper. But one important piece was still missing: Nova Gorica. In May, we officially welcomed our first members from the University of Nova Gorica — students full of energy, motivation, and new perspectives.

For us, this expansion was more than just adding another city to the map. It symbolized the fact that MSOS was now present in all four major university centers in Slovenia. It meant that no matter where Macedonian students chose to study; from Ljubljana to the western border of the country, they could count on support, community, and a familiar face.

The arrival of the Nova Gorica team brought fresh energy and ideas into our organization, reminding us once again that MSOS is not only about structure, but about people who are ready to help each other and grow together.

September 2024

Official Registration

On September 9, 2024, MSOS was officially registered in the Slovenian register of associations. This milestone marked a historic moment for us: from a student initiative built on enthusiasm and volunteer spirit, we became a legally recognized organization.

The registration gave us legitimacy to act as an institution, to run projects with legal backing, and to collaborate formally with universities, government bodies, and other organizations. For our team, it was more than a piece of paper — it was the confirmation that all the effort, countless volunteer hours, and shared vision had grown into something real and lasting.

That day we celebrated not just a legal status, but a sense of pride. MSOS was no longer just "our idea;" it became an organization that belongs to every Macedonian student in Slovenia.

First MSOS Conference

Only a few weeks after our official registration, on September 25, 2024, MSOS took another bold step, organizing its first official conference in Skopje: "From Slovenia to North Macedonia: Synergy of Education and Business."

The event brought together three different worlds — students, government, and the business sector, around one shared question: How can young people educated abroad be motivated to return and contribute at home?

The program was divided into three panels:

  • Youth Panel – where students educated in Slovenia shared their hopes, challenges, and perspectives on returning to Macedonia.
  • Government Panel – discussing policies for brain gain and the role of institutions in supporting young professionals.
  • Business Panel – focusing on how companies can create opportunities and incentives for returning graduates.

The discussions touched on education, career opportunities, fair pay, and quality of life, the very factors that shape whether young people see a future in their home country.

For MSOS, this conference was more than an event. It was proof that our organization can go beyond student parties and support groups, and become a credible voice in debates about youth, education, and the future of Macedonia. It was a moment when we showed that student initiatives can grow into platforms that connect countries, generations, and sectors.

October 2024

Tour de Maribor

On October 12, 2024, our Maribor team organized its first event — Tour de Maribor. The idea was to welcome new students by turning the entire city into a playground. Teams of participants received maps with 10 checkpoints, each offering a fun challenge: solving quizzes, making TikToks, trading random items, or snapping creative photos with Maribor's landmarks.

The adventure lasted for more than five hours and ended with prizes, music, and new friendships. But what mattered most wasn't the competition — it was the atmosphere. Strangers became teammates, teammates became friends, and Maribor students felt the spirit of MSOS as their own.

That day, something bigger was born: the MSOS spirit in Maribor. A new strength and initiative emerged, showing once again that MSOS isn't just about one city — it's about students everywhere who want to build a community together.

November 2024

Memorandum of Cooperation

On International Students' Day, November 17, 2024, MSOS and the University Student Assembly at Ss. Cyril and Methodius University in Skopje signed a Memorandum of Cooperation.

With this step, we confirmed our joint commitment to improving student standards, strengthening regional cooperation, and creating a bridge for sharing best practices between Macedonia and Slovenia.

The memorandum symbolized more than a formal agreement — it was a recognition that Macedonian students abroad and at home share the same challenges and hopes. By working together, we opened a path for stronger collaboration, exchange of experiences, and building a student voice that crosses borders.

2025

A Year of Community and New Beginnings

In 2025, MSOS strengthened its presence across Slovenia with the first independent events from our teams in Nova Gorica and Koper. We stood in solidarity with Macedonia through peaceful gatherings and humanitarian actions, proving that our community is about more than student life alone. And with the upcoming opening of our first Student Hub in Ljubljana, 2025 marks a year of both unity and exciting new beginnings.

March 2025

Paint & Wine in Nova Gorica

On International Women's Day, March 8, 2025, our team in Nova Gorica organized its very first independent event — a creative and vibrant Paint & Wine evening. With canvases, brushes, and a glass of wine in hand, students painted while enjoying the sunset accompanied by a live DJ set.

The event was more than just art and music. It was a celebration of creativity, diversity, and the energy of young people coming together in a relaxed and inspiring setting. For MSOS, it was also a proud milestone: proof that our local teams are not only active, but able to design and carry out unique events that reflect their own spirit and community.

MSOS Koper's First Event – Handball Fan Zone

On March 16, 2025, our MSOS Koper team organized its first event, a Fan Zone for the European Handball Championship qualification match between Macedonia and Slovenia. In cooperation with the Macedonian Handball Federation, we brought students together with face paints, red and yellow flags, Macedonian beer, and even arranged two buses from Ljubljana to Koper to cheer as one.

Sadly the event sadly stopped by the tragic news from Kochani. Despite this, the event showed the strength of our community and the passion of MSOS Koper in creating spaces where students unite and celebrate their identity.

March-April 2025

Solidarity for Kočani in difficult times

In March and April 2025, MSOS stood together with the Macedonian community after the tragic events in Kočani. In Ljubljana, more than 700 people gathered in a peaceful vigil, filling the city square with candles and compassion. Soon after, our team in Maribor organized a charity basketball and football tournament, raising over €1,000 to support the families whose children were receiving treatment in Slovenia.

These moments reminded us that MSOS is not only about projects and events, but also about solidarity, empathy, and standing by our people in difficult times.

October 2025

Coming Soon – MSOS Student Hub in Ljubljana

The next big step for MSOS is the opening of our first Student Hub in Ljubljana this October. It will be a space for students to meet, work on projects, socialize, and create new ideas together. The Hub is envisioned as the new heart of our organization — a symbol of the community we have built and continue to grow.

""" "./l.php" : """ """ "./main.js" : """ document.addEventListener('DOMContentLoaded', function() { /** * =================================================================== * 1. OSNOVNA FUNKCIONALNOST MOBILNE NAVIGACIJE * =================================================================== */ // === MOBILNI MENI: Preklop vidnosti menija === try { const icon = document.querySelector('.mobile-menu-icon'); const root = document.documentElement; if (!icon) { console.error('Mobile menu icon not found.'); } else { icon.addEventListener('click', (e) => { e.preventDefault(); e.stopPropagation(); root.classList.toggle('nav-open'); }); document.addEventListener('click', (e) => { if (root.classList.contains('nav-open') && !e.target.closest('.mobile-nav-panel') && !e.target.closest('.mobile-menu-icon')) { root.classList.remove('nav-open'); } }); document.addEventListener('keydown', (e) => { if (e.key === 'Escape') { root.classList.remove('nav-open'); } }); } } catch (err) { console.error('Error in Mobile Menu Toggle:', err); } // --- Mobilni Accordion podmeni --- try { const mobileNav = document.querySelector('.mobile-nav-panel .mobile-nav'); if (mobileNav) { const menuItemsWithChildren = mobileNav.querySelectorAll('.menu-item-has-children'); menuItemsWithChildren.forEach(item => { const link = item.querySelector('a'); if (link) { link.addEventListener('click', (event) => { if (event.currentTarget.parentElement.classList.contains('menu-item-has-children')) { event.preventDefault(); } const parentLi = event.currentTarget.parentElement; menuItemsWithChildren.forEach(otherItem => { if (otherItem !== parentLi && otherItem.classList.contains('open')) { otherItem.classList.remove('open'); } }); parentLi.classList.toggle('open'); }); } }); } } catch (error) { console.error('Error in Mobile Accordion Menu:', error); } /** * =================================================================== * 2. IZBOLJŠAVE UPORABNIŠKE IZKUŠNJE (UX/UI) * =================================================================== */ // --- Funkcija za poudarjanje aktivne povezave v navigaciji --- function highlightActiveLink() { try { const currentPath = window.location.pathname; const navLinks = document.querySelectorAll('.navigation a'); let bestMatch = null; let longestMatch = 0; navLinks.forEach(link => { if (link.closest('.dropdown-menu')) return; const linkPath = new URL(link.href, window.location.origin).pathname; if (currentPath.startsWith(linkPath) && linkPath.length > longestMatch) { longestMatch = linkPath.length; bestMatch = link; } }); if (bestMatch) { const parentMenuItem = bestMatch.closest('.menu-item'); if (parentMenuItem) { parentMenuItem.classList.add('active-page'); } } } catch (error) { console.error("Error highlighting active link:", error); } } // --- Funkcionalnost za preklopnik jezika (Desktop Dropdown + Mobile Modal) --- function setupLanguageSwitcher() { try { const path = window.location.pathname; const pathParts = path.split('/').filter(Boolean); const validLangs = ['en', 'si', 'mk']; let pathWithoutLang = '/'; if (pathParts.length > 0 && validLangs.includes(pathParts[0])) { pathWithoutLang = '/' + pathParts.slice(1).join('/'); if (path.endsWith('/') && pathWithoutLang !== '/') { pathWithoutLang += '/'; } } else { pathWithoutLang = path; } document.querySelectorAll('a[data-lang]').forEach(link => { const targetLang = link.getAttribute('data-lang'); const newUrl = `/${targetLang}${pathWithoutLang}`; link.setAttribute('href', newUrl.replace(/\/{2,}/g, '/')); }); const desktopSelectors = document.querySelectorAll('.header-right-wrapper .language-selector'); desktopSelectors.forEach(selector => { const currentLang = selector.querySelector('.current-lang'); if (currentLang) { currentLang.addEventListener('click', (event) => { event.stopPropagation(); const isActive = selector.classList.contains('active'); document.querySelectorAll('.language-selector.active').forEach(s => s.classList.remove('active')); if (!isActive) { selector.classList.add('active'); } }); } }); window.addEventListener('click', () => { desktopSelectors.forEach(s => s.classList.remove('active')); }); const mobileLangButton = document.getElementById('mobile-lang-trigger'); const languageModal = document.getElementById('language-modal-overlay'); const closeModalButton = document.getElementById('language-modal-close'); if (mobileLangButton && languageModal && closeModalButton) { mobileLangButton.addEventListener('click', (e) => { e.preventDefault(); e.stopPropagation(); languageModal.classList.add('active'); }); const closeModal = () => { languageModal.classList.remove('active'); }; closeModalButton.addEventListener('click', closeModal); languageModal.addEventListener('click', (e) => { if (e.target === languageModal) closeModal(); }); document.addEventListener('keydown', (e) => { if (e.key === 'Escape' && languageModal.classList.contains('active')) closeModal(); }); } } catch (error) { console.error('Error in Language Switcher setup:', error); } } /** * =================================================================== * 3. OSTALE FUNKCIONALNOSTI (FAQ, ACTIVITIES, ITD.) * =================================================================== */ // --- FAQ Accordion --- try { document.querySelectorAll('.faq-item h3').forEach(header => { header.addEventListener('click', () => { const faqItem = header.parentElement; faqItem.classList.toggle('open'); }); }); } catch (error) { console.error('Error in FAQ Accordion:', error); } // --- Activities Tab --- try { const activityNavItems = document.querySelectorAll('.activities-nav li'); const activityDetailsText = document.querySelector('.activity-details p'); const activityDetailsImage = document.querySelector('.activity-details img'); if (activityNavItems.length > 0 && activityDetailsText && activityDetailsImage) { const activitiesData = { 'Student Support': { text: "We know moving to a new country can feel overwhelming, so we’re here to make it easier. From helping you with university applications to finding your way around student life in Slovenia, you can always count on us. We offer free consultations, answer your questions on Instagram and Facebook (yes, even late at night), and host events where you can meet others and hear real experiences first-hand. With mentorship, info sessions, and a friendly community by your side, you’ll never have to go through the journey alone.", imgSrc: "../images/img1-08.09.2025.webp", altText: "Students receiving support and guidance" }, 'Fun & Social Life': { text: "Student life is so much more than lectures and exams — it’s about the moments in between. At MSOS, we create those moments: from parties, concerts, and casual hangouts, to cinema nights, excursions, and team-building trips. We also host talks and events where you can share ideas, meet new people, and feel part of something bigger. Whether you’re connecting with Macedonian students or making friends with Slovenians and internationals, our activities are all about building a community where you can relax, have fun, and create memories that last long after university.", imgSrc: "../images/img2-08.09.2025.webp", altText: "Students socializing and having fun at an event" }, 'Education & Culture': { text: "Studying abroad isn’t only about lectures and exams — it’s also about growing as a person. That’s why we mix learning with culture. We run study groups and small workshops where you can share knowledge and pick up new skills. At the same time, we keep our traditions alive with cultural evenings, music, food, and gatherings that remind us of home. It’s a balance: support for your studies, and a space to stay connected to who we are.", imgSrc: "../images/img3-08.09.2025.webp", altText: "An educational workshop or cultural event" }, 'Student Representation': { text: "Studying abroad comes with challenges, and sometimes students need a voice that’s heard. At MSOS, we take that role seriously. We organize meetings with government representatives, ministries, embassies, universities, and other key institutions to make sure the interests of Macedonian students in Slovenia are on the table. From campus issues to academic policies and integration, we work to solve problems, push for positive changes, and create a better experience for all of us.", imgSrc: "../images/img4-08.09.2025.webp", altText: "MSOS members representing students at a formal meeting" } }; activityNavItems.forEach(item => { item.addEventListener('click', () => { activityNavItems.forEach(navItem => navItem.classList.remove('active')); item.classList.add('active'); const activityName = item.textContent.trim(); if (activitiesData[activityName]) { activityDetailsText.textContent = activitiesData[activityName].text; activityDetailsImage.src = activitiesData[activityName].imgSrc; activityDetailsImage.alt = activitiesData[activityName].altText; } }); }); } } catch (error) { console.error('Error in Activities Tab:', error); } /** * =================================================================== * 4. INTERAKTIVNA SEKCIJA "MISSION & VISION" * =================================================================== */ try { const missionVisionContainer = document.getElementById('mission-vision-interactive'); if (missionVisionContainer) { const missionBox = missionVisionContainer.querySelector('.mission-box'); const visionBox = missionVisionContainer.querySelector('.vision-box'); missionBox.addEventListener('mouseenter', () => { missionVisionContainer.classList.remove('show-vision'); }); visionBox.addEventListener('mouseenter', () => { missionVisionContainer.classList.add('show-vision'); }); } } catch(error) { console.error('Error in Mission/Vision interaction setup:', error); } /** * =================================================================== * 5. SCROLLSPY IN PROGRESS BAR ZA STRANI ČLANKOV (POSODOBLJENO) * =================================================================== */ try { const articlePage = document.querySelector('.article-page'); if (articlePage) { const scrollspyNav = document.querySelector('.scrollspy-nav'); const mobileHeader = document.querySelector('.mobile-article-header'); const mobileTitle = document.getElementById('mobile-article-title'); const mobileDropdown = document.querySelector('.mobile-scrollspy-dropdown'); const mobileLinksContainer = document.getElementById('mobile-scrollspy-links'); const progressBar = document.querySelector('.progress-bar'); const headings = Array.from(articlePage.querySelectorAll('.article-body h2')); const desktopNavLinks = scrollspyNav ? Array.from(scrollspyNav.querySelectorAll('a')) : []; // --- Dinamično ustvarjanje mobilnega spustnega seznama --- if (headings.length > 0 && mobileLinksContainer) { headings.forEach(heading => { const listItem = document.createElement('li'); const link = document.createElement('a'); link.href = `#${heading.id}`; link.textContent = heading.textContent; listItem.appendChild(link); mobileLinksContainer.appendChild(listItem); }); } // --- Logika za odpiranje/zapiranje mobilnega spustnega seznama --- if (mobileHeader && mobileDropdown) { mobileHeader.addEventListener('click', (e) => { // Preprečimo, da se meni zapre, če kliknemo na povezavo znotraj njega if (!e.target.closest('a')) { mobileHeader.classList.toggle('open'); mobileDropdown.classList.toggle('open'); } }); // Dodamo dogodek za zapiranje menija ob kliku na povezavo mobileDropdown.querySelectorAll('a').forEach(link => { link.addEventListener('click', () => { mobileHeader.classList.remove('open'); mobileDropdown.classList.remove('open'); }); }); } // --- Logika za Progress Bar --- function updateProgressBar() { if (!progressBar) return; const scrollableHeight = document.documentElement.scrollHeight - window.innerHeight; const scrollTop = window.scrollY; if (scrollableHeight > 0) { const progress = (scrollTop / scrollableHeight) * 100; progressBar.style.width = `${progress}%`; } else { progressBar.style.width = '0%'; } } // --- Logika za Scrollspy --- if (headings.length > 0) { const observer = new IntersectionObserver((entries) => { entries.forEach(entry => { const id = entry.target.getAttribute('id'); const desktopNavLink = desktopNavLinks.find(link => link.getAttribute('href') === `#${id}`); const mobileNavLink = mobileLinksContainer ? mobileLinksContainer.querySelector(`a[href="#${id}"]`) : null; if (entry.isIntersecting) { // Posodobi namizno navigacijo if (desktopNavLink) { desktopNavLinks.forEach(link => link.classList.remove('active')); desktopNavLink.classList.add('active'); } // Posodobi mobilni naslov in aktivno povezavo v spustnem seznamu if (mobileTitle) { mobileTitle.textContent = entry.target.textContent; } if (mobileNavLink) { mobileLinksContainer.querySelectorAll('a').forEach(link => link.classList.remove('active')); mobileNavLink.classList.add('active'); } } }); }, { rootMargin: "-100px 0px -50% 0px" // Sproži, ko je naslov v zgornjem delu zaslona }); headings.forEach(heading => { observer.observe(heading); }); } // Dodaj poslušalca dogodkov za vrstico napredka window.addEventListener('scroll', updateProgressBar); updateProgressBar(); // Klic ob nalaganju strani } } catch (error) { console.error('Error in Article Scrollspy/Progress Bar setup:', error); } /** * =================================================================== * 6. ZAGON FUNKCIJ PO NALOŽITVI STRANI * =================================================================== */ highlightActiveLink(); setupLanguageSwitcher(); });""" "./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.

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

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

Don’t miss what’s happening! Here you’ll find all our updates — from student news to upcoming activities and community highlights.

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

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/index.html.bak" : """ Македонска Студентска Организација во Словенија
Прва официјална МСОС

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

Без разлика дали имате тим од 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.

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

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

Don’t miss what’s happening! Here you’ll find all our updates — from student news to upcoming activities and community highlights.

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

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/index.html.bak" : """ Проекти - Македонска Студентска Организација во Словенија
Наши проекти

Проекти

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

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

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

""" "./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/macedonian-student-night-in-ljubljana/index.html.bak" : """ Македонска студентска вечер во Љубљана - МСОС

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

""" "./mk/projects/meet-student-slovenia-2023/index.html" : """ Запознај ја студентска Словенија 2023 - МСОС

Избери јазик

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

""" "./mk/projects/meet-student-slovenia-2023/index.html.bak" : """ Запознај ја студентска Словенија 2023 - МСОС

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

""" "./mk/projects/meet-student-slovenia-2024/index.html" : """ Запознај ја студентска Словенија 2024 - МСОС

Избери јазик

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

""" "./mk/projects/meet-student-slovenia-2024/index.html.bak" : """ Запознај ја студентска Словенија 2024 - МСОС

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

Придружете се на 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+ претплатници

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

""" "./optimize_images.py" : """ import os import re import argparse import shutil from PIL import Image # --- Konfiguracija skripte --- PROJECT_ROOT = os.path.dirname(os.path.abspath(__file__)) # Predvideva, da je skripta v root direktoriju projekta IMAGES_DIR_NAME = "images" ORIGINAL_IMAGES_SUBDIR_NAME = "original" # Podmapa znotraj IMAGES_DIR_NAME # Mape, v katerih skripta išče datoteke za posodobitev referenc DIRECTORIES_TO_SCAN = ['en', 'si', 'mk', 'css'] # Dodatne datoteke v korenski mapi za preverjanje FILES_IN_ROOT_TO_SCAN = ['main.js'] # Končnice datotek, v katerih iščemo in posodabljamo reference na slike FILE_EXTENSIONS_TO_UPDATE = ['.html', '.css', '.js'] WEBP_QUALITY = 80 # Kakovost kompresije za WebP (0-100). Višja številka = boljša kakovost, večja datoteka. MAX_IMAGE_DIMENSION = 1920 # Maksimalna dimenzija (širina ali višina) za pomanjšanje, če je slika večja. Ohranijo se razmerja. Če je 0, se ne pomanjšuje. IMAGE_EXTENSIONS_TO_OPTIMIZE = ['.jpg', '.jpeg', '.png', '.gif'] # Končnice datotek, ki jih želimo optimizirati EXCLUDE_FILES_FROM_OPTIMIZATION = [ '1-logo.png', # Logotip, ki ga morda ne želimo spreminjati '13-whitelogo.png', # Beli logotip, ki ga morda ne želimo spreminjati 'favicon.ico' # Ikona, ki ni slikovni format, ki ga Pillow lahko enostavno pretvori v WebP # Dodaj še druga imena datotek, ki jih želiš izključiti iz optimizacije ] # --- Pomožne funkcije --- def optimize_image(image_path, output_path, quality, max_dim, dry_run=False): """ Naloži sliko, jo po potrebi pomanjša, optimizira in pretvori v WebP format. """ try: with Image.open(image_path) as img: original_size = img.size if img.mode in ('P', 'LA', 'RGBA'): if img.mode != 'RGBA': img = img.convert("RGBA") if max_dim > 0 and (img.width > max_dim or img.height > max_dim): print(f" Pomanjšujem sliko {os.path.basename(image_path)} iz {img.width}x{img.height} ...", end="") img.thumbnail((max_dim, max_dim), Image.LANCZOS) print(f" na {img.width}x{img.height}") else: print(f" Obdelujem sliko {os.path.basename(image_path)} ({img.width}x{img.height})...", end="") if not dry_run: img.save(output_path, "webp", quality=quality, method=6) print(f" Shrani v {os.path.basename(output_path)} (kvaliteta: {quality}).") else: print(f" DRY RUN: Shranil bi v {os.path.basename(output_path)} (kvaliteta: {quality}).") return True except FileNotFoundError: print(f" Napaka: Izvorna slika '{image_path}' ni najdena.") return False except Exception as e: print(f" Napaka pri optimizaciji slike '{image_path}': {e}") return False def update_file_references(file_path, old_filename_with_ext, new_filename_with_ext, dry_run=False): """ Poišče staro ime slike v datoteki (HTML, CSS, JS) in ga zamenja z novim imenom WebP. """ 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 False original_content = content # Uporabimo preprosto zamenjavo niza, ki je varna, saj zamenjujemo celotno ime datoteke z končnico. # To bo delovalo za poti v narekovajih (HTML, JS) in v url() (CSS). if old_filename_with_ext in content: content = content.replace(old_filename_with_ext, new_filename_with_ext) if content != original_content: if not dry_run: backup_path = file_path + ".bak" try: # Preverimo, ali datoteka obstaja, preden jo kopiramo if os.path.exists(file_path): shutil.copy2(file_path, backup_path) except Exception as e: print(f" Napaka pri ustvarjanju varnostne kopije za '{file_path}': {e}") return False try: with open(file_path, 'w', encoding='utf-8') as f: f.write(content) print(f" Posodobljene reference za '{old_filename_with_ext}' v '{os.path.relpath(file_path, PROJECT_ROOT)}'.") return True except Exception as e: print(f" Napaka pri zapisovanju v datoteko '{file_path}': {e}") return False else: print(f" DRY RUN: Reference za '{old_filename_with_ext}' bi bile posodobljene v '{os.path.relpath(file_path, PROJECT_ROOT)}'.") return True return False def find_files_to_update(scan_dirs, root_files): """ Rekurzivno poišče vse datoteke z ustreznimi končnicami v podanih mapah. """ found_files = [] # Najprej poišči datoteke v navedenih mapah for directory in scan_dirs: dir_path = os.path.join(PROJECT_ROOT, directory) if os.path.isdir(dir_path): for dirpath, _, filenames in os.walk(dir_path): for filename in filenames: if any(filename.endswith(ext) for ext in FILE_EXTENSIONS_TO_UPDATE): found_files.append(os.path.join(dirpath, filename)) else: print(f"Opozorilo: Mapa za skeniranje '{dir_path}' ne obstaja. Preskakujem.") # Nato dodaj posamezne datoteke iz korenske mape for filename in root_files: file_path = os.path.join(PROJECT_ROOT, filename) if os.path.isfile(file_path): found_files.append(file_path) # Vrne unikaten, sortiran seznam poti return sorted(list(set(found_files))) # --- Glavna funkcija --- def main(): parser = argparse.ArgumentParser(description="Skripta za optimizacijo slik (pretvorba v WebP) in posodobitev referenc v HTML, CSS in JS datotekah.") parser.add_argument("--dry-run", action="store_true", help="Izvede operacije, vendar ne spreminja datotek in ne premika originalnih slik.") args = parser.parse_args() images_full_path = os.path.join(PROJECT_ROOT, IMAGES_DIR_NAME) original_images_full_path = os.path.join(images_full_path, ORIGINAL_IMAGES_SUBDIR_NAME) if not os.path.isdir(images_full_path): print(f"Napaka: Mapa s slikami '{images_full_path}' ne obstaja. Preverite konfiguracijo.") return if not args.dry_run: os.makedirs(original_images_full_path, exist_ok=True) print(f"Mapa za originalne slike: '{original_images_full_path}' (ustvarjena, če ni obstajala).") else: print(f"DRY RUN: Mapa za originalne slike bi bila '{original_images_full_path}'.") optimized_images_map = [] print("\n--- ZAČETEK OPTIMIZACIJE SLIK ---") for filename in os.listdir(images_full_path): if filename == ORIGINAL_IMAGES_SUBDIR_NAME: continue file_path = os.path.join(images_full_path, filename) if os.path.isfile(file_path): name, ext = os.path.splitext(filename) ext = ext.lower() if filename in EXCLUDE_FILES_FROM_OPTIMIZATION: print(f" Preskakujem izključeno datoteko: '{filename}'.") continue if ext in IMAGE_EXTENSIONS_TO_OPTIMIZE: new_filename = f"{name}.webp" new_file_path = os.path.join(images_full_path, new_filename) if os.path.exists(new_file_path) and os.path.getmtime(new_file_path) > os.path.getmtime(file_path): print(f" WebP različica '{new_filename}' že obstaja in je novejša od originala. Preskakujem optimizacijo.") optimized_images_map.append({'old_name': filename, 'new_name': new_filename}) continue if optimize_image(file_path, new_file_path, WEBP_QUALITY, MAX_IMAGE_DIMENSION, args.dry_run): optimized_images_map.append({'old_name': filename, 'new_name': new_filename}) if not args.dry_run: try: shutil.move(file_path, os.path.join(original_images_full_path, filename)) print(f" Originalna slika premaknjena: '{filename}' -> '{ORIGINAL_IMAGES_SUBDIR_NAME}/'.") except Exception as e: print(f" Napaka pri premikanju originalne slike '{filename}': {e}") else: print(f" DRY RUN: Originalna slika '{filename}' bi bila premaknjena v '{ORIGINAL_IMAGES_SUBDIR_NAME}/'.") else: print(f" Preskakujem datoteko (ni slika za optimizacijo): '{filename}'.") if not optimized_images_map: print("\nNi slik za optimizacijo ali pa so že optimizirane. Preskakujem posodabljanje referenc.") print("\n--- OPTIMIZACIJA SLIK ZAKLJUČENA ---") return print("\n--- ZAČETEK POSODABLJANJA REFERENC V DATOTEKAH ---") all_files_to_update = find_files_to_update(DIRECTORIES_TO_SCAN, FILES_IN_ROOT_TO_SCAN) if not all_files_to_update: print("Ni najdenih datotek za posodobitev referenc (.html, .css, .js).") print("\n--- OPTIMIZACIJA SLIK ZAKLJUČENA ---") return updated_files_count = 0 processed_files = set() for file_path in all_files_to_update: if file_path in processed_files: continue file_changed_in_this_run = False for img_info in optimized_images_map: if update_file_references(file_path, img_info['old_name'], img_info['new_name'], args.dry_run): file_changed_in_this_run = True if file_changed_in_this_run: updated_files_count += 1 processed_files.add(file_path) print(f"\nPregledanih je bilo {len(all_files_to_update)} datotek.") print(f"Posodobljenih je bilo {updated_files_count} datotek (vključno z DRY RUN).") print("\n--- OPTIMIZACIJA SLIK ZAKLJUČENA ---") if __name__ == "__main__": main()""" "./README.md" : """ msos spletna stran """ "./si/index.html" : """ Makedonska Študentska Organizacija v Sloveniji

Izberi jezik

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

Don’t miss what’s happening! Here you’ll find all our updates — from student news to upcoming activities and community highlights.

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/index.html.bak" : """ 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

Don’t miss what’s happening! Here you’ll find all our updates — from student news to upcoming activities and community highlights.

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

Izberi jezik

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/index.html.bak" : """ 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

Izberi jezik

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.
""" "./si/projects/macedonian-student-night-in-ljubljana/index.html.bak" : """ 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.
""" "./si/projects/meet-student-slovenia-2023/index.html" : """ 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. NLB Banka Skopje (glavni sponzor in pokrovitelj)
  3. Capital Financial Center (sponzor)
  4. Dijag doo (sponzor)
  5. Radio MOF (medijski partner)

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

""" "./si/projects/meet-student-slovenia-2023/index.html.bak" : """ 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. NLB Banka Skopje (glavni sponzor in pokrovitelj)
  3. Capital Financial Center (sponzor)
  4. Dijag doo (sponzor)
  5. Radio MOF (medijski partner)

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

""" "./si/projects/meet-student-slovenia-2024/index.html" : """ 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.

""" "./si/projects/meet-student-slovenia-2024/index.html.bak" : """ 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.

""" "./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.
""" "./si/projects/morning-coffee-in-front-of-ctk/index.html.bak" : """ 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.
""" "./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
""" "./si/projects/testproject/index.html.bak" : """ 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
""" "./site.webmanifest" : """ { "name": "MSOS", "short_name": "MSOS", "icons": [ { "src": "/web-app-manifest-192x192.png", "sizes": "192x192", "type": "image/png", "purpose": "maskable" }, { "src": "/web-app-manifest-512x512.png", "sizes": "512x512", "type": "image/png", "purpose": "maskable" } ], "theme_color": "#ffffff", "background_color": "#ffffff", "display": "standalone" }""" "./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; } }""" "./templates/en/footer.html" : """ """ "./templates/en/header.html" : """ """ "./templates/mk/footer.html" : """ """ "./templates/mk/header.html" : """ """ "./templates/si/footer.html" : """ """ "./templates/si/header.html" : """ """ "./update_html.py" : """ 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()"""