/* ================================
   RESET & BASE (same as home)
=================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Verdana", "Trebuchet MS", "Arial", sans-serif;
  background-color: #f3f3f3;
  color: #333;
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  font-family: "Verdana", "Trebuchet MS", "Arial", sans-serif;
  font-weight: 700;
  color: #2E2E2E;
}

p, a, li, span, nav {
  font-family: "Verdana", "Trebuchet MS", "Arial", sans-serif;
  font-weight: 400;
  color: #595959;
}

/* ================================
   HEADER
=================================== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #f3f3f3;
}

.header-left {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

header h1 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0;
}

header .subtitle {
  font-size: 0.9rem;
  font-weight: 400;
  color: #555;
}

/* Navigation */
.header-nav ul {
  list-style: none;
  display: flex;
  gap: 2px;
  margin: 0;
  padding: 0;
}

.header-nav a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: color 0.2s ease;
}

.header-nav a:hover {
  color: #0077cc;
}
/* ===== Desktop pipes between links ===== */
.header-nav ul li {
  position: relative;
  margin-right: 0px;
}

.header-nav ul li:not(:last-child)::after {
  content: "|";
  position: relative;
  margin: 0 4px;     /* adjust spacing here */
  color: #333;
  font-weight: 400;
}
/* base (outside any @media) */
.hamburger {
  display: none;                  /* hidden on desktop */
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1000;                  /* keep above content */
}
.hamburger span {
  display: block;                 /* ← REQUIRED */
  width: 25px;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
}

/* ================================
   EXPERIENCE PAGE LAYOUT
================================ */
.experience-page {
  max-width: 900px;
  margin: 0px auto;
  padding: 0 10px;
}

.experience-page h2 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

/* GRID LAYOUT */
.experience-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;        /* Space between each job card */
  width: 100%;
}

/* CARD STYLE */
.experience-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 6px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  padding-top: 20px;
}

.experience-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

/* COMPANY LOGOS */
.company-logo {
  display: block;
  max-width: 200px;
  height: auto;
  margin: 0 auto 10px auto;
  object-fit: contain;
}

/* JOB HEADER */
.job-header {
  text-align: center;
  margin-bottom: 0px;
}

.job-header h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: #2E2E2E;
}

.company-name, .job-dates {
  font-size: 0.9rem;
  color: #555;
  margin: 2px 0;
}

/* JOB SECTIONS */
.job-section {
  margin-top: 10px;
}

.job-section h4 {
  font-size: 0.90rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #333;
}

/* EXPERIENCE bullets: clean resume-style alignment */
.job-section ul {
  list-style: disc outside;   /* use the native bullet */
  margin: 0;                  /* no extra left margin */
  padding-left: 1.1rem;       /* distance from page edge to bullet */
}

.job-section ul li {
  padding-left: 0.1rem;       /* distance from bullet to text */
  text-indent: -0.1rem;       /* pulls ONLY the first line back so wraps align */
  font-size: 0.85rem;         /* your preferred size */
  line-height: 1.25;
  margin-bottom: 6px;
}



/* ACCOMPLISHMENTS */
.accomplishments li {
  color: #333;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .company-logo {
    max-width: 150px;
  }
}
/* ====================================
   EXPERIENCE CARD – LOGO LEFT LAYOUT
==================================== */
.job-top {
  display: flex;
  align-items: center;       /* ✅ centers text and logo vertically */
  justify-content: flex-start;
  gap: 20px;
  margin: 0;
  padding: 0;
  line-height: normal;
}

.company-logo-left {
  width: 200px;              /* ✅ controls overall logo size */
  height: auto;              /* ✅ keeps natural aspect ratio */
  object-fit: contain;
  display: block;
  margin: 0;
  padding: 0;
  line-height: 0;
  vertical-align: middle;
  align-self: center;

}

.job-header-right {
  flex: 1;
  text-align: left;
  margin-top: 0px;
  margin-left: 50px;   /* ✅ nudges the text block slightly right */
}

.job-header-right h3 {
  font-size: .95rem;
  margin-bottom: 4px;
  color: #2E2E2E;
}

