/* 
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 */

.gh-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 20;
    transition: background 0.25s ease;
}

.gh-header.gh-header--scrolled {
    background: #00000045;
}

.gh-header__inner {
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
}

.gh-header__logo-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
    line-height: 0;
}

.gh-header__logo {
    overflow: hidden;
}

.gh-header__logo img {
    height: 60px;
    width: 120px;
    object-fit: cover;
    display: block;
}

.gh-header__nav {
    width: fit-content;
}

.gh-header__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 48px;
}

.gh-header__menu a {
    text-decoration: none;
    color: inherit;
    font-family: "Orbitron", Sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 2rem;
    color: var(--e-global-color-text);
    transition: all 0.5s ease;
}

.gh-header__menu a:hover {
    color: var(--e-global-color-primary);
}

.gh-header__cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: "Orbitron", Sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 2rem;
    color: var(--e-global-color-text);
    transition: all 0.5s ease;
}

.gh-header__cta-link:hover {
    color: var(--e-global-color-primary) !important;
}

.gh-header__cta-link:hover .gh-header__cta-icon {
    transform: translateX(-10px);
}

.gh-header__cta-icon {
    width: 32px;
    height: 32px;
    transition: all 1s ease;
}

.gh-header__cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Instagram icon */
.gh-header__instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

.gh-header__instagram img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
}

.gh-header__instagram:hover {
    opacity: 0.7;
    transform: scale(1.1);
}

/* Hide mobile instagram on desktop */
.gh-header__instagram--mobile {
    display: none;
}

/* Hamburger menu button - hidden on desktop */
.gh-header__hamburger {
    display: none !important;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent !important;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.gh-header__hamburger-line {
    width: 100%;
    height: 3px;
    background-color: var(--e-global-color-text);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hamburger animation when open */
.gh-header__hamburger.is-active .gh-header__hamburger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.gh-header__hamburger.is-active .gh-header__hamburger-line:nth-child(2) {
    opacity: 0;
}

.gh-header__hamburger.is-active .gh-header__hamburger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Responsive styles for tablets and mobile */
@media (max-width: 1023px) {
    .gh-header__hamburger {
        display: flex !important;
    }

    /* Hide desktop instagram on mobile */
    .gh-header__instagram--desktop {
        display: none !important;
    }

    .gh-header__nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        gap: 40px;
    }

    .gh-header__nav.is-open {
        transform: translateX(0);
    }

    /* Show mobile instagram inside menu */
    .gh-header__instagram--mobile {
        display: flex !important;
        width: 50px;
        height: 50px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease 0.2s, visibility 0.3s ease 0.2s;
    }

    .gh-header__nav.is-open .gh-header__instagram--mobile {
        opacity: 1;
        visibility: visible;
    }

    .gh-header__menu {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .gh-header__menu a {
        font-size: 2rem;
    }

    .gh-header__cta {
        position: fixed;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .gh-header__nav.is-open~.gh-header__cta {
        opacity: 1;
        visibility: visible;
    }

    .gh-header__cta-link {
        font-size: 1.5rem;
        padding: 12px 24px;
        border: 2px solid var(--e-global-color-primary);
        border-radius: 8px;
    }
}

#gallery-container img {
    filter: grayscale(100%);
    transition: filter 1s ease;
}

#gallery-container img.is-color {
    filter: grayscale(0%);
}

#gallery-container img:hover {
    filter: grayscale(0%);
}