File size: 1,597 Bytes
968cef6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
/* Additional custom styles beyond Tailwind */

/* Ensure sharp edges globally */
* {
    border-radius: 0 !important;
}

/* Custom scrollbar for webkit */
::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

/* Selection color */
::selection {
    background-color: #0c4a6e;
    color: white;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Magnetic button effect enhancement */
.magnetic-btn {
    position: relative;
    display: inline-block;
}

/* FAQ active states managed via JS but styled here */
.faq-item.active {
    border-color: #0c4a6e;
}

/* D3 Compass specific styles */
.compass-circle {
    fill: none;
    stroke: #0c4a6e;
    stroke-width: 1;
    opacity: 0.3;
}

.compass-rose-line {
    stroke: #0c4a6e;
    stroke-width: 1;
    opacity: 0.2;
}

/* Parallax image container */
.parallax-img-container {
    overflow: hidden;
    position: relative;
}

/* Text mask animation support */
.line-mask {
    overflow: hidden;
    display: block;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .cursor-dot,
    .cursor-outline,
    .compass-scroll-container {
        display: none !important;
    }
    
    body {
        cursor: auto;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-outline {
        border-width: 3px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}