diff --git a/apps/website/assets/css/main.css b/apps/website/assets/css/main.css index db1ab87..9b7ca7b 100644 --- a/apps/website/assets/css/main.css +++ b/apps/website/assets/css/main.css @@ -79,10 +79,7 @@ body { } /* Optimize scroll performance */ -.hero-voyage { - will-change: scroll-position; - contain: layout style paint; -} +/* Removed contain property to allow video to extend into safe area */ /* Accessibility: Reduced Motion */ @media (prefers-reduced-motion: reduce) { diff --git a/apps/website/assets/css/voyage-layout.css b/apps/website/assets/css/voyage-layout.css index 28ae3b2..871db45 100644 --- a/apps/website/assets/css/voyage-layout.css +++ b/apps/website/assets/css/voyage-layout.css @@ -443,7 +443,7 @@ html { overscroll-behavior-y: none; -webkit-overflow-scrolling: touch; max-width: 100vw !important; - contain: layout; + /* Removed contain: layout to allow video to extend into safe area */ /* NO padding here - let container fill entire viewport */ /* Safe areas will be applied to content only */ } diff --git a/apps/website/components/HeroSection.vue b/apps/website/components/HeroSection.vue index a31a021..da543d0 100644 --- a/apps/website/components/HeroSection.vue +++ b/apps/website/components/HeroSection.vue @@ -1,35 +1,37 @@