/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

html {
    scroll-behavior: auto !important;
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis [data-lenis-prevent] {
    overscroll-behavior: contain;
}

a {
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

/* Header Navigation on Scroll */

header.is-white .elementor-nav-menu--main a { color: #FFFFFF !important; fill: #FFFFFF !important; transition: color 0.3s ease; }
header.is-white .elementor-button { background-color: #FFFFFF !important; color: #000000 !important; transition: color 0.3s ease; }
header.is-white .elementor-widget-theme-site-logo img { -webkit-filter: invert(1); filter: invert(1); transition: filter 0.3s ease; }   


/* Ticker Marquee */

.ticker-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    min-height: 100vh;
    overflow: hidden;
}

.ticker {
    padding: 24px;
    white-space: nowrap;
    background: #EEE;
}

.ticker.white {
    background-color: #FFF;
}

.ticker.black {
    background-color: #000;
}

.ticker-wrap {
    display: flex;
    gap: 16px;
}

.ticker-text {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    color: #000;
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.ticker:last-child .ticker-text {
    color: #fff;
}

.ticker .available {
    border-radius: 50px;
    background: #EEE;
    color: #000;
    font-family: 'Geist Mono', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 12px;
    padding: 4px 8px;
    text-transform: uppercase;
}

.ticker.black .available {
    background: #333;
    color: #FFF;
}

/* Grid overlay */

.dev-grid {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    padding-left: 48px;
    padding-right: 48px;
    pointer-events: none;
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}

body.show-grid .dev-grid {
    opacity: 0.8;
    visibility: visible;
}

.dev-grid div {
    background: rgba(255, 0, 0, 0.08);
    border-left: 1px solid rgba(255, 0, 0, 0.3);
    border-right: 1px solid rgba(255, 0, 0, 0.3);
}

@media screen and (max-width: 1024px) {
    .dev-grid {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media screen and (max-width: 767px) {
    .dev-grid {
        padding-left: 16px;
        padding-right: 16px;
    }   
}