/*
Theme Name: Zarix Fully Editable
Author: ChatGPT
Version: 1.0
*/

.entry-content img,
main img {
    height: auto;
    max-width: 100%;
    display: block;
    margin: 10px auto;
}

/* پشتیبانی از اندازه‌های اختصاصی وردپرس */
img.size-thumbnail,
img.size-medium,
img.size-large,
img.size-full {
    height: auto;
    width: auto;
}


/* Improved neon-style menu inspired by digital mountain theme */
#menuItems {
    background-color: rgba(10, 26, 47, 0.85); /* semi-transparent dark */
    color: #00f7ff;
    border: 1px solid #00f7ff;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 0 10px #00f7ff;
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    z-index: 1000;
}

#menuItems.show {
    display: block;
    animation: neonFadeIn 0.4s ease-in-out;
}

#menuItems a {
    color: #00f7ff;
    text-decoration: none;
    display: block;
    margin: 8px 0;
    transition: color 0.3s;
}

#menuItems a:hover {
    color: #0ff;
}

@keyframes neonFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}



/* Responsive neon menu with hamburger icon */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 28px;
    color: #00f7ff;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1100;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    #menuItems {
        position: fixed;
        top: 60px;
        right: 20px;
        width: 220px;
    }
}
