
/* ---------------------------------------------------- */
/*    Restored Base Theme + Custom Overrides            */
/* ---------------------------------------------------- */
@import url("colors/gray.css");
@import url("colors/black-menu.css");
@import url("JQuery-lytebox/lytebox-JQ-blue.css");
@import url("JQuery-lytebox/lytebox-JQ.css");
@import url("mobile-select/select-overlay.css");

/* Layout Container */
body {
  background-color: #000;
  color: #fff;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4 {
  color: #ffd700;
}

/* Grid Container */
.introgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1020px;
  margin: 40px auto;
  padding: 0 20px;
  justify-content: center;
}

@media (max-width: 1000px) {
  .introgrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .introgrid {
    grid-template-columns: 1fr;
  }
}

/* Grid Item Box */
.introbox {
  background: #000;
  color: #fff;
  border: 1px solid #222;
  padding: 20px 15px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.introbox:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
  border-color: #ffd700;
}

/* Mustard link color */
.introbox a {
  color: #ffd700;
  text-decoration: none;
  font-weight: bold;
}

.introbox a:hover {
  text-decoration: underline;
  color: #fff;
}

/* Footer styling */
.footer-text {
  text-align: center;
  font-size: 14px;
  color: #999;
  padding: 20px 10px;
  background-color: #111;
}

.footer-text a {
  color: #ffd700;
  text-decoration: none;
}

.footer-text a:hover {
  text-decoration: underline;
}
