:root {
  --lwd-primary: #0f3d3e;
  --lwd-primary-light: #1a5c5e;
  --lwd-accent: #e8b923;
  --lwd-dark: #0a1f1f;
  --lwd-muted: #5c6b6b;
  --bs-primary: #0f3d3e;
  --bs-primary-rgb: 15, 61, 62;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--lwd-dark);
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero {
  background: linear-gradient(135deg, var(--lwd-primary) 0%, var(--lwd-primary-light) 45%, #0d4a4c 100%);
  color: #fff;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hero .lead {
  opacity: 0.92;
  max-width: 36rem;
}

.btn-accent {
  background-color: var(--lwd-accent);
  border-color: var(--lwd-accent);
  color: var(--lwd-dark);
  font-weight: 600;
}

.btn-accent:hover {
  background-color: #f0c94a;
  border-color: #f0c94a;
  color: var(--lwd-dark);
}

.btn-primary {
  --bs-btn-bg: var(--lwd-primary);
  --bs-btn-border-color: var(--lwd-primary);
  --bs-btn-hover-bg: var(--lwd-primary-light);
  --bs-btn-hover-border-color: var(--lwd-primary-light);
  --bs-btn-active-bg: var(--lwd-primary-light);
  --bs-btn-active-border-color: var(--lwd-primary-light);
}

.btn-outline-primary {
  --bs-btn-color: var(--lwd-primary);
  --bs-btn-border-color: var(--lwd-primary);
  --bs-btn-hover-bg: var(--lwd-primary);
  --bs-btn-hover-border-color: var(--lwd-primary);
}

.section-title {
  font-weight: 700;
  color: var(--lwd-primary);
}

.job-card {
  border: 1px solid rgba(15, 61, 62, 0.12);
  border-radius: 0.75rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.job-card:hover {
  box-shadow: 0 0.75rem 2rem rgba(15, 61, 62, 0.12);
  transform: translateY(-2px);
}

.badge-type {
  background-color: rgba(15, 61, 62, 0.08);
  color: var(--lwd-primary);
  font-weight: 500;
}

footer {
  background-color: var(--lwd-dark);
  color: rgba(255, 255, 255, 0.85);
}

footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

footer a:hover {
  color: var(--lwd-accent);
}

.navbar-dark.bg-brand {
  background-color: var(--lwd-primary) !important;
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--lwd-primary);
}

.page-hero {
  background: linear-gradient(135deg, var(--lwd-primary) 0%, var(--lwd-primary-light) 50%, #0d4a4c 100%);
  color: #fff;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.page-hero h1 {
  font-weight: 700;
}

.breadcrumb-on-dark .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumb-on-dark .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.65);
}

.form-card {
  border: 1px solid rgba(15, 61, 62, 0.12);
  border-radius: 0.75rem;
  box-shadow: 0 0.25rem 1rem rgba(15, 61, 62, 0.06);
}

.admin-stat {
  border: 1px solid rgba(15, 61, 62, 0.1);
  border-radius: 0.75rem;
  padding: 1.25rem;
  background: #fff;
}

.admin-stat .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--lwd-muted);
  font-weight: 600;
}

.admin-stat .value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--lwd-primary);
}

.table-admin thead th {
  background-color: rgba(15, 61, 62, 0.06);
  color: var(--lwd-primary);
  font-weight: 600;
  font-size: 0.85rem;
  border-bottom-color: rgba(15, 61, 62, 0.12);
}

.table-admin td {
  vertical-align: middle;
  font-size: 0.9rem;
}

.nav-pills-admin .nav-link {
  color: var(--lwd-primary);
  border-radius: 0.5rem;
}

.nav-pills-admin .nav-link.active {
  background-color: var(--lwd-primary);
}

.admin-note {
  font-size: 0.85rem;
  color: var(--lwd-muted);
  border-left: 3px solid var(--lwd-accent);
  padding-left: 0.75rem;
}

.job-animate {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInFromLeft 5s ease forwards;
}

@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