.job-header-right .company-name,
.job-header-right .job-dates {
  font-size: 0.9rem;
  color: #555;
  margin: 2px 0;
}

/* Responsive adjustment for narrow screens */
@media (max-width: 600px) {
  .job-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .company-logo-left {
    max-width: 140px;
    margin-bottom: 8px;
  }

  .job-header-right {
    text-align: center;
  }
}




/* ================================
   FOOTER SECTION — FLEXBOX VERSION (Perfect Alignment)
=================================== */

/* Divider line */
.footer-separator {
  width: 95%;
  max-width: 1500px;
  margin: 10px auto 0;
}
.footer-separator hr {
  border: none;
  border-top: 1px solid #000;
  width: 100%;
  margin: 0;
}

/* Footer container */
footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 95%;
  max-width: 1500px;
  margin: 0px auto 0;
  padding: 10px 0 16px;
  flex-wrap: wrap;
  /*font-size: 0.85rem; /* ✅ Adjust footer text size here */
}

/* Each column */
.footer-col strong {
  font-size: 0.85rem;   /* Phone / Email labels */
  font-weight: 700;
}
.footer-col span {
  line-height: 1.3;      /* slightly tighter stack for phone/email */
  margin-top: 0;         /* remove any inherited spacing */
  font-size: .85rem;
}
.follow-text {
  margin-top: 6px;       /* was 3-4px; balanced against tightened text columns */
  line-height: 1.3;
}

/* Column alignments */
.footer-col:first-child {
  text-align: left;
  align-items: flex-start;
}

.footer-col:nth-child(2) {
  text-align: left;           /* ← changed from center */
  align-items: flex-start;    /* ← changed from center */
}

.footer-col:nth-child(3) {
  text-align: left;
  align-items: flex-start;
}

.footer-col:last-child {
  text-align: left;
  align-items: flex-start;
}

/* Stack label above text */
.footer-col strong {
  display: block;
  margin-bottom: 1px;    /* was ~3-6px; tighter now */
  line-height: 1.2;      /* keeps label compact */
}

/* LinkedIn icon */
.linkedin svg {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.linkedin:hover svg {
  transform: translateY(-4px) scale(1.15);
  opacity: 0.95;
  fill: #0A66C2;
  filter: drop-shadow(0 2px 4px rgba(10, 102, 194, 0.3));

}

/* Right column fine-tuning */
.footer-right {
  line-height: 1.1;
}

.footer-credit {
  margin-top: 8px;
  line-height: 1.3;
  font-size: .85rem;
}
/* LinkedIn follow label */
.follow-text {
  display: block;
  margin-top: 4px;
  font-size: 0.85em;
  color: #595959;
  text-align: center;
  letter-spacing: 0.3px;
}
/* Target only the BA logo — shrink without affecting other logos */
.hbo_logo {
  width: 150px;    /* or 220px, 180px, etc. */
  height: auto;
  display: block;
  margin: 10px auto;
}
.hbo_logo + .job-header-right {
  margin-left: 105px;  /* adjust until aligned */
}



/* Responsive layout */
@media (max-width: 768px) {

  /* ===== MOBILE HEADER ===== */
  header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px 0;
    position: relative;
  }

  /* Name + subtitle centered */
  .header-left {
    flex-direction: column;
    gap: 2px;
    text-align: center;
  }

  .subtitle {
    font-size: 0.85rem;
    white-space: nowrap;
  }

  /* Hamburger in top-right */
  .hamburger {
    display: flex;
    position: absolute;
    top: 10px;
    right: 16px;
  }

  /* Dropdown below header */
  .header-nav {
    display: none;
    width: 100%;
    margin-top: 12px;
    text-align: center;
  }

  .header-nav.open {
    display: block;
  }

  .header-nav ul {
    flex-direction: column;
    gap: 10px;
  }
  /* Remove pipes on mobile */
.header-nav ul li:not(:last-child)::after {
  content: "" !important;
  margin: 0 !important;
}


  /* ===== MOBILE FOOTER ===== */
  footer {
    flex-direction: column;
    text-align: center;
    gap: 14px;
    margin-top: 20px;
  }

  .footer-col {
    text-align: center !important;
    width: 100%;
  }
}




