/* ================================================================================== //
//                 Style for Header and Nav Navigationing                             //
// ================================================================================== */

        body {
            font-family: 'Vazirmatn', 'Poppins', 'Tahoma', sans-serif;
            background-color: #f9fbfd;
        }
        .site-header {
            background: #ffffff;
            border-bottom: 2px solid #edf2f9;
            transition: all 0.3s ease;
        }
        .site_name {
            font-family: 'Poppins', sans-serif;
            letter-spacing: 1px;
            background: linear-gradient(45deg, #0d6efd, #0dcaf0);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

.main-navbar {
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.navbar-nav .nav-link {
    font-size: 0.95rem;
    transition: all 0.25s ease;
    border-radius: 8px;
}

.navbar-nav .nav-link:hover {
    color: #0d6efd !important;
    background-color: rgba(13, 110, 253, 0.04);
    padding-right: 12px !important; /* افکت جابه‌جایی نرم در منوی فارسی */
}

.nav-auth-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-auth-btn:hover {
    transform: translateY(-2px);
}

@media (max-width: 991.98px) {
    .navbar-nav .nav-link:hover {
        padding-right: 8px !important;
    }
}
/* ================================================================================== //
//                                 auth / login                                       //
// ================================================================================== */

  /* استایل‌های اختصاصی فرم لاگین مدرن - برای انتقال به style.css */
  .login-submit-btn {
      transition: all 0.3s ease;
  }
  .login-submit-btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3) !important;
  }
  .input-group-text {
      border-color: #dee2e6;
  }
  .input-group .form-control:focus {
      box-shadow: none;
      background-color: #fff !important;
      border-color: #86b7fe;
  }
  .input-group .form-control:focus + .input-group-text {
      border-color: #86b7fe;
  }
/* ================================================================================== //
//                               auth / forgot-password                              //
// ================================================================================== */

    /* افکت تعاملی دکمه ارسال */
  .forgot-submit-btn {
      transition: all 0.3s ease;
  }
  .forgot-submit-btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3) !important;
  }

/* ================================================================================== //
//                               auth / register                                      //
// ================================================================================== */



    /* استایل اختصاصی پویایی دکمه عضویت - اضافه شده به ساختار style.css شما */
  .register-submit-btn {
      transition: all 0.3s ease;
  }
  .register-submit-btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3) !important;
  }

/* ================================================================================== //
//                               Errors / e404                                      //
// ================================================================================== */

      /* مایکرو استایل بهینه‌سازی فرم خطای ۴۰۴ */
    .fw-black {
        font-weight: 900;
    }
    .home-return-btn {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .home-return-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(13, 110, 253, 0.35) !important;
    }
    .svg-wrapper svg {
        filter: drop-shadow(0px 10px 20px rgba(0,0,0,0.02));
    }


/* ================================================================================== //
//                                      footer                                        //
// ================================================================================== */

.hover-zoom {
    transition: transform 0.3s ease;
}
.hover-zoom:hover {
    transform: scale(1.15);
}
