/* SchuylkillExcel Brand Colors */
/* Teal: #006D6F  |  Green: #7AB800 */

/* Gotham Font */
@font-face {
  font-family: 'Gotham';
  src: url('/fonts/GothamHTF-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Gotham';
  src: url('/fonts/GothamHTF-Book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Gotham';
  src: url('/fonts/GothamHTF-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Gotham';
  src: url('/fonts/GothamHTF-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

:root {
  --se-teal: #006D6F;
  --se-green: #7AB800;
  --se-dark: #1a1a2e;
}

/* Apply Gotham everywhere */
body, h1, h2, h3, h4, h5, h6, p, a, span, li, .navbar-brand, .btn, .badge, .card {
  font-family: 'Gotham', 'Segoe UI', sans-serif !important;
}

/* Reduce section spacing */
section {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

/* Hero logo - match text height, no card background */
#hero .image img {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  max-width: 100%;
  height: auto;
}

/* Kill the gap between hero and about */
#hero {
  min-height: auto !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}
#about {
  padding-top: 0.5rem !important;
  margin-top: 0 !important;
}

/* Override theme's bold about text */
#about .content {
  font-weight: 300 !important;
}

/* About me text - light weight, readable */
.about-text,
.about-text p {
  font-weight: 300 !important;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
}
.about-text strong {
  font-weight: 600 !important;
  color: var(--se-dark);
}

/* Mobile headshot */
.about-img-mobile {
  width: 120px;
  height: 120px;
  object-fit: cover;
  padding: 0 !important;
  border: 2px solid var(--se-teal) !important;
}

/* Core Capabilities badges - 4 across */
.about-text .badge {
  font-size: 0.85rem;
  font-weight: 400 !important;
  white-space: normal;
  text-align: center;
}

/* Buttons */
.btn {
  background-color: var(--se-teal) !important;
  border-color: var(--se-teal) !important;
  color: #fff !important;
}
.btn:hover {
  background-color: #005557 !important;
  border-color: #005557 !important;
}

/* Links */
a {
  color: var(--se-teal);
}
a:hover {
  color: #005557;
}

/* Social link icons - make LinkedIn visible */
.hero-content + div a,
#hero a:not(.btn) {
  color: var(--se-teal) !important;
}
#hero a:not(.btn):hover {
  color: var(--se-green) !important;
}
/* Fix LinkedIn icon specifically */
#hero .fab,
#hero .fa-linkedin {
  color: var(--se-teal) !important;
  font-size: 1.5rem;
}
#hero .fab:hover,
#hero .fa-linkedin:hover {
  color: var(--se-green) !important;
}

/* Badges on service cards - NO dark text on teal */
.badge-secondary {
  background-color: var(--se-green) !important;
  color: #fff !important;
}

/* Navbar brand */
.navbar-brand {
  color: var(--se-teal) !important;
  font-weight: 500;
}

/* Hero section */
#hero h1 {
  color: var(--se-teal);
}
#hero h2 {
  color: var(--se-green);
}

/* Section headings */
section h3 {
  color: var(--se-teal);
}

/* About section skills badges */
.badge {
  background-color: var(--se-green) !important;
  color: #fff !important;
}

/* Nav links */
.nav-link:hover {
  color: var(--se-green) !important;
}

/* Experience section */
.experience-card {
  border: none !important;
  border-radius: 0.75rem !important;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.experience-card:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 24px rgba(0, 0, 0, 0.12);
}
.experience-logo {
  width: 80px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
}
.experience-title {
  color: var(--se-dark) !important;
  font-weight: 600 !important;
}
.experience-company {
  color: var(--se-teal) !important;
  font-weight: 400 !important;
  font-size: 0.95rem;
}
.experience-date {
  background-color: var(--se-teal) !important;
  color: #fff !important;
  font-weight: 400 !important;
  font-size: 0.8rem;
}
.experience-content {
  font-weight: 300 !important;
  line-height: 1.6;
  color: #444;
}
.experience-content strong {
  font-weight: 600 !important;
  color: var(--se-dark);
}
.experience-badge {
  font-size: 0.75rem !important;
  font-weight: 400 !important;
}

/* Contact section outline button */
.btn-outline {
  background-color: transparent !important;
  border: 2px solid var(--se-teal) !important;
  color: var(--se-teal) !important;
}
.btn-outline:hover {
  background-color: var(--se-teal) !important;
  color: #fff !important;
}

/* Footer social links */
footer a {
  color: var(--se-teal) !important;
}
footer a:hover {
  color: var(--se-green) !important;
}
