| /* Custom styles that extend Tailwind */ | |
| body { | |
| scroll-behavior: smooth; | |
| } | |
| /* Custom scrollbar */ | |
| ::-webkit-scrollbar { | |
| width: 8px; | |
| } | |
| ::-webkit-scrollbar-track { | |
| background: #1f2937; | |
| } | |
| ::-webkit-scrollbar-thumb { | |
| background: #4b5563; | |
| border-radius: 4px; | |
| } | |
| ::-webkit-scrollbar-thumb:hover { | |
| background: #6b7280; | |
| } | |
| /* Animation for hover effects */ | |
| .hover-grow { | |
| transition: transform 0.3s ease; | |
| } | |
| .hover-grow:hover { | |
| transform: scale(1.03); | |
| } | |
| /* Custom section dividers */ | |
| .section-divider { | |
| position: relative; | |
| height: 60px; | |
| background: linear-gradient(to right bottom, #111827 49%, #1e293b 50%); | |
| clip-path: polygon(0 0, 100% 0, 100% 50%, 50% 100%, 0 50%); | |
| } | |
| /* Responsive adjustments */ | |
| @media (max-width: 768px) { | |
| .mobile-stack { | |
| display: flex; | |
| flex-direction: column; | |
| } | |
| .mobile-center { | |
| text-align: center; | |
| } | |
| } |