/*
Theme Name: Plania Theme
Theme URI: https://virapeak.ir
Author: ViraPeak Team
Author URI: https://virapeak.ir
Description: A Custom Theme For Plania Website
Version: 1.1
Text Domain: Plania
*/

/* استایل‌های اصلی قالب */
@font-face {
    font-family: Peyda;
    src: url('fonts/PeydaWebVF.woff2') format('woff2');
}

/* جلوگیری از اسکرول افقی */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    background: #0f0720;
    color: #fff;
    font-family: Peyda, Tahoma, sans-serif;
}

/* اسکرول‌بار سفارشی نئونی */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0f0720;
}

::-webkit-scrollbar-thumb {
    background: #b026ff;
    border-radius: 4px;
}

/* منوی موبایل */
#mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(15, 7, 32, .95);
    backdrop-filter: blur(20px);
    transform: translateX(-100%);
    opacity: 0;
    transition: transform .4s ease, opacity .3s ease;
    pointer-events: none;
    z-index: 40;
    will-change: transform;
}

#mobile-menu.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

/* کانتینر ویدیو هیرو */
.video-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -1;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* انیمیشن درخشش نئونی */
@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 15px #b026ff;
    }

    50% {
        box-shadow: 0 0 35px #b026ff;
    }
}