/**
 * 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.
 */
:root {
  --footer-button-bg: var(--primary-dark);
  --footer-button-bg-hover: var(--primary-light-10);
}

/* =========================================================================================
 * General Helpers
 * =========================================================================================
 */
.badge {
  background-color: var(--primary);
  border-radius: 50rem;
  color: #fff;
  display: inline-block;
  font-size: 0.825rem;
  line-height: 1;
  padding: 0.4rem 0.8rem;
  text-align: center;
  vertical-align: baseline;
}

.d-none {
  display: none !important;
}

.w-100 {
  height: auto;
  min-width: 100%;
  width: 100%;
}

.fusion-checklist {
  padding-left: 0 !important;
}

.fusion-button .button-icon-divider-left,
.fusion-button .button-icon-divider-right {
  border-left-color: var(--button_accent_color) !important;
  border-right-color: var(--button_accent_color) !important;
}
.fusion-button:hover .button-icon-divider-left,
.fusion-button:hover .button-icon-divider-right {
  border-left-color: var(--button_accent_hover_color) !important;
  border-right-color: var(--button_accent_hover_color) !important;
}

/* ============================================
   SPENCER TRAVEL WELLNESS - CUSTOM CSS
   Add this to: Avada > Theme Options > Custom CSS
   Or add to your child theme's style.css
   ============================================ */
/* ----- COLOUR VARIABLES ----- */
:root {
  --stw-navy: var(--primary);
  --stw-navy-light: var(--primary-light-10);
  --stw-gold: var(--secondary);
  --stw-gold-light: var(--secondary-light-10);
  --stw-gold-dark: var(--secondary-dark);
  --stw-cream: var(--awb-color3);
  --stw-white: #ffffff;
  --stw-text-dark: var(--awb-color6);
  --stw-text-light: rgba(255,255,255,0.8);
}

/* ----- BUTTON CUSTOMISATIONS ----- */
/* Square buttons (no border radius) */
.stw-btn-square .fusion-button {
  border-radius: 0 !important;
}

/* Gold button hover enhancement */
.fusion-button.button-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201, 168, 108, 0.3);
}

/* ----- EXPERIENCE CARDS HOVER EFFECT ----- */
.fusion-imageframe img {
  transition: transform 0.5s ease;
}

/* ----- DECORATIVE ELEMENTS ----- */
/* Section label with lines */
.stw-decorated-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.stw-decorated-label::before,
.stw-decorated-label::after {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--stw-gold);
}

/* Large quote marks */
.stw-quote-mark {
  font-family: Georgia, serif;
  font-size: 120px;
  color: var(--stw-gold);
  opacity: 0.3;
  line-height: 0.5;
}

