/* =========================================
   GLOBAL TYPOGRAPHY (SAFE - NO NAVBAR BREAK)
========================================= */

/* Only apply to main content, NOT navbar */
body:not(.navbar) p,
.entitylist p,
.page_section p {
  /* color: #2A2C2E !important; */
  font-size: 15px;
  line-height: 1.6;
}

/* =========================================
   LINKS (SCOPED - FIXES YELLOW ISSUE)
========================================= */

body:not(.navbar) a {
  color: #22223E !important;
  text-decoration: none;
}

body:not(.navbar) a:hover {
  color: #36A9E1 !important;
}

/* =========================================
   BREADCRUMB
========================================= */

.breadcrumb {
  background: transparent;
}

.breadcrumb > li a {
  color: #22223E !important;
  font-weight: 500;
}

.breadcrumb > .active {
  color: #6b7280 !important;
}

/* =========================================
   TABLE (ENTERPRISE STYLE)
========================================= */

.table {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.table thead th {
  background: #f1f5f9;
  color: #22223E !important;
  font-weight: 600;
  padding: 12px;
  border-bottom: 1px solid #e5e7eb;
}

.table tbody td {
  padding: 12px;
  color: #2A2C2E;
}

.table tbody tr {
  border-bottom: 1px solid #f1f5f9;
}

.table tbody tr:hover {
  background-color: #f9fafb;
}

/* =========================================
   EMPTY STATE
========================================= */

.entitylist .view-empty {
  text-align: center;
  padding: 50px;
  color: #6b7280;
  font-size: 16px;
}

/* =========================================
   BUTTONS
========================================= */

.btn-primary {
  background-color: #F0D232 !important;
  color: #22223E !important;
  border-radius: 20px;
  font-weight: 600;
  padding: 8px 18px;
  border: none;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background-color: #36A9E1 !important;
  color: #ffffff !important;
}

/* =========================================
   NAVBAR (FIX INVISIBLE ISSUE)
========================================= */

.navbar-inverse {
  background-color: #22223E !important;
}

/* Menu text */
.navbar-inverse .navbar-nav > li > a {
  color: #ffffff !important;
  font-size: 16px;
}

/* Hover effect */
.navbar-inverse .navbar-nav > li > a:hover {
  background-color: transparent !important;
  color: #F0D232 !important;
  border-bottom: 2px solid #F0D232;
}

/* Brand */
.navbar-inverse .navbar-brand,
.navbar-inverse .navbar-brand a {
  color: #ffffff !important;
}

/* Icons */
.navbar-inverse .fa,
.navbar-inverse .glyphicon {
  color: #ffffff !important;
}

/* Optional separators */
.navbar-inverse .navbar-nav > li {
  border-left: 1px solid rgba(255,255,255,0.2);
}

.navbar-inverse .navbar-nav > li:first-child {
  border-left: none;
}

/* =========================================
   DROPDOWN (CLEAN WHITE PANEL)
========================================= */

.open > .dropdown-menu {
  background-color: #ffffff !important;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.open > .dropdown-menu > li > a {
  color: #22223E !important;
  padding: 10px 14px;
}

.open .dropdown-menu > li > a:hover {
  background-color: #f1f5f9 !important;
  color: #22223E !important;
}

/* Active item */
.dropdown-menu > .active > a {
  background-color: #36A9E1 !important;
  color: #ffffff !important;
}

/* Remove underline */
.dropdown-menu a {
  text-decoration: none !important;
}

/* =========================================
   CARDS / CONTAINER IMPROVEMENT
========================================= */

.entitylist {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* =========================================
   SPACING
========================================= */

.columnBlockLayout {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

/* =========================================
   FIX STRANGE WHITE TEXT ISSUES
========================================= */

.section-diagonal-left p,
.section-diagonal-right p {
  color: #2A2C2E !important;
}

/* HERO SECTION */
.hero-section {
  background: url('/IT-Support-2.jpg') center/cover no-repeat;
  position: relative;
  min-height: 70vh;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.55);
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
}

.hero-content {
  text-align: center;
  color: white;
}

/* TITLE */
.hero-title {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* SUBTITLE */
.hero-subtitle {
  font-size: 18px;
  color: #d1d5db;
  margin-bottom: 25px;
}

/* BUTTON */
.hero-btn {
  padding: 10px 24px;
  font-size: 14px;
  border-radius: 6px;
}

/* IMAGE SECTION */
.hero-image {
  width: 100%;
  border-radius: 10px;
  margin-top: 30px;
}

/* SPACING */
.section-spacing {
  margin-top: 40px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 14px;
  }
}