/*
Theme Name: Blocksy Child
Theme URI: https://creativethemes.com/blocksy/
Author: Your Name
Author URI: https://yourwebsite.com
Template: blocksy
Version: 1.0.0
Text Domain: blocksy-child
*/

/* Sidebar Navigation Menu Styling */
.widget_nav_menu li a {
  font-size: 18px;
  line-height: 2;
  font-weight: 500;
  color: #333;
  text-decoration: none;
}

/* Sidebar link default color: dark blue */
.widget a {
    color: #0000FF; /* Blue */
    text-decoration: none; /* Optional: removes underline */
    transition: color 0.3s ease; /* a smooth transition when the color changes */
}

/* On hover: gold */
.widget a:hover {
    color: #d18800; /* Warm gold */
    text-decoration: none; /* no decoration when on hover */
}

/* Move content left and down - Front-Page */
// body.page-id-XX .elementor {
//    padding-left: 10px !important;
//    margin-left: -280px !important;
//    padding-top: 10px !important;
// }

/* Move content left and down - Page with Sidebsr Left */ 
// .elementor-element {
//    padding-left: 10px !important;    /* keeps some inner space */
//    margin-left: -250px !important;   /* shifts the entire block left */
//    padding-top: 10px !important;	    /* move down */
// }

/* Hide sidebar on screens narrower than 768px (like iPhones) */
@media (max-width: 992px) {
  aside[style*="width: 250px"] {
    display: none !important;
  }
}

/* Optional: Ensure sidebar shows on wider screens */
@media (min-width: 768px) {
  aside[style*="width: 250px"] {
    display: block !important;
  }
}