/* ----- ICON CIRCLE STYLING ----- */
/* Gold gradient circle for icons */
.stw-icon-circle {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--stw-gold), var(--stw-gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stw-icon-circle i {
  color: var(--stw-navy);
  font-size: 28px;
}

/* Smaller icon circles for feature boxes */
.stw-icon-circle-sm {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--stw-gold), var(--stw-gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stw-icon-circle-sm i {
  color: var(--stw-navy);
  font-size: 20px;
}

/* ----- FEATURE BOXES ----- */
/* White feature boxes with subtle shadow */
.stw-feature-box {
  background: var(--stw-white);
  padding: 25px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stw-feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* ----- CARD OVERLAYS ----- */
/* Gradient overlay for experience cards */
.stw-card-overlay {
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, transparent 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 80px 25px 25px;
}

/* ----- RESPONSIVE ADJUSTMENTS ----- */
@media only screen and (max-width: 1024px) {
  /* Adjust heading sizes for tablets */
  h1 {
    font-size: 42px !important;
  }
  h2 {
    font-size: 34px !important;
  }
}
@media only screen and (max-width: 768px) {
  /* Adjust heading sizes for mobile */
  h1 {
    font-size: 36px !important;
  }
  h2 {
    font-size: 28px !important;
  }
  h3 {
    font-size: 22px !important;
  }
  /* Stack buttons on mobile */
  .fusion-button {
    display: block;
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 15px;
  }
  /* Reduce padding on mobile */
  .fusion-fullwidth {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  /* Reduce quote mark size on mobile */
  .stw-quote-mark {
    font-size: 80px;
  }
}
@media only screen and (max-width: 480px) {
  h1 {
    font-size: 30px !important;
  }
  h2 {
    font-size: 24px !important;
  }
  /* Further reduce section padding */
  .fusion-fullwidth {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
}
/* ----- SMOOTH SCROLLING ----- */
html {
  scroll-behavior: smooth;
}

/* ----- ANIMATION ENHANCEMENTS ----- */
/* Fade in animation for sections */
.fusion-animated {
  animation-fill-mode: both;
}

/* Subtle hover lift effect */
.stw-lift-hover {
  transition: transform 0.3s ease;
}

.stw-lift-hover:hover {
  transform: translateY(-5px);
}

/* ----- LINK STYLING ----- */
/* Gold link color on dark backgrounds */
.stw-dark-section a {
  color: var(--stw-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.stw-dark-section a:hover {
  color: var(--stw-gold-light);
}

/* ----- SEPARATOR STYLING ----- */
/* Gold horizontal separator */
.stw-separator-gold {
  width: 60px;
  height: 2px;
  background: var(--stw-gold);
  margin: 20px auto;
}

/* ----- FOOTER CUSTOMISATIONS (if needed) ----- */
/* Match footer to design */
.fusion-footer-widget-area {
  background-color: var(--stw-navy) !important;
}

.fusion-footer-copyright-area {
  background-color: var(--stw-navy) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ----- HEADER/MENU CUSTOMISATIONS (optional) ----- */
/* Transparent header on homepage */
.home .fusion-header-wrapper {
  position: absolute;
  width: 100%;
  z-index: 1000;
}

.home .fusion-header {
  background-color: transparent !important;
}

/* Menu link styling */
.fusion-main-menu > ul > li > a {
  color: var(--stw-white) !important;
  font-weight: 500;
  letter-spacing: 1px;
}

.fusion-main-menu > ul > li > a:hover {
  color: var(--stw-gold) !important;
}

/* =========================================================================================
 * Homepage
 * =========================================================================================
 */
/* =========================================================================================
 * Home search
 * =========================================================================================
 */
#wrapper #sliders-container .slider-sidebar-row {
  display: none;
}

/* =========================================================================================
 * Megamenu Customization
 * =========================================================================================
 */
.awb-menu__mega-wrap .fusion-fullwidth {
  box-shadow: 3px 3px 6px 3px rgba(0, 0, 0, 0.1);
}
.awb-menu__mega-wrap .mega-submenu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.awb-menu__mega-wrap .mega-submenu > li {
  position: relative;
  background-color: var(--awb-submenu-bg);
}
.awb-menu__mega-wrap .mega-submenu > li > a {
  display: block;
  color: var(--awb-submenu-color) !important;
  font-size: 1rem !important;
  line-height: var(--awb-submenu-line-height);
  padding: 0.25rem 0.5rem;
  text-decoration: none !important;
}
.awb-menu__mega-wrap .mega-submenu > li > a:hover {
  color: var(--awb-submenu-active-color) !important;
  text-decoration: none !important;
}
.awb-menu__mega-wrap .mega-submenu > li:has(ul) > a::after {
  color: var(--awb-submenu-color) !important;
  content: "\f107";
  font-family: awb-icons;
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.awb-menu__mega-wrap .mega-submenu > li:has(ul):hover {
  background-color: var(--awb-color3, #ebeaea) !important;
}
.awb-menu__mega-wrap .mega-submenu > li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background-color: var(--awb-submenu-bg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  list-style: none;
  margin: 0;
  padding: 0;
}
.awb-menu__mega-wrap .mega-submenu > li ul li {
  margin: 0;
  background-color: var(--awb-submenu-bg);
}
.awb-menu__mega-wrap .mega-submenu > li ul li a {
  display: block;
  color: var(--awb-submenu-color) !important;
  padding: 0.5rem 0.5rem;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.awb-menu__mega-wrap .mega-submenu > li ul li a:hover {
  background-color: var(--awb-submenu-active-bg) !important;
  color: var(--awb-submenu-active-color) !important;
}
.awb-menu__mega-wrap .mega-submenu > li:hover {
  background-color: var(--awb-submenu-active-bg) !important;
}
.awb-menu__mega-wrap .mega-submenu > li:hover > ul {
  display: block;
}
.awb-menu__mega-wrap .mega-submenu > li:hover > a::after {
  transform: rotate(180deg);
}
.awb-menu__mega-wrap .menu-destinations .mega-submenu > li > a {
  background-color: var(--color-bg-light);
}
.awb-menu__mega-wrap .menu-destinations .mega-submenu > li > a:hover {
  background-color: var(--awb-color3, #ebeaea) !important;
}

/* =========================================================================================
 * Navigation Button Styles
 * =========================================================================================
 */
.button-menu a.awb-menu__main-a {
  background-color: var(--primary);
  border-radius: 5px;
  color: #fff !important;
  margin-left: 1rem;
  padding: 0.5rem 1rem !important;
  transition: background-color 0.3s ease;
}
.button-menu a.awb-menu__main-a:focus, .button-menu a.awb-menu__main-a:hover {
  background-color: var(--primary-dark);
  color: #fff !important;
}
.button-menu a.awb-menu__main-a i {
  margin-right: 0.5rem;
}

/* =========================================================================================
 * Blog
 * =========================================================================================
 */
.fusion-blog-shortcode-1 .fusion-blog-layout-grid .fusion-post-grid .fusion-post-wrapper {
  background-color: #fff !important;
  border: none !important;
  border-radius: 2rem;
  overflow: hidden;
  padding: 0;
}
.fusion-blog-shortcode-1 .fusion-blog-layout-grid .fusion-post-grid .fusion-post-content-wrapper {
  padding: 0 2rem 2rem 2rem !important;
}
.fusion-blog-shortcode-1 .fusion-blog-layout-grid .fusion-post-grid img {
  aspect-ratio: 14/9;
  border-radius: 2rem 2rem 0 0;
  height: auto;
  min-width: 100%;
  object-fit: cover;
  width: 100%;
}
.fusion-blog-shortcode-1 .fusion-blog-layout-grid .fusion-post-grid h2 {
  color: var(--secondary) !important;
  font-size: var(--font-size-h4) !important;
  letter-spacing: var(--letter-spacing-h4);
  margin-bottom: var(--spacing-half);
  margin-top: 2rem !important;
  text-decoration: none !important;
}
.fusion-blog-shortcode-1 .fusion-blog-layout-grid .fusion-post-grid h2 a {
  color: var(--secondary) !important;
  text-decoration: none !important;
}
.fusion-blog-shortcode-1 .fusion-blog-layout-grid .fusion-post-grid h2 a:hover {
  color: var(--primary-dark) !important;
}
.fusion-blog-shortcode-1 .fusion-blog-layout-grid .fusion-post-grid ul.slides {
  padding: 0 !important;
}

.blog-content h2 {
  font-size: var(--font-size-h4) !important;
}
.blog-content .content-pane .context-pane,
.blog-content .content-pane .image-pane {
  margin-bottom: 1rem;
}

/* =========================================================================================
 * Team
 * =========================================================================================
 */
.team-container .fusion-column-wrapper div:last-child:not([class]),
.team-container .fusion-column-wrapper div:last-child[class=""] {
  margin-top: auto;
}

/* =========================================================================================
 * Footer
 * =========================================================================================
 */
.fusion-tb-footer .awb-swiper-carousel img {
  width: auto;
  max-height: 250px;
  max-width: 100% !important;
}

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