File size: 45,649 Bytes
90e6c1c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 | // Mobile Navigation Toggle
const hamburger = document.querySelector('.hamburger');
const navMenu = document.querySelector('.nav-menu');
if (hamburger) {
hamburger.addEventListener('click', () => {
navMenu.classList.toggle('active');
hamburger.classList.toggle('active');
});
}
// Auto-position submenus consistently per parent menu level
// All child menus within a parent (In/Proc/Out) point in the same direction
// If ANY child menu level would equal or exceed the right margin, ALL menus point leftward
//
// FUTURE-PROOF: This function automatically works for new pages/menus because:
// - Uses generic selectors (.nav-menu > .dropdown) - finds any top-level parent
// - Dynamically detects parent type from link text/href - no hardcoded names
// - Finds ALL child menus at ALL nesting levels - works for any depth
// - Uses MutationObserver to detect DOM changes - catches dynamically added menus
// - Re-runs on window resize - adapts to viewport changes
function initSubmenuPositioning() {
// Find all top-level dropdown menus (In, Proc, Out, or any future parents)
// This selector is generic and will find any top-level dropdown menu
const topLevelDropdowns = document.querySelectorAll('.nav-menu > .dropdown');
topLevelDropdowns.forEach(parentDropdown => {
const parentLink = parentDropdown.querySelector('a.nav-link');
if (!parentLink) return;
// Determine which parent this is (In, Proc, or Out)
const linkText = parentLink.textContent.trim();
const linkHref = parentLink.getAttribute('href') || '';
let parentType = null;
if (linkText.includes('In') || linkHref.includes('/in.html') || linkHref.includes('/in/in.html')) {
parentType = 'in';
} else if (linkText.includes('Proc') || linkHref.includes('/processing.html') || linkHref.includes('/processing/processing.html')) {
parentType = 'processing';
} else if (linkText.includes('Out') || linkHref.includes('/out.html') || linkHref.includes('/out/out.html')) {
parentType = 'out';
}
// Get the parent dropdown menu
const parentDropdownMenu = parentDropdown.querySelector('.dropdown-menu');
if (!parentDropdownMenu) return;
// Calculate if this parent menu should point leftward or rightward
function determineParentDirection() {
const parentRect = parentDropdown.getBoundingClientRect();
const viewportWidth = window.innerWidth;
const padding = 10;
const safetyMargin = 20;
const rightMargin = viewportWidth - padding - safetyMargin;
// Find maximum nesting depth
let maxDepth = 0;
function findMaxDepth(element, currentDepth = 0) {
// Get direct child li elements, then their direct child ul elements
const directLiChildren = Array.from(element.children).filter(child => child.tagName === 'LI');
const childMenus = [];
directLiChildren.forEach(li => {
const directUlChild = Array.from(li.children).find(child => child.tagName === 'UL');
if (directUlChild) {
childMenus.push(directUlChild);
}
});
if (childMenus.length === 0) {
if (currentDepth > maxDepth) {
maxDepth = currentDepth;
}
return;
}
childMenus.forEach(childMenu => {
findMaxDepth(childMenu, currentDepth + 1);
});
}
findMaxDepth(parentDropdownMenu);
// Estimate submenu width (average width for nested menus)
const estimatedSubmenuWidth = 220;
// Calculate rightmost edge position if all menus point rightward
// This represents the worst-case scenario
const rightmostEdgePosition = parentRect.right + (estimatedSubmenuWidth * maxDepth);
// Debug logging
console.log(`[Menu Direction] ${parentType || 'unknown'}: parent.right=${parentRect.right.toFixed(0)}, maxDepth=${maxDepth}, rightmostEdge=${rightmostEdgePosition.toFixed(0)}, rightMargin=${rightMargin.toFixed(0)}`);
// Check if rightmost edge would equal or exceed right margin
if (rightmostEdgePosition >= rightMargin) {
// ANY menu level would exceed right margin → point ALL leftward
console.log(`[Menu Direction] ${parentType || 'unknown'}: OVERFLOW DETECTED → pointing LEFTWARD`);
return 'leftward';
}
// Also check each menu level individually
const allChildMenus = parentDropdownMenu.querySelectorAll('ul');
for (let childMenu of allChildMenus) {
// Calculate depth of this menu
let depth = 0;
let current = childMenu;
while (current && current !== parentDropdownMenu) {
if (current.tagName === 'UL') {
depth++;
}
current = current.parentElement;
}
// Get parent menu item
const parentMenuItem = childMenu.parentElement;
if (parentMenuItem) {
const menuItemRect = parentMenuItem.getBoundingClientRect();
// Calculate where this menu's right edge would be
const estimatedRightEdge = menuItemRect.right + estimatedSubmenuWidth;
// If this menu would equal or exceed right margin, point all leftward
if (estimatedRightEdge >= rightMargin) {
console.log(`[Menu Direction] ${parentType || 'unknown'}: Individual menu overflow → pointing LEFTWARD`);
return 'leftward';
}
}
}
// For Out and Proc, also check if parent is close to right edge
if (parentType === 'out' || parentType === 'processing') {
const spaceOnRight = viewportWidth - parentRect.right - padding - safetyMargin;
const spaceOnLeft = parentRect.left - padding;
// If parent is in right 70% of screen or space on right is limited, prefer leftward
if (parentRect.right > viewportWidth * 0.7 || spaceOnRight < spaceOnLeft * 1.2) {
console.log(`[Menu Direction] ${parentType}: Close to right edge → pointing LEFTWARD`);
return 'leftward';
}
}
// Default: rightward if there's enough space
console.log(`[Menu Direction] ${parentType || 'unknown'}: Enough space → pointing RIGHTWARD`);
return 'rightward';
}
// Determine direction for this parent menu
const parentDirection = determineParentDirection();
// Find ALL child menus at ALL levels within this parent
const allChildMenus = parentDropdownMenu.querySelectorAll('ul');
// Apply consistent direction to all child menus with STRONG inline styles
allChildMenus.forEach(childMenu => {
if (parentDirection === 'leftward') {
// Point leftward - add class and set styles
childMenu.classList.add('submenu-reversed');
childMenu.style.setProperty('left', 'auto', 'important');
childMenu.style.setProperty('right', '100%', 'important');
childMenu.style.setProperty('margin-left', '0', 'important');
childMenu.style.setProperty('margin-right', '2px', 'important');
} else {
// Point rightward - remove class and set styles
childMenu.classList.remove('submenu-reversed');
childMenu.style.setProperty('left', '100%', 'important');
childMenu.style.setProperty('right', 'auto', 'important');
childMenu.style.setProperty('margin-left', '2px', 'important');
childMenu.style.setProperty('margin-right', '0', 'important');
}
});
// Set up hover handlers to maintain consistency
const menuItemsWithChildren = parentDropdownMenu.querySelectorAll('li:has(> ul)');
menuItemsWithChildren.forEach(menuItem => {
// Get direct child ul (not nested)
const submenu = Array.from(menuItem.children).find(child => child.tagName === 'UL');
if (!submenu) return;
// On hover, ensure consistent direction is maintained
menuItem.addEventListener('mouseenter', () => {
if (parentDirection === 'leftward') {
submenu.classList.add('submenu-reversed');
submenu.style.setProperty('left', 'auto', 'important');
submenu.style.setProperty('right', '100%', 'important');
submenu.style.setProperty('margin-left', '0', 'important');
submenu.style.setProperty('margin-right', '2px', 'important');
} else {
submenu.classList.remove('submenu-reversed');
submenu.style.setProperty('left', '100%', 'important');
submenu.style.setProperty('right', 'auto', 'important');
submenu.style.setProperty('margin-left', '2px', 'important');
submenu.style.setProperty('margin-right', '0', 'important');
}
});
});
});
// Re-check on window resize
let resizeTimer;
window.addEventListener('resize', () => {
clearTimeout(resizeTimer);
resizeTimer = setTimeout(() => {
initSubmenuPositioning();
}, 100);
});
}
// Initialize submenu positioning when DOM is ready
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', initSubmenuPositioning);
} else {
initSubmenuPositioning();
}
// Re-initialize after dynamic menus are loaded
setTimeout(initSubmenuPositioning, 600);
setTimeout(initSubmenuPositioning, 1000);
// Also observe DOM changes for dynamically added menus
// FUTURE-PROOF: This ensures new menus added via JavaScript are automatically positioned
const observer = new MutationObserver((mutations) => {
// Only re-run if dropdown menus were added/modified
let shouldUpdate = false;
mutations.forEach(mutation => {
mutation.addedNodes.forEach(node => {
if (node.nodeType === 1 && (
node.classList?.contains('dropdown') ||
node.classList?.contains('dropdown-menu') ||
node.querySelector?.('.dropdown') ||
node.querySelector?.('.dropdown-menu')
)) {
shouldUpdate = true;
}
});
});
if (shouldUpdate) {
setTimeout(initSubmenuPositioning, 100);
}
});
observer.observe(document.body, { childList: true, subtree: true });
// Close mobile menu when clicking on a link
const navLinks = document.querySelectorAll('.nav-link, .dropdown-link, .submenu-link');
navLinks.forEach(link => {
link.addEventListener('click', () => {
navMenu.classList.remove('active');
hamburger.classList.remove('active');
});
});
// Handle dropdown menus on mobile
const dropdowns = document.querySelectorAll('.dropdown');
dropdowns.forEach(dropdown => {
const dropdownLink = dropdown.querySelector('.nav-link');
if (dropdownLink) {
dropdownLink.addEventListener('click', (e) => {
if (window.innerWidth <= 768) {
e.preventDefault();
dropdown.classList.toggle('active');
}
});
}
});
// Theme Toggle Functionality - Helper functions
// Inject stylesheet immediately if dark theme is detected (runs before DOMContentLoaded)
(function() {
if (typeof localStorage !== 'undefined') {
const savedTheme = localStorage.getItem('theme') || 'light';
if (savedTheme === 'dark') {
// Inject stylesheet immediately in head
const darkThemeStyle = document.createElement('style');
darkThemeStyle.id = 'dark-theme-override-style';
darkThemeStyle.textContent = `
/* Override CSS variables at root level */
:root.dark-theme,
html.dark-theme,
body.dark-theme {
--color-text: #ffffff !important;
--color-text-light: #ffffff !important;
}
/* Force all content-text and children to white */
body.dark-theme .content-text,
html.dark-theme .content-text,
body.dark-theme .content-text *,
html.dark-theme .content-text *,
body.dark-theme .content-text p,
html.dark-theme .content-text p,
body.dark-theme .section .content-text,
html.dark-theme .section .content-text,
body.dark-theme .section .content-text *,
html.dark-theme .section .content-text *,
body.dark-theme .section .content-text p,
html.dark-theme .section .content-text p,
body.dark-theme main .content-text,
html.dark-theme main .content-text,
body.dark-theme main .content-text *,
html.dark-theme main .content-text *,
body.dark-theme main .content-text p,
html.dark-theme main .content-text p,
body.dark-theme .container .content-text,
html.dark-theme .container .content-text,
body.dark-theme .container .content-text *,
html.dark-theme .container .content-text *,
body.dark-theme .container .content-text p,
html.dark-theme .container .content-text p,
body.dark-theme .content-grid .content-text,
html.dark-theme .content-grid .content-text,
body.dark-theme .content-grid .content-text *,
html.dark-theme .content-grid .content-text *,
body.dark-theme .content-grid .content-text p,
html.dark-theme .content-grid .content-text p {
color: #ffffff !important;
--color-text: #ffffff !important;
--color-text-light: #ffffff !important;
}
/* Force background colors */
body.dark-theme main,
html.dark-theme main,
body.dark-theme .section,
html.dark-theme .section,
body.dark-theme .container,
html.dark-theme .container,
body.dark-theme .content-grid,
html.dark-theme .content-grid {
background-color: #1a1a1a !important;
color: #ffffff !important;
--color-text: #ffffff !important;
--color-text-light: #ffffff !important;
}
/* Force h1 in content-grid */
body.dark-theme .content-grid h1,
html.dark-theme .content-grid h1,
body.dark-theme .content-text h1,
html.dark-theme .content-text h1 {
color: #ffffff !important;
}
`;
// Insert immediately if head exists, otherwise wait for it
if (document.head) {
document.head.appendChild(darkThemeStyle);
} else {
document.addEventListener('DOMContentLoaded', function() {
if (!document.getElementById('dark-theme-override-style')) {
document.head.appendChild(darkThemeStyle);
}
});
}
}
}
})();
function applyInlineDarkThemeStyles() {
// Inject a dynamic stylesheet to override everything - most aggressive approach
let darkThemeStyle = document.getElementById('dark-theme-override-style');
if (!darkThemeStyle) {
darkThemeStyle = document.createElement('style');
darkThemeStyle.id = 'dark-theme-override-style';
// Insert at the end of head to ensure it overrides everything
document.head.appendChild(darkThemeStyle);
}
// Use a comprehensive stylesheet that targets every possible selector
darkThemeStyle.textContent = `
/* Override CSS variables at root level */
:root.dark-theme,
html.dark-theme,
body.dark-theme {
--color-text: #ffffff !important;
--color-text-light: #ffffff !important;
}
/* Force all content-text and children to white */
body.dark-theme .content-text,
html.dark-theme .content-text,
body.dark-theme .content-text *,
html.dark-theme .content-text *,
body.dark-theme .content-text p,
html.dark-theme .content-text p,
body.dark-theme .section .content-text,
html.dark-theme .section .content-text,
body.dark-theme .section .content-text *,
html.dark-theme .section .content-text *,
body.dark-theme .section .content-text p,
html.dark-theme .section .content-text p,
body.dark-theme main .content-text,
html.dark-theme main .content-text,
body.dark-theme main .content-text *,
html.dark-theme main .content-text *,
body.dark-theme main .content-text p,
html.dark-theme main .content-text p,
body.dark-theme .container .content-text,
html.dark-theme .container .content-text,
body.dark-theme .container .content-text *,
html.dark-theme .container .content-text *,
body.dark-theme .container .content-text p,
html.dark-theme .container .content-text p,
body.dark-theme .content-grid .content-text,
html.dark-theme .content-grid .content-text,
body.dark-theme .content-grid .content-text *,
html.dark-theme .content-grid .content-text *,
body.dark-theme .content-grid .content-text p,
html.dark-theme .content-grid .content-text p {
color: #ffffff !important;
--color-text: #ffffff !important;
--color-text-light: #ffffff !important;
}
/* Force background colors */
body.dark-theme main,
html.dark-theme main,
body.dark-theme .section,
html.dark-theme .section,
body.dark-theme .container,
html.dark-theme .container,
body.dark-theme .content-grid,
html.dark-theme .content-grid {
background-color: #1a1a1a !important;
color: #ffffff !important;
--color-text: #ffffff !important;
--color-text-light: #ffffff !important;
}
/* Force h1 in content-grid */
body.dark-theme .content-grid h1,
html.dark-theme .content-grid h1,
body.dark-theme .content-text h1,
html.dark-theme .content-text h1 {
color: #ffffff !important;
}
`;
// Also force update CSS variables on html and body first
document.documentElement.style.setProperty('--color-text', '#ffffff', 'important');
document.documentElement.style.setProperty('--color-text-light', '#ffffff', 'important');
document.documentElement.style.setProperty('background-color', '#1a1a1a', 'important');
document.body.style.setProperty('--color-text', '#ffffff', 'important');
document.body.style.setProperty('--color-text-light', '#ffffff', 'important');
document.body.style.setProperty('background-color', '#1a1a1a', 'important');
// Batch DOM updates for better performance
const contentTextElements = document.querySelectorAll('.content-text');
const main = document.querySelector('main');
const section = document.querySelector('.section');
const container = document.querySelector('.container');
const contentGrid = document.querySelector('.content-grid');
// Update main containers first with CSS variables
if (main) {
main.style.setProperty('background-color', '#1a1a1a', 'important');
main.style.setProperty('color', '#ffffff', 'important');
main.style.setProperty('--color-text', '#ffffff', 'important');
main.style.setProperty('--color-text-light', '#ffffff', 'important');
}
if (section) {
section.style.setProperty('background-color', '#1a1a1a', 'important');
section.style.setProperty('color', '#ffffff', 'important');
section.style.setProperty('--color-text', '#ffffff', 'important');
section.style.setProperty('--color-text-light', '#ffffff', 'important');
}
if (container) {
container.style.setProperty('color', '#ffffff', 'important');
container.style.setProperty('--color-text', '#ffffff', 'important');
container.style.setProperty('--color-text-light', '#ffffff', 'important');
}
if (contentGrid) {
contentGrid.style.setProperty('color', '#ffffff', 'important');
contentGrid.style.setProperty('--color-text', '#ffffff', 'important');
contentGrid.style.setProperty('--color-text-light', '#ffffff', 'important');
}
// Update all content-text elements and their children in one pass
contentTextElements.forEach(el => {
// Set CSS variables on the element itself
el.style.setProperty('--color-text', '#ffffff', 'important');
el.style.setProperty('--color-text-light', '#ffffff', 'important');
el.style.setProperty('color', '#ffffff', 'important');
el.style.setProperty('background-color', 'transparent', 'important');
// CRITICAL: Update paragraphs FIRST with direct color override
const paragraphs = el.querySelectorAll('p');
paragraphs.forEach(p => {
// Force color directly - this overrides CSS variable usage
p.style.setProperty('color', '#ffffff', 'important');
p.style.setProperty('--color-text-light', '#ffffff', 'important');
});
// Update ALL other children recursively
const allChildren = el.querySelectorAll('*:not(p)');
allChildren.forEach(child => {
child.style.setProperty('color', '#ffffff', 'important');
});
const headings = el.querySelectorAll('h1, h2, h3, h4, h5, h6');
headings.forEach(h => {
h.style.setProperty('color', '#ffffff', 'important');
});
const textElements = el.querySelectorAll('strong, b, a, span, em, i');
textElements.forEach(t => {
t.style.setProperty('color', '#ffffff', 'important');
});
});
// Also update h1 in content-grid
const h1Elements = document.querySelectorAll('.content-grid h1, .content-text h1');
h1Elements.forEach(h1 => {
h1.style.setProperty('color', '#ffffff', 'important');
});
}
function removeInlineDarkThemeStyles() {
// Remove the dynamic stylesheet
const darkThemeStyle = document.getElementById('dark-theme-override-style');
if (darkThemeStyle) {
darkThemeStyle.remove();
}
// CRITICAL: Remove dark background from html and body
document.documentElement.style.removeProperty('background-color');
document.documentElement.style.setProperty('background-color', '#ffffff', 'important');
document.body.style.removeProperty('background-color');
document.body.style.setProperty('background-color', '#ffffff', 'important');
// Remove CSS variables from html and body
document.documentElement.style.removeProperty('--color-text');
document.documentElement.style.removeProperty('--color-text-light');
document.body.style.removeProperty('--color-text');
document.body.style.removeProperty('--color-text-light');
// Batch DOM updates for better performance
const contentTextElements = document.querySelectorAll('.content-text');
const main = document.querySelector('main');
const section = document.querySelector('.section');
const container = document.querySelector('.container');
const contentGrid = document.querySelector('.content-grid');
// Update main containers first - explicitly set to white background
if (main) {
main.style.setProperty('background-color', '#ffffff', 'important');
main.style.removeProperty('color');
main.style.removeProperty('--color-text');
main.style.removeProperty('--color-text-light');
}
if (section) {
section.style.setProperty('background-color', '#ffffff', 'important');
section.style.removeProperty('color');
section.style.removeProperty('--color-text');
section.style.removeProperty('--color-text-light');
}
if (container) {
container.style.removeProperty('color');
container.style.removeProperty('--color-text');
container.style.removeProperty('--color-text-light');
}
if (contentGrid) {
contentGrid.style.removeProperty('color');
contentGrid.style.removeProperty('--color-text');
contentGrid.style.removeProperty('--color-text-light');
}
// Remove styles from all content-text elements and their children in one pass
contentTextElements.forEach(el => {
el.style.removeProperty('--color-text');
el.style.removeProperty('--color-text-light');
el.style.removeProperty('color');
el.style.removeProperty('background-color');
// Remove from paragraphs first
const paragraphs = el.querySelectorAll('p');
paragraphs.forEach(p => {
p.style.removeProperty('color');
p.style.removeProperty('--color-text-light');
});
// Remove from ALL other children
const allChildren = el.querySelectorAll('*:not(p)');
allChildren.forEach(child => {
child.style.removeProperty('color');
});
});
// Remove from h1 elements
const h1Elements = document.querySelectorAll('.content-grid h1, .content-text h1');
h1Elements.forEach(h1 => {
h1.style.removeProperty('color');
});
}
function initThemeToggle() {
const themeToggle = document.getElementById('themeToggle');
const body = document.body;
const html = document.documentElement;
if (!themeToggle) {
// Retry if element not found yet
setTimeout(initThemeToggle, 100);
return;
}
const themeIcon = themeToggle.querySelector('.theme-icon');
// Check for saved theme preference or default to light mode
const currentTheme = localStorage.getItem('theme') || 'light';
if (currentTheme === 'dark') {
body.classList.add('dark-theme');
html.classList.add('dark-theme');
document.documentElement.classList.add('dark-theme');
if (themeIcon) themeIcon.textContent = '☀️';
// Apply inline styles on load if dark theme - use setTimeout to ensure DOM is ready
setTimeout(() => {
applyInlineDarkThemeStyles();
}, 0);
} else {
body.classList.remove('dark-theme');
html.classList.remove('dark-theme');
document.documentElement.classList.remove('dark-theme');
if (themeIcon) themeIcon.textContent = '🌙';
// Ensure no inline styles if light theme
removeInlineDarkThemeStyles();
}
// Mark that listener is attached
if (!themeToggle.hasAttribute('data-listener-attached')) {
themeToggle.setAttribute('data-listener-attached', 'true');
// Toggle theme - instant seamless change
themeToggle.addEventListener('click', (e) => {
e.preventDefault();
e.stopPropagation();
// Disable transitions temporarily for instant theme change
const style = document.createElement('style');
style.textContent = `
*, *::before, *::after {
transition: none !important;
}
`;
document.head.appendChild(style);
// Immediately toggle classes on all elements - ensure class is properly set
const currentlyDark = body.classList.contains('dark-theme');
if (currentlyDark) {
// Switching to light
body.classList.remove('dark-theme');
html.classList.remove('dark-theme');
document.documentElement.classList.remove('dark-theme');
} else {
// Switching to dark
body.classList.add('dark-theme');
html.classList.add('dark-theme');
document.documentElement.classList.add('dark-theme');
}
const isDark = body.classList.contains('dark-theme');
// Update icon immediately
if (themeIcon) {
themeIcon.textContent = isDark ? '☀️' : '🌙';
}
// Save preference (non-blocking)
localStorage.setItem('theme', isDark ? 'dark' : 'light');
// Apply or remove inline styles based on theme - do it immediately
if (isDark) {
applyInlineDarkThemeStyles();
} else {
removeInlineDarkThemeStyles();
}
// Re-enable transitions after a brief moment (for other interactions)
requestAnimationFrame(() => {
requestAnimationFrame(() => {
if (document.head.contains(style)) {
document.head.removeChild(style);
}
});
});
});
}
}
// Initialize theme toggle when DOM is ready - multiple fallbacks
function initializeThemeToggle() {
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', initThemeToggle);
} else if (document.readyState === 'interactive' || document.readyState === 'complete') {
// DOM already loaded or nearly loaded
initThemeToggle();
} else {
// Fallback: try immediately and retry if needed
initThemeToggle();
}
}
// Try multiple initialization methods
initializeThemeToggle();
// Also try after a short delay as fallback
setTimeout(() => {
const themeToggle = document.getElementById('themeToggle');
if (themeToggle && !themeToggle.hasAttribute('data-listener-attached')) {
initThemeToggle();
}
}, 100);
// Chat Agent Functionality
function initChatAgent() {
// Support both chatButton and chatAgentBtn IDs
const chatButton = document.getElementById('chatButton') || document.getElementById('chatAgentBtn');
const chatWindow = document.getElementById('chatWindow');
const chatClose = document.getElementById('chatClose');
const chatInput = document.getElementById('chatInput');
const chatSend = document.getElementById('chatSend');
const chatMessages = document.getElementById('chatMessages');
if (chatButton && chatWindow) {
// Mark listener as attached to prevent duplicates
if (!chatButton.hasAttribute('data-chat-listener-attached')) {
chatButton.setAttribute('data-chat-listener-attached', 'true');
chatButton.addEventListener('click', () => {
chatWindow.classList.toggle('active');
});
}
}
if (chatClose) {
chatClose.addEventListener('click', () => {
chatWindow.classList.remove('active');
});
}
if (chatSend && chatInput) {
chatSend.addEventListener('click', () => {
const message = chatInput.value.trim();
if (message) {
addChatMessage(message, true);
chatInput.value = '';
// Simulate bot response
setTimeout(() => {
addChatMessage('Thank you for your message. How can I help you?');
}, 500);
}
});
chatInput.addEventListener('keypress', (e) => {
if (e.key === 'Enter') {
chatSend.click();
}
});
}
}
// Initialize chat agent when DOM is ready
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', initChatAgent);
} else {
initChatAgent();
}
// Also try after a short delay as fallback
setTimeout(() => {
const chatButton = document.getElementById('chatButton') || document.getElementById('chatAgentBtn');
if (chatButton && !chatButton.hasAttribute('data-chat-listener-attached')) {
chatButton.setAttribute('data-chat-listener-attached', 'true');
initChatAgent();
}
}, 100);
function addChatMessage(message, isUser = false) {
const chatMessages = document.getElementById('chatMessages');
if (!chatMessages) return;
const messageDiv = document.createElement('div');
messageDiv.className = `chat-message ${isUser ? 'user' : 'bot'}`;
messageDiv.textContent = message;
chatMessages.appendChild(messageDiv);
chatMessages.scrollTop = chatMessages.scrollHeight;
}
// ============================================
// Movie-Like Seamless Page Transitions
// ============================================
// Provides invisible, ultra-smooth transitions like a movie
// Crossfade technique for seamless navigation
(function() {
'use strict';
// Prevent multiple initializations
if (window.pageTransitionInitialized) return;
window.pageTransitionInitialized = true;
// Configuration for movie-like transitions - no blank screen
const FADE_IN_DURATION = 80; // milliseconds - very fast
const EASING = 'cubic-bezier(0.2, 0, 0.2, 1)'; // Linear-like for seamless feel
// Initialize page - subtle fade-in only
function initPageFadeIn() {
// Start with opacity 0 for subtle fade-in
document.body.style.opacity = '0';
document.body.classList.add('page-fade-in');
// Fade in immediately
requestAnimationFrame(() => {
document.body.style.opacity = '1';
// Remove fade-in class after animation
setTimeout(() => {
document.body.classList.remove('page-fade-in');
}, FADE_IN_DURATION);
});
}
// Handle link clicks with movie-like crossfade
function handleLinkClicks() {
// Get all internal links (same origin)
const links = document.querySelectorAll('a[href]');
links.forEach(link => {
// Skip if already has transition handler
if (link.dataset.transitionHandler === 'true') return;
link.dataset.transitionHandler = 'true';
const href = link.getAttribute('href');
// Skip if it's not a same-origin link or special links
if (!href ||
href.startsWith('#') ||
href.startsWith('javascript:') ||
href.startsWith('mailto:') ||
href.startsWith('tel:') ||
(link.hasAttribute('target') && link.getAttribute('target') === '_blank') ||
link.hasAttribute('download')) {
return;
}
// Check if it's a same-origin link
try {
const url = new URL(href, window.location.origin);
if (url.origin !== window.location.origin) {
return; // External link, skip
}
} catch (e) {
// Relative URL, proceed
}
// Preload page on hover for instant transition
link.addEventListener('mouseenter', function() {
if (href && !href.startsWith('#')) {
// Prefetch the page for instant loading
const linkElement = document.createElement('link');
linkElement.rel = 'prefetch';
linkElement.href = href;
document.head.appendChild(linkElement);
}
}, { passive: true });
// Add click handler - no fade-out to prevent blank screen
link.addEventListener('click', function(e) {
// Don't interfere with special clicks (Ctrl/Cmd, middle mouse, etc.)
if (e.ctrlKey || e.metaKey || e.shiftKey || e.button !== 0) {
return;
}
// Disable pointer events but keep page visible - no blank screen
document.body.classList.add('page-transition-out');
// Allow navigation to proceed - browser handles the rest
// The new page will fade in seamlessly without blank screen
}, { passive: true });
});
}
// Handle browser back/forward navigation
function handleBrowserNavigation() {
// Use pageshow event for seamless back/forward
window.addEventListener('pageshow', function(event) {
// Remove transition-out class
document.body.classList.remove('page-transition-out');
// If page was loaded from cache (back/forward)
if (event.persisted) {
// Instant appearance - no fade needed
document.body.style.opacity = '1';
} else {
// Regular page load - subtle fade-in
initPageFadeIn();
}
});
// Handle page unload - no fade-out to prevent blank screen
window.addEventListener('beforeunload', function() {
// Just disable pointer events, keep page visible
document.body.classList.add('page-transition-out');
});
}
// Initialize when DOM is ready
function initPageTransitions() {
// Remove any existing transition classes
document.body.classList.remove('page-transition-out');
// Initialize instant appearance
initPageFadeIn();
// Setup link handlers
handleLinkClicks();
// Setup browser navigation handlers
handleBrowserNavigation();
}
// Initialize based on document state
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', initPageTransitions);
} else {
// DOM already loaded
initPageTransitions();
}
// Also initialize after a short delay to catch dynamically added links
setTimeout(handleLinkClicks, 100);
// Re-initialize link handlers when new content is added (for dynamic menus)
const observer = new MutationObserver(function(mutations) {
let shouldReinit = false;
mutations.forEach(function(mutation) {
if (mutation.addedNodes.length > 0) {
mutation.addedNodes.forEach(function(node) {
if (node.nodeType === 1 && (node.tagName === 'A' || node.querySelector('a'))) {
shouldReinit = true;
}
});
}
});
if (shouldReinit) {
handleLinkClicks();
}
});
// Observe the document for new links
if (document.body) {
observer.observe(document.body, {
childList: true,
subtree: true
});
}
// Preload pages on menu hover for instant transitions
document.addEventListener('mouseover', function(e) {
const link = e.target.closest('a[href]');
if (link && link.dataset.transitionHandler === 'true') {
const href = link.getAttribute('href');
if (href && !href.startsWith('#') && !href.startsWith('javascript:')) {
try {
const url = new URL(href, window.location.origin);
if (url.origin === window.location.origin) {
// Prefetch for instant loading
const prefetchLink = document.createElement('link');
prefetchLink.rel = 'prefetch';
prefetchLink.href = href;
if (!document.querySelector(`link[rel="prefetch"][href="${href}"]`)) {
document.head.appendChild(prefetchLink);
}
}
} catch (e) {
// Invalid URL, skip
}
}
}
}, { passive: true });
})();
// ============================================
// Hard Refresh on Resize and Column Changes
// ============================================
// Automatically hard refreshes page when viewport or column sizes change
(function() {
'use strict';
// Prevent multiple initializations
if (window.resizeRefreshInitialized) return;
window.resizeRefreshInitialized = true;
let resizeTimer;
let isRefreshing = false;
let lastWidth = window.innerWidth;
let lastHeight = window.innerHeight;
// Get current column count based on viewport width - MUST be defined first
function getColumnCount() {
const width = window.innerWidth;
if (width < 768) return 1; // Mobile
if (width < 1024) return 2; // Tablet
if (width < 1440) return 3; // Desktop
return 4; // Large desktop
}
let lastColumnCount = getColumnCount();
// Hard refresh the page - simple and direct
function hardRefresh() {
if (isRefreshing) return;
isRefreshing = true;
// Force hard refresh - bypass cache
window.location.reload(true);
}
// Handle resize events - refresh on ANY resize
function handleResize() {
if (isRefreshing) return;
const currentWidth = window.innerWidth;
const currentHeight = window.innerHeight;
const currentColumnCount = getColumnCount();
// Check if column count changed (breakpoint crossed)
if (currentColumnCount !== lastColumnCount) {
lastColumnCount = currentColumnCount;
clearTimeout(resizeTimer);
resizeTimer = setTimeout(hardRefresh, 200);
return;
}
// Check if size changed significantly
const widthChanged = Math.abs(currentWidth - lastWidth) > 10;
const heightChanged = Math.abs(currentHeight - lastHeight) > 10;
if (widthChanged || heightChanged) {
lastWidth = currentWidth;
lastHeight = currentHeight;
clearTimeout(resizeTimer);
resizeTimer = setTimeout(hardRefresh, 200);
}
}
// Handle orientation changes
function handleOrientationChange() {
if (isRefreshing) return;
setTimeout(hardRefresh, 100);
}
// Monitor column changes with ResizeObserver
function observeColumnChanges() {
const contentElements = document.querySelectorAll('main, .content-grid, .section, .container');
if (contentElements.length > 0 && window.ResizeObserver) {
const resizeObserver = new ResizeObserver(function(entries) {
if (isRefreshing) return;
for (let entry of entries) {
const currentColumnCount = getColumnCount();
if (currentColumnCount !== lastColumnCount) {
lastColumnCount = currentColumnCount;
clearTimeout(resizeTimer);
resizeTimer = setTimeout(hardRefresh, 200);
break;
}
}
});
contentElements.forEach(function(element) {
resizeObserver.observe(element);
});
}
}
// Initialize immediately
function initResizeRefresh() {
// Listen for window resize
window.addEventListener('resize', handleResize, { passive: true });
// Listen for orientation changes
window.addEventListener('orientationchange', handleOrientationChange, { passive: true });
// Monitor column changes
observeColumnChanges();
// Re-observe after delay for dynamic content
setTimeout(observeColumnChanges, 500);
}
// Initialize immediately
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', initResizeRefresh);
} else {
initResizeRefresh();
}
// Re-observe when new content is added
if (document.body) {
const observer = new MutationObserver(function() {
observeColumnChanges();
});
observer.observe(document.body, {
childList: true,
subtree: true
});
}
})();
|