/**
* Theme Name: Faun Child
* Description: This is a child theme of Faun.
* Author: <a href="https://gloriathemes.com/">Gloria Themes</a>
* Template: faun
* Version: 1.0.1
*/

/* Fix: Mobile off-canvas menu logo squish
   The theme sets height: 40px on .gt-off-canvas .gt-logo img but no width: auto,
   and max-width: 100% constrains the img to the container width (which collapses to
   the img's HTML width attribute). The fix removes the max-width constraint and sets
   width: auto so the image maintains its natural aspect ratio at 40px tall.
*/
.gt-off-canvas .gt-logo img {
    width: auto !important;
    height: 40px !important;
    max-width: none !important;
}

/* Hide-on-scroll: smooth transition for sticky headers */
.gt-desktop-header.gt-fixed,
.gt-mobile-header.gt-fixed {
    transition: transform 0.3s ease-in-out !important;
}