.elementor-kit-26{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-26 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 *//* ===== Ghibli Art Generator - Header Styles ===== */
/* A simple, Google-style header with Studio Ghibli theme colors */

/* === Base & Reset === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* === Header Container === */
.ghibli-header {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #0a0a1a;
    border-bottom: 1px solid rgba(78, 205, 196, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

/* === Logo === */
.logo a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 22px;
    font-weight: 500;
}

.logo-icon {
    color: #4ecdc4;
    font-size: 24px;
}

.logo-text {
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

/* === Navigation Menu === */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    padding: 8px 0;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link i {
    font-size: 16px;
    color: #4ecdc4;
    opacity: 0.8;
}

.nav-link:hover {
    color: #4ecdc4;
}

/* Active Link - Google style (no underline, just color) */
.nav-link.active {
    color: #4ecdc4;
    font-weight: 500;
}

/* === Dropdown Menu === */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a2e;
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

.dropdown-item i {
    width: 18px;
    color: #4ecdc4;
    font-size: 14px;
}

.dropdown-item:hover {
    background: rgba(78, 205, 196, 0.1);
    color: #4ecdc4;
}

/* === Create Button (Special CTA) === */
.create-btn {
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
}

.create-btn i {
    color: white !important;
}

.create-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 10px rgba(78,205,196,0.3);
}

/* === Mobile Menu Toggle === */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* === Responsive Styles (max-width: 768px) === */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: #0a0a1a;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 15px;
        transition: left 0.3s;
        border-top: 1px solid rgba(78,205,196,0.2);
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    /* Mobile dropdown behavior */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: rgba(255,255,255,0.05);
        margin: 5px 0 5px 20px;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .create-btn {
        margin-top: 10px;
        text-align: center;
        justify-content: center;
    }
}/* End custom CSS */