/* Custom Styles & Micro-interactions for Third Angle Landing Page */

/* Base font adjustments */
html {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  scroll-behavior: smooth;
  background-color: #FAF7F2;
}

/* Active navigation state line indicator */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #182C4A;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

.nav-link.active {
  color: #182C4A !important;
  font-weight: 700;
}

/* Mobile active nav link */
.mobile-nav-link.active {
  color: #182C4A !important;
  font-weight: 700;
  padding-left: 0.5rem;
  border-left: 3px solid #B89766;
}

/* Section scroll margins */
section {
  scroll-margin-top: 5rem;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #FAF7F2;
}

::-webkit-scrollbar-thumb {
  background: #D5C8B4;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #B89766;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid #182C4A;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  header, footer, #toast, #mobile-menu-btn {
    display: none !important;
  }

  body {
    background: #FFFFFF !important;
    color: #000000 !important;
  }

  section {
    page-break-inside: avoid;
    border: none !important;
  }
}
