
@font-face {
  font-family: 'Inter';
  src: url(../c504db5c06caaf7cdfba.woff2) format('woff2-variations');
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url(../01dcbad1bac635f9c9cd.woff2) format('woff2-variations');
  font-weight: 100 900;
  font-display: swap;
  font-style: italic;
}

/* ===== Header ===== */
.site-header {
  background-color: #fff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 100;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 38px;
  width: auto;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #111827;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links {
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem !important;
  }
  .home-nav-link{
    display: none;
  }
}


/* ===== Mobile Burger Menu ===== */

/* ---------- Burger Button ---------- */
.burger {
  width: 32px;
  height: 26px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.burger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #374151;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.burger.open span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* ---------- Mobile Menu ---------- */
@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 46px;
    right: 0;
    left: 0;
    background: white;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    border-top: 1px solid #e5e7eb;
    transform: translateY(-200%);
    transition: transform 0.3s ease;
    opacity: 0;
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-container {
    flex-direction: row;
    align-items: center;
  }

  .home-nav-link {
    display: block;
  }
}

.site-footer {
  background-color: #f9fafb;
  border-top: 1px solid #e5e7eb;
  padding: 1.8rem 1.5rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: #4b5563;
  font-size: 0.95rem;
}

.site-footer a {
  color: #4b5563;
  text-decoration: none;
  margin-left: 0.5rem;
}

.site-footer a:hover {
  text-decoration: underline;
}

body{
    background-color: #f9fafb;
}


.breadcrumbs {
  max-width: 100%;
  padding: 1.5rem 20vw;
  font-size: 0.9rem;
  color: #4b5563;
  background-color: #f9fafb;
}

.breadcrumbs a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs span {
  margin: 0 6px;
  color: #6b7280;
}

@media (max-width: 768px) {
  .breadcrumbs {
    padding: 2rem 5vw;
  }
}

@media (max-width: 480px) {
  .breadcrumbs {
    padding: 0.7rem 0.8rem;
    font-size: 0.82rem;
  }
}

