/* =====================================================
   ENTERPRISE I.T. PORTAL THEME
   Clean • Professional • Modern
   ===================================================== */

/* ===== ROOT VARIABLES ===== */
:root {
  --bg-main: #020617;
  --bg-surface: #0f172a;
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-strong: rgba(255, 255, 255, 0.1);
  --border-soft: rgba(148, 163, 184, 0.22);
  --blue-accent: #38bdf8;
  --blue-soft: rgba(56, 189, 248, 0.25);
  --text-main: #e5e7eb;
  --text-muted: #94a3b8;
}

/* ===== RESET ===== */
.Header__navbar *,
.Header__searchSection * {
  box-sizing: border-box;
  font-family: "Segoe UI", Inter, system-ui, sans-serif;
}

/* =====================================================
   NAVBAR
   ===================================================== */
.Header__navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background:
    linear-gradient(180deg,
      rgba(56, 189, 248, 0.08),
      rgba(2, 6, 23, 0.96)
    ),
    var(--bg-main);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.7);
}

.Header__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
}

/* ===== LOGO ===== */
.Header__logo img {
  height: 40px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
}

/* ===== COMPANY NAME ===== */
.Header__name {
  margin-left: 16px;
  margin-right: auto;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--text-main);
  text-transform: uppercase;
}

/* =====================================================
   MENU TABS
   ===================================================== */
.Header__menuTab {
  display: flex;
}

.Header__menuList {
  display: flex;
  gap: 30px;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.Header__tabsTab {
  position: relative;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.25s ease;
}

.Header__tabsTab:hover {
  color: var(--text-main);
}

/* Subtle IT underline */
.Header__tabsTab::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--blue-accent);
  transition: width 0.3s ease;
}

.Header__tabsTab:hover::after {
  width: 100%;
}
/* =====================================================
   HEADER MENU – ORANGE HOVER ACCENT
   ===================================================== */

.Header__tabsTab {
  position: relative;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition:
    color 0.25s ease,
    text-shadow 0.25s ease;
}

/* Hover text */
.Header__tabsTab:hover {
  color: #f97316; /* IT orange */
  text-shadow: 0 0 6px rgba(249, 115, 22, 0.45);
}

/* Animated underline */
.Header__tabsTab::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    #f97316,
    #fb923c
  );
  box-shadow: 0 0 10px rgba(249,115,22,0.5);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

/* Expand underline on hover */
.Header__tabsTab:hover::after {
  width: 100%;
}

/* =====================================================
   HAMBURGER MENU (MOBILE)
   ===================================================== */
.Header__menuicon {
  margin-left: 20px;
  cursor: pointer;
}

.Header__menu {
  width: 26px;
  height: 2px;
  background: var(--text-main);
  box-shadow:
    0 7px 0 var(--text-main),
    0 14px 0 var(--text-main);
}

/* =====================================================
   HERO / SEARCH SECTION
   ===================================================== */
.Header__searchSection {
  background:
    linear-gradient(
      135deg,
      rgba(56, 189, 248, 0.15),
      rgba(15, 23, 42, 0.96)
    ),
    repeating-linear-gradient(
      0deg,
      rgba(148, 163, 184, 0.05),
      rgba(148, 163, 184, 0.05) 1px,
      transparent 1px,
      transparent 80px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(148, 163, 184, 0.05),
      rgba(148, 163, 184, 0.05) 1px,
      transparent 1px,
      transparent 80px
    );
  padding: 80px 0 90px;
  border-bottom: 1px solid var(--border-soft);
}

/* Glass container */
.Header__searchSection .Header__container {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 48px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.6);
}

/* ===== TEXT ===== */
.Header__searchTitle {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: var(--text-main);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.Header__description {
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* =====================================================
   SEARCH INPUT (HOME SEARCH)
   ===================================================== */
.Header__searchSection input,
.Header__searchSection select,
.Header__searchSection textarea {
  width: 100%;
  background: var(--glass-strong);
  border: 1px solid var(--border-soft);
  color: var(--text-main);
  padding: 14px 16px;
  border-radius: 10px;
  backdrop-filter: blur(12px);
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.Header__searchSection input:focus {
  outline: none;
  border-color: var(--blue-accent);
  box-shadow: 0 0 0 2px var(--blue-soft);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 900px) {
  .Header__menuTab {
    display: none;
  }

  .Header__searchSection {
    padding: 60px 20px;
  }

  .Header__searchSection .Header__container {
    padding: 32px;
  }
}
