/* ============================================================
   DXC MFT Services — Brand Stylesheet
   Palette: Canvas #F6F3F0 | Midnight Blue #0E1020
   Accents: Peach #FFC982 | True Blue #4995FF | Red #D14600
            Sky #A1E6FF | Melon #FF7E51 | Gold #FFAE41 | Royal #004AAC
   Typeface: GT Standard (Arial fallback)
   ============================================================ */

@font-face {
  font-family: 'GT Standard';
  src: url('GT-Standard-L-Extended-Medium.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'GT Standard';
  src: url('GT-Standard-L-Extended-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'GT Standard', Arial, sans-serif;
  font-weight: 400;
  background-color: #F6F3F0;   /* Canvas */
  color: #0E1020;               /* Midnight Blue */
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: #004AAC; text-decoration: none; }
a:hover { text-decoration: underline; color: #4995FF; }

/* ── Top Navigation Bar ── */
.site-header {
  background-color: #000000;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.site-header .brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.site-header .brand img {
  height: 36px;
  width: auto;
}

.site-header .brand-name {
  font-family: 'GT Standard', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #FFFFFF;
}

/* Top nav links */
.top-nav {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}

.top-nav a {
  display: block;
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 400;
  padding: 0.5rem 0.85rem;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.top-nav a:hover,
.top-nav a.active {
  background-color: #004AAC;   /* Royal */
  color: #FFFFFF;
  text-decoration: none;
}

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
}

/* ── Layout ── */
.page-wrapper {
  display: flex;
  flex: 1;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding: 2rem 1.5rem;
  gap: 2rem;
}

/* ── Sidebar ── */
.sidebar {
  width: 180px;
  flex-shrink: 0;
}

.sidebar-nav {
  list-style: none;
  border-left: 3px solid #4995FF;  /* True Blue accent */
}

.sidebar-nav li a {
  display: block;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  color: #0E1020;
  border-bottom: 1px solid #e0dcd8;
  transition: background 0.15s, padding-left 0.15s;
  text-decoration: none;
}

.sidebar-nav li a:hover,
.sidebar-nav li a.active {
  background-color: #0E1020;
  color: #FFFFFF;
  padding-left: 1.4rem;
  text-decoration: none;
}

/* ── Main Content ── */
.main-content {
  flex: 1;
  min-width: 0;
}

/* Page hero band */
.page-hero {
  background-color: #0E1020;
  color: #FFFFFF;
  border-radius: 4px;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.page-hero img.hero-photo {
  width: 140px;
  height: auto;
  border-radius: 3px;
  flex-shrink: 0;
}

.page-hero-text h1 {
  font-family: 'GT Standard', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 0.35rem;
}

.page-hero-text p {
  font-size: 0.9rem;
  color: #A1E6FF;   /* Sky accent */
  font-style: italic;
}

/* ── Content card ── */
.content-card {
  background: #FFFFFF;
  border-radius: 4px;
  padding: 1.75rem 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 4px rgba(14,16,32,0.08);
}

.content-card h2 {
  font-family: 'GT Standard', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0E1020;
  margin-bottom: 0.5rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid #FFC982;   /* Peach accent */
}

.content-card p {
  font-size: 0.9rem;
  color: #0E1020;
  margin-bottom: 0.75rem;
}

.content-card p:last-child { margin-bottom: 0; }

/* Feature grid on home */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.feature-card {
  background: #FFFFFF;
  border-radius: 4px;
  padding: 1.25rem 1.25rem 1.25rem 1rem;
  border-left: 4px solid #4995FF;   /* True Blue accent */
  box-shadow: 0 1px 4px rgba(14,16,32,0.07);
}

.feature-card h3 {
  font-family: 'GT Standard', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0E1020;
  margin-bottom: 0.4rem;
}

.feature-card p {
  font-size: 0.85rem;
  color: #333;
  line-height: 1.55;
}

/* Intro block */
.intro-block {
  background: #F6F3F0;
  border-left: 4px solid #FFAE41;   /* Gold accent */
  padding: 1rem 1.25rem;
  border-radius: 0 4px 4px 0;
  margin-bottom: 1.5rem;
  font-style: italic;
  font-size: 0.9rem;
  color: #0E1020;
}

/* ── Contact page ── */
.contact-section {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #e0dcd8;
}

.contact-section:last-child { border-bottom: none; }

.contact-section h2 {
  font-family: 'GT Standard', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: #0E1020;
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 3px;
  margin-bottom: 0.75rem;
}

.contact-section h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0E1020;
  margin-bottom: 0.3rem;
}

.contact-section p {
  font-size: 0.875rem;
  color: #333;
  margin-bottom: 0.3rem;
}

.contact-phone {
  font-size: 1.1rem;
  font-weight: 700;
  color: #004AAC;   /* Royal */
}

/* ── VAN Interconnects ── */
.van-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.van-col h3 {
  font-family: 'GT Standard', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #FFFFFF;
  background: #004AAC;
  padding: 0.3rem 0.75rem;
  border-radius: 3px;
  margin-bottom: 0.75rem;
}

.van-col ul {
  list-style: none;
  padding: 0;
}

.van-col ul li {
  font-size: 0.875rem;
  color: #0E1020;
  padding: 0.3rem 0 0.3rem 1.2rem;
  border-bottom: 1px solid #e8e4e0;
  position: relative;
}

.van-col ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: #4995FF;   /* True Blue accent bullet */
  font-weight: 700;
}

/* ── Industries ── */
.industry-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 0.75rem;
}

.industry-list li {
  background: #FFFFFF;
  border: 1px solid #e0dcd8;
  border-left: 3px solid #FF7E51;   /* Melon accent */
  padding: 0.6rem 0.9rem;
  border-radius: 0 4px 4px 0;
  font-size: 0.875rem;
  color: #0E1020;
  font-weight: 400;
}

/* ── Resource Library ── */
.resource-row {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid #e0dcd8;
  align-items: flex-start;
}

.resource-row:last-child { border-bottom: none; }

.resource-category {
  width: 120px;
  flex-shrink: 0;
  font-family: 'GT Standard', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0E1020;
  padding-top: 0.1rem;
}

.resource-items { flex: 1; }

.resource-link {
  display: block;
  font-size: 0.875rem;
  color: #004AAC;
  margin-bottom: 0.2rem;
  font-weight: 700;
}

.resource-link:hover { color: #4995FF; }

.resource-desc {
  font-size: 0.82rem;
  color: #555;
  margin-bottom: 0.75rem;
}

/* ── Site Map ── */
.sitemap-section h2 {
  font-family: 'GT Standard', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #0E1020;
  margin-bottom: 0.5rem;
  padding-bottom: 0.3rem;
  border-bottom: 2px solid #FFAE41;
}

.sitemap-section ul {
  list-style: none;
  margin-bottom: 1.25rem;
}

.sitemap-section ul li {
  padding: 0.3rem 0 0.3rem 1.2rem;
  position: relative;
  font-size: 0.875rem;
  border-bottom: 1px solid #ede9e5;
}

.sitemap-section ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #FFC982;   /* Peach accent */
}

.sitemap-section ul li a { color: #004AAC; }
.sitemap-section ul li a:hover { color: #4995FF; }

/* ── Footer ── */
.site-footer {
  background-color: #0E1020;
  color: #A1E6FF;
  font-size: 0.8rem;
  padding: 1rem 2rem;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #A1E6FF;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: #FFC982; text-decoration: underline; }

.footer-copy { color: #888; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .site-header { padding: 0 1rem; }

  .nav-toggle { display: flex; }

  .top-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #0E1020;
    flex-direction: column;
    padding: 0.5rem 0;
  }

  .top-nav.open { display: flex; }

  .top-nav a { padding: 0.75rem 1.5rem; border-radius: 0; }

  .page-wrapper { flex-direction: column; padding: 1rem; gap: 1rem; }

  .sidebar { width: 100%; }

  .sidebar-nav { border-left: none; border-top: 3px solid #4995FF; display: flex; flex-wrap: wrap; }

  .sidebar-nav li { flex: 1 0 auto; }

  .sidebar-nav li a { border-bottom: none; border-right: 1px solid #e0dcd8; text-align: center; }

  .page-hero { flex-direction: column; text-align: center; }

  .van-cols { grid-template-columns: 1fr; }

  .resource-row { flex-direction: column; gap: 0.5rem; }

  .resource-category { width: auto; }

  .feature-grid { grid-template-columns: 1fr; }
}
