.artmonopol-button {
  display: block;
  width: 100%;
  background-color: #0A0A0A;
  color: ##E5E5E5;
  text-align: center;
  padding: 18px 24px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-decoration: none;
  border-radius: 10px;
  border: none;

  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.14);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.artmonopol-button:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.20);
  color: #ffffff; /* KLJUČNO */
}
/* ==============================================
   ART MENU – galerijski stil modula menija
   ============================================== */

/* OKVIR MODULA */
.moduletable.art-menu {
  border: 1px solid #E5E5E5;
  padding: 20px;
  background-color: #1A1A1A;
  box-shadow: 0 6px 14px rgba(0,0,0,0.06);
  border-radius: 4px;
}

/* NASLOV MODULA */
.moduletable.art-menu > h3,
.moduletable.art-menu .module-title {
  font-family: 'Playfair Display', serif;
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #E5E5E5;
  color: #222;
}

/* RESET MENIJA */
.mod-menu.art-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* STAVKE MENIJA */
.mod-menu.art-menu li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
}

/* FONT AWESOME STRELICA */
.mod-menu.art-menu li::before {
  content: "\f105"; /* fa-angle-right */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: #E5E5E5;
  font-size: 14px;
  transition: transform 0.3s ease;
}

/* ANIMACIJA STRELE NA HOVER */
.mod-menu.art-menu li:hover::before {
  transform: translateX(3px);
}

/* LINKOVI */
.mod-menu.art-menu a {
  text-decoration: none;
  font-size: 16px;
  color: #333;
  transition: all 0.3s ease;
}

/* LINK HOVER */
.mod-menu.art-menu a:hover {
  color: #E5E5E5;
  padding-left: 4px;
}

/* AKTIVNA STAVKA */
.mod-menu.art-menu li.active > a {
  font-weight: 500;
  color: #E5E5E5;
}

/* ČLANCI U BLOGU */
.article-list .article {
    background: #1A1A1A !important;
    border: 1px solid #E5E5E5 !important;
    border-radius: 6px !important;
    box-shadow: 0 2px 6px rgba(0,0,0,.06) !important;
    padding: 25px !important;
    margin-bottom: 25px !important;
}