diff --git a/app/page.tsx b/app/page.tsx index 48dc75f..5a64956 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -196,7 +196,7 @@ export default function ShahiKitchenHomepage() { muted playsInline preload="auto" - className="absolute inset-0 z-10 w-full h-full object-cover + className="absolute inset-0 z-0 w-full h-full object-cover object-[50%_10%] sm:object-[50%_12%] md:object-[50%_16%] lg:object-[50%_20%] xl:object-[50%_24%]" onError={(e) => console.error('Hero banner video failed to load', e)} @@ -217,7 +217,7 @@ export default function ShahiKitchenHomepage() { {/* Subtle gradient to improve visibility of baked-in text */} -
+
{/* ADVANCED SIGNATURE MENU */} diff --git a/components/LanguageSwitcher.tsx b/components/LanguageSwitcher.tsx index 6c87085..e6a3cae 100644 --- a/components/LanguageSwitcher.tsx +++ b/components/LanguageSwitcher.tsx @@ -31,12 +31,12 @@ export default function LanguageSwitcher() { <> {/* Backdrop */}
setIsOpen(false)} /> {/* Dropdown */} -
+
{languages.map((lang) => (
+ {/* Modern Mobile Menu Drawer (slide-in, animated, high-contrast, touch-friendly) - high z to always appear in front of hero banner video etc. */} {isOpen && ( -
+
{/* Backdrop */} )} - + ); }