/* ===== Jack of All Arts — Deep Purple & Emerald Animated Theme ===== */

/* Global styles */
body {
  background-color: #14001a;
  color: #f5f5f5;
  font-family: "Poppins", "Helvetica Neue", sans-serif;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Header & Footer */
header, footer, .container-header {
  background-color: #1a0022;
  border-bottom: 3px solid #2ecc71;
  border-top: 3px solid #5e17eb;
  box-shadow: 0 0 20px rgba(46, 204, 113, 0.2);
}

/* Logo & Brand */
.container-header .navbar-brand {
  color: #2ecc71 !important;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(46, 204, 113, 0.6);
}

/* Navigation Menu */
.mod-menu a {
  color: #2ecc71;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease, transform 0.2s ease;
}
.mod-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: #2ecc71;
  transition: width 0.3s ease;
}
.mod-menu a:hover {
  color: #6fffc3;
  transform: scale(1.05);
}
.mod-menu a:hover::after {
  width: 100%;
}

/* Buttons */
.btn, button, input[type="submit"] {
  background: linear-gradient(90deg, #5e17eb, #2ecc71);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 10px rgba(94, 23, 235, 0.4);
}
.btn:hover, button:hover, input[type="submit"]:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(46, 204, 113, 0.8), 0 0 30px rgba(94, 23, 235, 0.6);
}

/* Links */
a {
  color: #2ecc71;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
a:hover {
  color: #6fffc3;
  text-shadow: 0 0 10px rgba(111, 255, 195, 0.7);
}

/* Cards, modules, and article boxes */
.card, .blog-item, .mod-custom {
  background-color: rgba(94, 23, 235, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.3);
  border-radius: 10px;
  padding: 15px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.card:hover, .blog-item:hover, .mod-custom:hover {
  box-shadow: 0 0 15px rgba(46, 204, 113, 0.5);
  transform: translateY(-3px);
}

/* Footer */
footer {
  color: #aaaaaa;
  text-align: center;
  padding: 10px;
  font-size: 0.9rem;
  background: #0d0013;
  border-top: 2px solid #5e17eb;
}

/* Scroll to top link */
a[href="#top"] {
  color: #2ecc71;
  text-shadow: 0 0 8px rgba(46, 204, 113, 0.7);
}

/* ===== Force module titles (Main Menu, Login Form, etc.) to emerald green ===== */
.card-header,
.moduletitle,
.module-title,
.card-title,
h3.mod-title,
h3.module-title,
h3.card-title {
  color: #2ecc71 !important;
  text-shadow: 0 0 6px rgba(46, 204, 113, 0.6);
  font-weight: 700 !important;
}
.card-header:hover,
.moduletitle:hover,
.module-title:hover {
  color: #6fffc3 !important;
  text-shadow: 0 0 10px rgba(111, 255, 195, 0.8);
}

/* ===== "Remember Me" Checkbox Label ===== */
label[for="modlgn-remember"],
label[for="remember"],
label[for*="remember-me"],
.mod-login__remember label {
  color: #2ecc71 !important;
  font-weight: 600;
  text-shadow: 0 0 6px rgba(46, 204, 113, 0.5);
}
label[for="modlgn-remember"]:hover,
label[for="remember"]:hover,
label[for*="remember-me"]:hover {
  color: #6fffc3;
  text-shadow: 0 0 10px rgba(111, 255, 195, 0.7);
}
input[type="checkbox"]:checked {
  accent-color: #2ecc71;
  box-shadow: 0 0 8px rgba(46, 204, 113, 0.6);
}
/* ===== Jack of All Arts - Article Info Colors ===== */
.article-info,
.article-info dd,
.article-info-term {
  color: #2ecc71 !important; /* Bright green text */
}

.article-info dd a {
  color: #5e17eb !important; /* Purple for links */
}

.article-info dd a:hover {
  color: #8e44ad !important; /* Lighter purple on hover */
}

.article-info {
  opacity: 1 !important;
}

.container-header {
  background-color: #1a0022 !important;
  background-image: none !important;
}
