.elementor-9679 .elementor-element.elementor-element-5a719ed{--display:flex;}body.elementor-page-9679:not(.elementor-motion-effects-element-type-background), body.elementor-page-9679 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000ED;}:root{--page-title-display:none;}/* Start custom CSS *//* ============================================
   BERKSHIRE — Logo Symbol Watermark
   Background only - no page background set
   Slow float animation
   ============================================ */

@keyframes baa-float {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }
  100% {
    transform: translateY(-50%) rotate(360deg);
  }
}

@keyframes baa-float-reverse {
  0% {
    transform: translate(0, 0) rotate(360deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

/* Logo watermark - right side */
body::before {
  content: "";
  position: fixed;
  top: 50%;
  right: -8%;
  width: 650px;
  height: 650px;
  background-image: url("https://allacesprinting.clientbuild.neonsnow.com.au/wp-content/uploads/2026/08/BAA-logo-symbol.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.055;
  pointer-events: none;
  z-index: -1;
  animation: baa-float 80s linear infinite;
}

/* Logo watermark - top left */
body::after {
  content: "";
  position: fixed;
  top: -12%;
  left: -10%;
  width: 500px;
  height: 500px;
  background-image: url("https://allacesprinting.clientbuild.neonsnow.com.au/wp-content/uploads/2026/08/BAA-logo-symbol.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.04;
  pointer-events: none;
  z-index: -1;
  animation: baa-float-reverse 100s linear infinite;
}


/* ============================================
   SCROLLBAR — BRAND GOLD
   ============================================ */

/* Webkit (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background: #D4A53E;
  border-radius: 5px;
  border: 2px solid #0a0a0a;
}

::-webkit-scrollbar-thumb:hover {
  background: #E1B956;
}

/* Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: #D4A53E #0a0a0a;
}


/* ============================================
   FULL WIDTH OVERRIDES
   ============================================ */

.elementor-section.elementor-section-boxed > .elementor-container {
  max-width: 100% !important;
}

.elementor-section {
  padding-left: 0 !important;
  padding-right: 0 !important;
}


/* ============================================
   SCROLL BEHAVIOUR
   ============================================ */

html {
  scroll-behavior: smooth;
}


/* ============================================
   SELECTION COLOUR
   ============================================ */

::selection {
  background: rgba(212,165,62,0.3);
  color: #ffffff;
}

::-moz-selection {
  background: rgba(212,165,62,0.3);
  color: #ffffff;
}


/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1200px) {
  body::before {
    width: 480px;
    height: 480px;
    right: -12%;
    opacity: 0.045;
  }

  body::after {
    width: 380px;
    height: 380px;
    opacity: 0.035;
  }
}

@media (max-width: 768px) {
  body::before {
    width: 350px;
    height: 350px;
    right: -18%;
    opacity: 0.04;
  }

  body::after {
    width: 280px;
    height: 280px;
    top: -8%;
    left: -15%;
    opacity: 0.03;
  }
}

@media (max-width: 480px) {
  body::before {
    width: 260px;
    height: 260px;
    opacity: 0.035;
  }

  body::after {
    display: none;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  body::before,
  body::after {
    animation: none;
  }
}/* End custom CSS */