Spaces:
Running
Running
| /* Base Styles */ | |
| body { | |
| line-height: 1.6; | |
| } | |
| /* Typography */ | |
| h1, h2, h3, h4, h5, h6 { | |
| line-height: 1.2; | |
| } | |
| /* Hero Video Aspect Ratio */ | |
| .aspect-w-16 { | |
| position: relative; | |
| padding-bottom: 56.25%; /* 16:9 Aspect Ratio */ | |
| height: 0; | |
| overflow: hidden; | |
| } | |
| .aspect-w-16 iframe { | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| width: 100%; | |
| height: 100%; | |
| } | |
| /* Caption overlay */ | |
| .relative .absolute { | |
| z-index: 10; | |
| } | |
| /* Mobile Menu */ | |
| .mobile-menu { | |
| display: none; | |
| } | |
| .mobile-menu.active { | |
| display: block; | |
| } | |
| /* Smooth Scrolling */ | |
| html { | |
| scroll-behavior: smooth; | |
| } | |
| /* Responsive Adjustments */ | |
| @media (max-width: 768px) { | |
| .hero-content { | |
| padding: 0 1rem; | |
| } | |
| .hero-headline { | |
| font-size: 2rem; | |
| } | |
| } |