/* ==========================
   GLOBAL BASE
   ========================== */

body {
  margin: 0;
  background: #0E0E0E;
  color: #ffffff;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

/* Offset main content for fixed header */
main {
  margin-top: 80px;
  text-align: center;
}

/* ==========================
   HEADER + NAV
   ========================== */

header.logistx-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(14, 14, 14, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  z-index: 9999;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: #2EC5B6;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 1px;
  text-decoration: none;
}

/* Main nav */

nav.main-nav ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav.main-nav li a {
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 0.85rem;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

nav.main-nav li a:hover {
  color: #2EC5B6;
  text-shadow: 0 0 6px rgba(46, 197, 182, 0.6);
}

.main-nav a.active {
  color: #00aced;
  border-bottom: 2px solid #00aced;
}

/* Optional social links group (if used anywhere) */

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: #6C3BAA;
  font-size: 1rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
  color: #2EC5B6;
  transform: scale(1.1);
}

/* Header underline gradient */

.logistx-header::after {
  content: "";
  display: block;
  height: 2px;
  background: linear-gradient(90deg, #6C3BAA, #2EC5B6);
}

/* ==========================
   VENDORS PAGE THEME
   (body class="vendors-page")
   ========================== */

/* Dark section container */
.vendors-page #three.wrapper {
  background: #0E0E0E !important;   /* deep charcoal */
  color: #ffffff !important;
  padding: 6em 0 4em 0 !important;
  box-shadow: none !important;
  border: none !important;
}

/* Headings & text in vendor section */
.vendors-page #three h2,
.vendors-page #three h3,
.vendors-page #three p {
  color: #ffffff;
}

/* Teal accent bar above vendor content */
.vendors-page #three .inner::before {
  content: "";
  display: block;
  width: 140px;
  height: 4px;
  background: #35b8c0; /* LOGISTX teal */
  margin: 0 auto 2.5rem auto;
  border-radius: 999px;
}

/* Vendor list as responsive grid */
.vendors-page #three .features {
  display: grid !important;
  grid-template-columns: 1fr;              /* default: 1 column (mobile) */
  gap: 2rem !important;
  padding: 0 !important;
  margin: 0 auto !important;
  list-style: none !important;
}

/* ≥ 768px: 2 columns */
@media (min-width: 768px) {
  .vendors-page #three .features {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* ≥ 1100px: 3 columns */
@media (min-width: 1100px) {
  .vendors-page #three .features {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

/* Individual vendor card */
.vendors-page #three .features li {
  background: #181818 !important;
  border-radius: 12px !important;
  padding: 2rem !important;
  border-left: 4px solid #35b8c0 !important;  /* teal accent */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45) !important;
  text-align: left !important;
  margin: 0 !important;
}

/* Vendor icons (HTML5UP-style: li.icon:before) */
.vendors-page #three .features li.icon:before {
  font-size: 2.1rem !important;
  margin-bottom: 1rem !important;
  color: #35b8c0 !important;
}

/* Vendor names + links */
.vendors-page #three .features li h3 {
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}

.vendors-page #three .features li h3 a {
  color: #ffffff;
  text-decoration: none;
}

.vendors-page #three .features li h3 a:hover {
  text-decoration: underline;
}

/* Vendor body copy */
.vendors-page #three .features li p {
  color: #d4d4d4;
  line-height: 1.6;
}
