/*
Theme Name: Salar Online Pro
Theme URI: https://salaronline.pro
Author: Salar Online Team
Author URI: https://salaronline.pro
Description: Global Digital Agency & Academic Hub Theme. Features Service Matrix, Inner Circle Membership, and Knowledge Vault.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: agency, education, digital-services, publishing, printing, two-column, right-sidebar, custom-colors
Text Domain: salar-pro
*/

/* 
 * Global App Styles 
 * These styles complement the Tailwind CSS utility classes used in the React components.
 */

:root {
  --primary-color: #0c4a6e;
  --accent-color: #0ea5e9;
  --gold-color: #f59e0b;
}

html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #f8fafc;
}

/* Custom Scrollbar for Webkit */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Print Styles for Services */
@media print {
  .no-print {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  a[href]:after {
    content: " (" attr(href) ")";
  }
}
