/*
Theme Name: AMTECH Theme
Theme URI: https://virapeak.ir
Author: Virapeak
Author URI: https://virapeak.ir
Description: A custom theme for AMTECH 2025 Exhibition
Version: 1.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: amtech
*/

/* --- تعریف فونت وریبل پیدا (Peyda Variable Font) --- */

@font-face {
    font-family: 'PeydaWebVF';
    /* مسیرها به پوشه fonts اشاره می‌کنند */
    src: url('fonts/PeydaWebVF.woff2') format('woff2-variations'),
        url('fonts/PeydaWebVF.woff') format('woff-variations');
    font-weight: 100 950;
    font-style: normal;
    font-display: swap;
}

/* تنظیم فونت پیش‌فرض بدنه به فونت پیدا */
body {
    font-family: 'PeydaWebVF', sans-serif;
    overflow-x: hidden;
}

/* انیمیشن منوی موبایل */
#mobile-menu {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: right;
}

.menu-open {
    transform: scaleX(1);
}

.menu-closed {
    transform: scaleX(0);
}

/* استایل جدید منو */
.glass-nav {
    background: rgba(29, 27, 64, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 50%;
    background-color: #F77F00;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}