.elementor-kit-5{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-4a5564c:#1D2930;--e-global-color-868d30b:#1D29304D;--e-global-color-3fe0d92:#FFFFFF;--e-global-color-8505369:#FFFFFF4C;--e-global-color-fbafa51:#00C3FF;--e-global-color-f8791bb:#00FFD1;--e-global-color-779cc61:#00000000;--e-global-typography-primary-font-family:"Aoboshi One";--e-global-typography-primary-font-size:1rem;--e-global-typography-primary-font-weight:400;--e-global-typography-primary-line-height:1.75px;--e-global-typography-secondary-font-family:"Aoboshi One";--e-global-typography-secondary-font-size:1rem;--e-global-typography-secondary-font-weight:400;--e-global-typography-secondary-line-height:1.75rem;--e-global-typography-text-font-family:"Aoboshi One";--e-global-typography-text-font-size:1rem;--e-global-typography-text-font-weight:400;--e-global-typography-text-line-height:1.75rem;--e-global-typography-accent-font-family:"Aoboshi One";--e-global-typography-accent-font-size:1rem;--e-global-typography-accent-font-weight:400;--e-global-typography-accent-line-height:1.75rem;--e-global-typography-fe7e9a2-font-family:"Aoboshi One";--e-global-typography-fe7e9a2-font-size:0.875rem;--e-global-typography-fe7e9a2-text-transform:uppercase;--e-global-typography-35f2796-font-family:"Agbalumo";--e-global-typography-35f2796-font-size:1.375rem;--e-global-typography-35f2796-font-weight:400;--e-global-typography-35f2796-text-transform:uppercase;--e-global-typography-3b931c9-font-family:"Agbalumo";--e-global-typography-3b931c9-font-size:2.125rem;--e-global-typography-3b931c9-font-weight:400;--e-global-typography-3b931c9-line-height:2.125rem;--e-global-typography-0391c12-font-family:"Agbalumo";--e-global-typography-0391c12-font-size:1.375rem;--e-global-typography-0391c12-font-weight:400;--e-global-typography-0391c12-line-height:2.125rem;}.elementor-kit-5 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//**
 * Fix Elementor Pro SVG image shrinking when wrapped in a link
 *
 * Elementor adds an aggressive inline style that forces linked SVG images
 * to 48px width. This override restores the original intended size by:
 *  - Making the <a> tag a block-level container
 *  - Forcing the SVG to respect the widget's width setting (100% or custom)
 *
 * Applies site-wide to all Image widgets containing a linked SVG.
 * Use with caution — test on responsive breakpoints.
 *
 * @see https://github.com/elementor/elementor/issues/10979
 * @since Elementor 2.9+ (bug persists in many versions as of 2025)
 */
.elementor-widget-image a {
    display: block;
}

.elementor-widget-image a img[src$=".svg"] {
    width: 100% !important;
    height: auto !important;
}






/**
 * Limit Elementor Text Editor widgets to a maximum readable width of 800 px
 * → Only on desktop screens (1025 px and wider)
 * → On tablet and mobile the text stays full-width for better usability
 * → Centered automatically with auto margins
 * Added: December 2025 – improves typography on large monitors
 */

@media (min-width: 1025px) {
    .elementor-widget-text-editor {
        max-width: 800px !important;
    }
}




/**
 * Elementor Text Editor Widget: Remove bottom margin from the last paragraph
 *
 * This CSS targets the last <p> element inside any Elementor Text Editor widget
 * and sets its bottom margin to 0. This is a common fix to eliminate unwanted
 * extra space below the text content in Elementor pages.
 *
 * Apply this globally via Appearance > Customize > Additional CSS
 * (or in your child theme's style.css, or Elementor > Site Settings > Custom CSS if using Pro).
 *
 * Note: Uses the logical property 'margin-block-end' for better support in
 * vertical writing modes and future-proofing (equivalent to margin-bottom in LTR layouts).
 */

.elementor-widget-text-editor p:last-child {
    margin-block-end: 0;
}




/**
 * Elementor Nav Menu Underline Hover Fix
 * 
 * This CSS targets a Nav Menu widget with the custom class "site-menu"
 * and the built-in "Underline" pointer effect.
 * 
 * Purpose:
 * - Limits the hover underline to the actual text width only
 * - Centers the underline perfectly under the text
 * - Prevents the underline from extending into the left/right padding of menu items
 * 
 * Usage:
 * 1. Add the CSS class "site-menu" to your Nav Menu widget (Advanced > CSS Classes)
 * 2. Use horizontal padding (not Space Between) on menu items for consistent spacing and centering
 * 3. Paste this into Appearance > Customize > Additional CSS
 * 
 * Adjustable:
 * - Change the "90%" value to 80%–100% depending on your font and desired underline length
 */

.site-menu .e--pointer-underline .elementor-item::after,
.site-menu .e--pointer-underline .elementor-item::before {
    width: 80% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

.site-menu .e--pointer-underline .elementor-item:hover::after,
.site-menu .e--pointer-underline .elementor-item:hover::before {
    width: 80% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}/* End custom CSS */