/* 
 Theme Name:     Bare bones for Divi
 Author:         Divi theme examples
 Author URI:     http://www.divithemeexamples.com 
 Template:       Divi
 Version:        1.0 
*/ 


/* ----------- PUT YOUR CUSTOM CSS BELOW THIS LINE -- DO NOT EDIT ABOVE THIS LINE --------------------------- */ 

@media print {

  body, #page-container, .et_pb_section  {
  background-color: transparent !important;
}

   /* --- Adds a phone number to the BOTTOM of the printed page --- */
  body::after {
    content: 'For inquiries, please call: 249-480-1249'; 
    display: block;
    text-align: center;
    font-size: 12pt; /* Adjust font size as needed */
    margin-top: 20px; /* Adjust spacing as needed */
    position: fixed; /* Fixes it to the bottom of each printed page */
    bottom: 20px;
    width: 100%;
  }
  body::before {
    /* --- Watermark Configuration --- */
    content: ''; /* The content is set via the background-image property */
    background-image: url('https://humberbaymortgages.ca/wp-content/uploads/2025/01/sb-logo-jan-29-web-2.png'); /* <-- Replace with your logo's URL */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 300px; /* Adjust the size of your watermark logo */

    /* --- Positioning & Styling --- */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg); /* Center and rotate the watermark */
    opacity: 0.15; /* Adjust for desired faintness (e.g., 0.1 to 0.3) */
    z-index: -1;   /* Places the watermark behind the page content */
    width: 100%;
    height: 100%;
  }
  /* --- Optional: Hides unnecessary elements when printing --- */
  
  #main-header, #top-header, footer {
    display: none !important;
  }
}