+
-
+
@@ -260,4 +262,22 @@ const { t, whatsappUrl } = Astro.props;
#hero-glass-ring {
transform: translate(-50%, -50%) scale(0.85);
}
+
+ /* Cloud opacity — light mode (dark mode keeps low opacity) */
+ .cloud-p1 { opacity: 0.18; }
+ .cloud-p2 { opacity: 0.12; }
+
+ /* Floating shapes — dark mode keeps subtle opacity */
+ #hero-float-top { opacity: 0.30; }
+ #hero-float-mid { opacity: 0.25; }
+ #hero-float-bot { opacity: 0.20; }
+
+ /* LIGHT MODE OVERRIDES — cloud more visible, shapes more opaque, badges darker */
+ :root:not(.dark) .cloud-p1 { opacity: 0.72; }
+ :root:not(.dark) .cloud-p2 { opacity: 0.55; }
+ :root:not(.dark) #hero-float-top { opacity: 0.55; }
+ :root:not(.dark) #hero-float-mid { opacity: 0.50; }
+ :root:not(.dark) #hero-float-bot { opacity: 0.45; }
+ :root:not(.dark) #hero-badges { color: var(--hds-fg-soft) !important; }
+