:root {
  --primary-green: #a90889;
  --bg-body: rgb(10, 15, 30);
  --bg-header: #263238;
  --text-heading: #d2c7f4;
  --border-grey: #494d5e;
  --text-cards: #abaec0;
  --bright-dark-background: rgb(17, 20, 30);
  --white-color: #e1d3e1; }

body {
  background-color: var(--bg-body);
  color: white;
  font-family: 'Roboto', sans-serif;
  overflow-x: hidden; }

h1, h2, h3, h4, h5, h6, .nav-link, .btn, .cat-label, .hero-header {
  font-family: 'Lato', sans-serif; }

p, li {
  line-height: 1.6;
  font-size: 1.125rem;
  font-weight: 300; }

/* Univerzalni stil za linkove bez dekoracija */
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s; }

a:hover {
  cursor: pointer;
  color: var(--primary-green); }

@media screen and (min-width: 2000px) {
  .gap-xxxl-3 {
    gap: 1rem !important; }

  .mb-xxxl-3 {
    margin-bottom: 1rem !important; } }
/* --- Header --- */
header {
  background-color: #0a0f1e;
  border-bottom: 1px solid var(--bg-header);
  padding: 15px 0;
  margin-bottom: 30px; }
  header .fme-logo {
    margin-right: 2rem; }
  header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px; }
  header .header-logo-link {
    flex-shrink: 0;
    display: flex;
    align-items: center; }
  header .desktop-nav {
    display: flex;
    align-items: center;
    gap: 4px; }
  header .desktop-actions {
    display: flex;
    align-items: center; }
  header .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px; }
    header .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease;
      transform-origin: center; }
    header .hamburger.is-active span:nth-child(1) {
      transform: translateY(7px) rotate(45deg); }
    header .hamburger.is-active span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0); }
    header .hamburger.is-active span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg); }
  header .mobile-menu {
    display: none;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
    background: #141424; }
    header .mobile-menu.is-open {
      display: block;
      max-height: 500px; }
    header .mobile-menu .mobile-nav {
      display: flex;
      flex-direction: column;
      padding: 1rem 0; }
      header .mobile-menu .mobile-nav .nav-link {
        padding: 12px 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        font-size: 15px; }
        header .mobile-menu .mobile-nav .nav-link:last-child {
          border-bottom: none; }
    header .mobile-menu .mobile-actions {
      display: flex;
      align-items: center;
      padding: 1rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      gap: 8px; }
  @media (max-width: 1198.98px) {
    header .desktop-nav,
    header .desktop-actions {
      display: none !important; }
    header .hamburger {
      display: flex; } }

@media screen and (min-width: 2000px) {
  .container {
    max-width: 1640px; } }
.navbar-brand {
  font-weight: 700;
  color: white !important;
  font-size: 1.5rem;
  letter-spacing: 1px; }

.nav-link {
  color: #eceff1 !important;
  font-size: 1.1rem;
  margin-right: 15px;
  font-weight: 500; }

.nav-link:last-child {
  margin-right: 0; }

.nav-link:hover {
  color: var(--primary-green) !important; }

.social-icon {
  color: white;
  font-size: 1.2rem;
  margin-right: 15px;
  transition: color 0.3s; }

.social-icon:hover {
  color: var(--primary-green); }

.btn-donate {
  background: linear-gradient(to right, rgba(169, 8, 137, 0.9) 10%, #a90889 90%);
  color: white;
  font-weight: 700;
  border: none;
  padding: 8px 30px;
  font-size: 1.1rem;
  border-radius: 6px; }

.btn-donate:hover {
  background: linear-gradient(to right, rgba(10, 15, 30, 0.9) 10%, #0a0f1e 90%);
  color: white; }

.main-container {
  max-width: 1320px; }

/* --- SINGLE --- */
article p a {
  color: var(--text-heading); }
  article p a:hover {
    text-decoration: none; }

blockquote {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1rem; }
  blockquote.red {
    background-color: rgba(255, 0, 0, 0.1); }
  blockquote.green {
    background-color: rgba(0, 128, 0, 0.1); }
  blockquote.yellow {
    background-color: rgba(255, 255, 0, 0.1); }
  blockquote.blue {
    background-color: rgba(0, 0, 255, 0.1); }
  blockquote p:last-child {
    margin-bottom: 0; }
  blockquote p a {
    color: var(--text-cards); }

.sidebar-area {
  position: sticky;
  top: 100px;
  padding-top: 20px; }
  .sidebar-area img {
    max-width: 100%;
    height: auto; }

/* LAYOUT: sticky lijeva kolona, desna se scrolla s body scrollom (DESKTOP ONLY) */
@media screen and (min-width: 1200px) {
  header {
    position: sticky;
    top: 0;
    z-index: 1000; }

  .left-sidebar-articles {
    position: sticky;
    top: 100px;
    height: calc(100vh - 100px);
    overflow: hidden;
    align-self: flex-start; }

  .right-side-main-part {
    padding-bottom: 30px; } }

/*# sourceMappingURL=global.css.map */
