/* =============================================
   PRIMUVOPLATU.COM — Layout Fixes
   Applied: 2026-03-10
   Rollback: Delete this entire CSS block
   ============================================= */

/* --- FIX 1: Z-INDEX ---
   Content sections bleed through fixed navigation
   when scrolling. CSS transforms on zero-blocks
   create stacking contexts that compete with the nav.
   Fix: Elevate nav and header wrapper blocks. */

#rec728321986 {
  position: relative !important;
  z-index: 99999 !important;
}

#rec728218504 {
  position: relative !important;
  z-index: 99998 !important;
}

/* --- FIX 2: WIDE SCREEN CONTENT CAP ---
   On very wide screens (2K+), zero-block content
   stretches beyond readable width, making carousel
   cards and other elements look tiny or misaligned.
   Fix: Cap artboard content at 1920px, centered.
   Backgrounds stay full-width (on parent elements). */

@media (min-width: 1921px) {
  #allrecords > [id^="rec"]:not(#rec728218504):not(#rec728321986) .t396__artboard {
    max-width: 1920px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
} 