/**
 * CUSTOM STYLES OVERRIDE FILE
 * =========================================================================================
 * 
 * This file is for custom style overrides only.
 * All base styles have been moved to: 
 * wp-content/themes/aguru-avada7-child/css/base.scss
 * 
 * =========================================================================================
 * CUSTOMIZATION GUIDE
 * =========================================================================================
 * 
 * To customize the theme, you can override any of the CSS variables defined in base.scss
 * by redefining them here. The theme uses CSS custom properties (CSS variables) that can
 * be overridden at runtime.
 *
 * =========================================================================================
 * AVAILABLE CSS VARIABLES
 * =========================================================================================
 * 
 * COLOR VARIABLES
 * ---------------
 * --primary: Main brand color (default: #145876)
 * --primary-light-5: 5% lighter variant
 * --primary-light-10: 10% lighter variant  
 * --primary-dark: Darker variant
 * --primary-dark-10: 10% darker variant
 * --primary-text: Text color on primary backgrounds (default: #fff)
 * 
 * --secondary: Secondary brand color (default: #1a3755)
 * --secondary-light-5: 5% lighter variant
 * --secondary-light-10: 10% lighter variant
 * --secondary-dark: Darker variant
 * --secondary-text: Text color on secondary backgrounds (default: #fff)
 * 
 * --color-text: Main body text color
 * --color-heading: Heading text color
 * --color-text-light: Light text color
 * --color-text-muted: Muted text color
 * --color-link: Link color
 * --color-link-hover: Link hover color
 * --color-link-active: Link active color
 * --color-border: Border color
 * --color-bg-light: Light background color
 * 
 * LAYOUT VARIABLES
 * ----------------
 * --site-width: Maximum site width (default: 1400px)
 * --border-radius: Global border radius (default: 4px)
 * 
 * TYPOGRAPHY VARIABLES
 * --------------------
 * --base-font-size: Base font size (default: 18px)
 * --base-line-height: Base line height (default: 1.5)
 * --font-family-heading: Heading font family
 * --font-family-body: Body font family
 * --font-family-mono: Monospace font family
 * 
 * --font-size-small: Small text size
 * --font-size-base: Base text size
 * --font-size-h1 through --font-size-h6: Heading sizes
 * --font-size-lead: Lead paragraph size
 * 
 * --font-weight-light: 300
 * --font-weight-regular: 400
 * --font-weight-medium: 500
 * --font-weight-semibold: 600
 * --font-weight-bold: 700
 * --font-weight-black: 900
 * --heading-font-weight: Default heading weight
 * 
 * SPACING VARIABLES
 * -----------------
 * --spacing-quarter: 6px
 * --spacing-half: 12px
 * --spacing-single: 24px
 * --spacing-double: 48px
 * --spacing-triple: 72px
 * 
 * FORM VARIABLES
 * --------------
 * --input-bg: Input background color
 * --input-text: Input text color
 * --input-border: Input border color
 * 
 * FOOTER VARIABLES
 * ----------------
 * --footer-text: Footer text color
 * --footer-heading: Footer heading color
 * --footer-link: Footer link color
 * --footer-link-hover: Footer link hover color
 * --footer-button-bg: Footer button background
 * --footer-button-text: Footer button text color
 * --footer-button-bg-hover: Footer button hover background
 * --footer-button-text-hover: Footer button hover text
 * 
 * ODYSSEUS SEARCH WIDGET VARIABLES
 * ---------------------------------
 * --ove-search-home-bg: Search widget background
 * --ove-search-home-bg-light-5: 5% lighter background
 * --ove-search-home-bg-light-10: 10% lighter background
 * --ove-search-secondary: Search button color
 * --ove-search-secondary-dark: Search button hover color
 * --ove-search-secondary-text: Search button text color
 * --ove-search-input-bg: Search input background
 * --ove-search-input-text: Search input text color
 * --ove-search-main-border-color: Search widget border color
 * --ove-search-main-border-radius: Search widget border radius
 * --ove-search-home-box-width: Search widget max width
 * --ove-search-widget-width: Inner widget width
 * --ove-search-show-dest-type: Show/hide destination type (block/none)
 * --ove-search-dest-type-text: Destination type text color
 * --ove-search-border-radius: Button border radius
 * 
 * =========================================================================================
 * CUSTOMIZATION EXAMPLES
 * =========================================================================================
 */
/* Example 1: Override primary brand colors */
/*
:root {
  --primary: #2C5282;
  --primary-light-5: #3A6A9B;
  --primary-light-10: #4882B4;
  --primary-dark: #1E3A5F;
  --primary-dark-10: #162D4A;
}
*/
/* Example 2: Change typography settings */
/*
:root {
  --base-font-size: 16px;
  --font-family-heading: 'Montserrat', sans-serif;
  --font-family-body: 'Lato', sans-serif;
  --heading-font-weight: 600;
  --font-size-h1: 2.5rem;
  --font-size-h2: 2rem;
}
*/
/* Example 3: Customize the search widget */
/*
:root {
  --ove-search-home-bg: #2C5282;
  --ove-search-secondary: #E67E22;
  --ove-search-secondary-dark: #D35400;
  --ove-search-input-bg: #F8F9FA;
  --ove-search-main-border-radius: 8px;
  --ove-search-home-box-width: 1200px;
}
*/
/* Example 4: Modify footer colors */
/*
:root {
  --footer-text: #E5E5E5;
  --footer-heading: #FFFFFF;
  --footer-link: #A0AEC0;
  --footer-link-hover: #FFFFFF;
  --footer-button-bg: #E67E22;
  --footer-button-bg-hover: #D35400;
}
*/
/* Example 5: Adjust spacing throughout the site */
/*
:root {
  --spacing-single: 20px;
  --spacing-double: 40px;
  --spacing-triple: 60px;
}
*/
/* Example 6: Create a dark theme variant */
/*
body.dark-theme {
  --color-text: #E5E5E5;
  --color-heading: #FFFFFF;
  --color-bg-light: #2D3748;
  --color-border: #4A5568;
  --input-bg: #2D3748;
  --input-text: #E5E5E5;
  --input-border: #4A5568;
}
*/
/* =========================================================================================
 * YOUR CUSTOM STYLES BELOW
 * =========================================================================================
 * 
 * Add any custom CSS variable overrides or additional styles below this line.
 * Remember to use CSS custom properties for maximum flexibility.
 */

/*# sourceMappingURL=custom.css.map */
